|
@@ -13,6 +13,7 @@ extern "C" {
|
13
|
13
|
kRsrcFailGrPlRC
|
14
|
14
|
};
|
15
|
15
|
|
|
16
|
+ // Graphic object type id's
|
16
|
17
|
typedef enum
|
17
|
18
|
{
|
18
|
19
|
kInvalidPlId,
|
|
@@ -31,7 +32,7 @@ extern "C" {
|
31
|
32
|
kPlusGrPlId,
|
32
|
33
|
} cmGrPlObjTypeId_t;
|
33
|
34
|
|
34
|
|
- // object cfg flags
|
|
35
|
+ // Object cfg. flags
|
35
|
36
|
enum
|
36
|
37
|
{
|
37
|
38
|
kSymbolGrPlFl = 0x0001, // This object is a symbol
|
|
@@ -47,10 +48,10 @@ extern "C" {
|
47
|
48
|
// object state flags
|
48
|
49
|
enum
|
49
|
50
|
{
|
50
|
|
- kVisibleGrPlFl = 0x0001,
|
|
51
|
+ kVisibleGrPlFl = 0x0001, //
|
51
|
52
|
kEnabledGrPlFl = 0x0002, // Enabled obj's must be visible.
|
52
|
|
- kSelectGrPlFl = 0x0004, //
|
53
|
|
- kFocusGrPlFl = 0x0008 // Focused obj's are also selected.
|
|
53
|
+ kSelectGrPlFl = 0x0004, // This object is selected - multiple objects may be selected
|
|
54
|
+ kFocusGrPlFl = 0x0008 // Focused obj's are also selected - only one object can have the focus.
|
54
|
55
|
};
|
55
|
56
|
|
56
|
57
|
typedef enum
|