1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* namescope.h
*
* Copyright 2007 Novell, Inc. (http://www.novell.com)
*
* See the LICENSE file included with the distribution for details.
*
*/
#ifndef __MOON_NAMESCOPE_H__
#define __MOON_NAMESCOPE_H__
#include <glib.h>
#include "dependencyobject.h"
#include "error.h"
#include "list.h"
/* @Namespace=None */
/* @ManagedDependencyProperties=None */
class NameScope : public DependencyObject {
GHashTable *names;
bool temporary;
static void ObjectDestroyedEvent (EventObject *sender, EventArgs *args, gpointer closure);
static gboolean remove_handler (gpointer key, gpointer value, gpointer data);
static void merge_name (gpointer key, gpointer value, gpointer user_data);
protected:
virtual ~NameScope ();
public:
/* @PropertyType=NameScope,Attached,GenerateAccessors */
static DependencyProperty *NameScopeProperty;
NameScope ();
virtual Type::Kind GetObjectType () { return Type::NAMESCOPE; }
void RegisterName (const char *name, DependencyObject *object);
void UnregisterName (const char *name);
DependencyObject *FindName (const char *name);
void SetTemporary (bool flag) { temporary = flag; }
bool GetTemporary () { return temporary; }
void MergeTemporaryScope (NameScope *scope, MoonError *error);
static NameScope *GetNameScope (DependencyObject *obj);
static void SetNameScope (DependencyObject *obj, NameScope *scope);
void Dump();
};
#endif /* __MOON_NAMESCOPE_H__ */
|