Mercurial > MadButterfly
annotate pyink/FSM_window.glade @ 1516:7d6d77992aba
Fix the bug of deactivating moving state mode.
- It fault to deactivate moving state mode when user is selecting a
transition.
- Since _on_deactivate stack was not handled correctly.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Wed, 11 May 2011 01:13:19 +0800 |
parents | 042587afed2e |
children | 66c672d8f267 |
rev | line source |
---|---|
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
1 <?xml version="1.0"?> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
2 <interface> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
3 <requires lib="gtk+" version="2.16"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
4 <!-- interface-naming-policy project-wide --> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
5 <object class="GtkWindow" id="FSM_main_win"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
6 <property name="width_request">500</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
7 <property name="height_request">400</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
8 <property name="title" translatable="yes">FSM</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
9 <property name="modal">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
10 <signal name="destroy_event" handler="on_FSM_main_win_destroy_event"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
11 <signal name="delete_event" handler="on_FSM_main_win_delete_event"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
12 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
13 <object class="GtkVBox" id="vbox1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
14 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
15 <property name="orientation">vertical</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
16 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
17 <object class="GtkMenuBar" id="menubar1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
18 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
19 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
20 <object class="GtkMenuItem" id="menuitem1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
21 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
22 <property name="label" translatable="yes">_File</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
23 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
24 <child type="submenu"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
25 <object class="GtkMenu" id="menu1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
26 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
27 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
28 <object class="GtkImageMenuItem" id="close_window"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
29 <property name="label">gtk-close</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
30 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
31 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
32 <property name="use_stock">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
33 <signal name="activate" handler="on_close_window_activate"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
34 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
35 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
36 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
37 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
38 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
39 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
40 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
41 <object class="GtkMenuItem" id="menuitem2"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
42 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
43 <property name="label" translatable="yes">_Edit</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
44 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
45 <child type="submenu"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
46 <object class="GtkMenu" id="menu2"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
47 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
48 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
49 <object class="GtkImageMenuItem" id="imagemenuitem6"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
50 <property name="label">gtk-cut</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
51 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
52 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
53 <property name="use_stock">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
54 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
55 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
56 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
57 <object class="GtkImageMenuItem" id="imagemenuitem7"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
58 <property name="label">gtk-copy</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
59 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
60 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
61 <property name="use_stock">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
62 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
63 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
64 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
65 <object class="GtkImageMenuItem" id="imagemenuitem8"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
66 <property name="label">gtk-paste</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
67 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
68 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
69 <property name="use_stock">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
70 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
71 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
72 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
73 <object class="GtkImageMenuItem" id="imagemenuitem9"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
74 <property name="label">gtk-delete</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
75 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
76 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
77 <property name="use_stock">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
78 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
79 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
80 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
81 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
82 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
83 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
84 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
85 <object class="GtkMenuItem" id="menuitem3"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
86 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
87 <property name="label" translatable="yes">_View</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
88 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
89 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
90 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
91 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
92 <object class="GtkMenuItem" id="menuitem4"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
93 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
94 <property name="label" translatable="yes">_Help</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
95 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
96 <child type="submenu"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
97 <object class="GtkMenu" id="menu3"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
98 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
99 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
100 <object class="GtkImageMenuItem" id="imagemenuitem10"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
101 <property name="label">gtk-about</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
102 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
103 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
104 <property name="use_stock">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
105 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
106 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
107 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
108 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
109 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
110 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
111 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
112 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
113 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
114 <property name="position">0</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
115 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
116 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
117 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
118 <object class="GtkHandleBox" id="handlebox1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
119 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
120 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
121 <object class="GtkToolbar" id="toolbar1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
122 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
123 <property name="toolbar_style">icons</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
124 <property name="icon_size">1</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
125 <property name="icon_size_set">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
126 <child> |
1477
e217c7743905
Make FSM button radio
Thinker K.F. Li <thinker@codemud.net>
parents:
1457
diff
changeset
|
127 <object class="GtkRadioToolButton" id="add_state"> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
128 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
129 <property name="tooltip_text" translatable="yes">Add state</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
130 <property name="label" translatable="yes">Add State</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
131 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
132 <property name="stock_id">gtk-add</property> |
1478 | 133 <signal name="toggled" handler="on_add_state_toggled"/> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
134 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
135 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
136 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
137 <property name="homogeneous">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
138 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
139 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
140 <child> |
1477
e217c7743905
Make FSM button radio
Thinker K.F. Li <thinker@codemud.net>
parents:
1457
diff
changeset
|
141 <object class="GtkRadioToolButton" id="move_state"> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
142 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
143 <property name="tooltip_text" translatable="yes">Move or select a state</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
144 <property name="label" translatable="yes">select & move</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
145 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
146 <property name="icon_name">widget-gtk-alignment</property> |
1477
e217c7743905
Make FSM button radio
Thinker K.F. Li <thinker@codemud.net>
parents:
1457
diff
changeset
|
147 <property name="group">add_state</property> |
1478 | 148 <signal name="toggled" handler="on_move_state_toggled"/> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
149 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
150 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
151 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
152 <property name="homogeneous">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
153 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
154 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
155 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
156 <object class="GtkSeparatorToolItem" id="toolbutton1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
157 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
158 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
159 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
160 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
161 <property name="homogeneous">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
162 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
163 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
164 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
165 <object class="GtkToolButton" id="zoom_in"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
166 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
167 <property name="tooltip_text" translatable="yes">Zoom-in</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
168 <property name="label" translatable="yes">Zoom-in</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
169 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
170 <property name="stock_id">gtk-zoom-in</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
171 <signal name="clicked" handler="on_zoom_in_clicked"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
172 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
173 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
174 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
175 <property name="homogeneous">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
176 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
177 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
178 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
179 <object class="GtkToolButton" id="zoom_out"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
180 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
181 <property name="tooltip_text" translatable="yes">Zoom-out</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
182 <property name="label" translatable="yes">Zoom-out</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
183 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
184 <property name="stock_id">gtk-zoom-out</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
185 <signal name="clicked" handler="on_zoom_out_clicked"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
186 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
187 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
188 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
189 <property name="homogeneous">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
190 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
191 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
192 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
193 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
194 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
195 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
196 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
197 <property name="position">1</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
198 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
199 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
200 <child> |
1479
92a8497d0361
Make FSM editor scrollable
Thinker K.F. Li <thinker@codemud.net>
parents:
1478
diff
changeset
|
201 <object class="GtkVBox" id="view_box"> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
202 <property name="visible">True</property> |
1479
92a8497d0361
Make FSM editor scrollable
Thinker K.F. Li <thinker@codemud.net>
parents:
1478
diff
changeset
|
203 <property name="orientation">vertical</property> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
204 <child> |
1479
92a8497d0361
Make FSM editor scrollable
Thinker K.F. Li <thinker@codemud.net>
parents:
1478
diff
changeset
|
205 <placeholder/> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
206 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
207 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
208 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
209 <property name="position">2</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
210 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
211 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
212 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
213 <object class="GtkStatusbar" id="statusbar1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
214 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
215 <property name="spacing">5</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
216 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
217 <object class="GtkHBox" id="hbox1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
218 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
219 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
220 <object class="GtkLabel" id="label1"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
221 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
222 <property name="xalign">0.10000000149011612</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
223 <property name="label" translatable="yes">Compnent:</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
224 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
225 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
226 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
227 <property name="position">0</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
228 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
229 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
230 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
231 <object class="GtkLabel" id="comp_name"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
232 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
233 <property name="xpad">5</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
234 <property name="label" translatable="yes">component1</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
235 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
236 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
237 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
238 <property name="position">1</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
239 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
240 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
241 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
242 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
243 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
244 <property name="position">0</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
245 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
246 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
247 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
248 <packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
249 <property name="expand">False</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
250 <property name="position">3</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
251 </packing> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
252 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
253 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
254 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
255 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
256 <object class="GtkMenu" id="fsm_context"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
257 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
258 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
259 <object class="GtkMenuItem" id="remove_state"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
260 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
261 <property name="tooltip_text" translatable="yes">Remove selected state or transition.</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
262 <property name="label" translatable="yes">Remove</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
263 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
264 <signal name="activate" handler="on_remove_state_activate"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
265 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
266 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
267 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
268 <object class="GtkMenuItem" id="rename_state"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
269 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
270 <property name="tooltip_text" translatable="yes">Change state name</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
271 <property name="label" translatable="yes">Rename</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
272 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
273 <signal name="activate" handler="on_rename_state_activate"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
274 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
275 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
276 <child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
277 <object class="GtkMenuItem" id="start_state"> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
278 <property name="visible">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
279 <property name="tooltip_text" translatable="yes">Make the selected state as start state.</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
280 <property name="label" translatable="yes">Start State</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
281 <property name="use_underline">True</property> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
282 <signal name="activate" handler="on_start_state_activate"/> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
283 </object> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
284 </child> |
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
285 </object> |
1478 | 286 <object class="GtkDialog" id="state_editor"> |
287 <property name="border_width">5</property> | |
288 <property name="title" translatable="yes">State Editor</property> | |
289 <property name="modal">True</property> | |
290 <property name="window_position">center-on-parent</property> | |
291 <property name="default_height">200</property> | |
292 <property name="type_hint">normal</property> | |
293 <property name="transient_for">FSM_main_win</property> | |
294 <signal name="delete_event" handler="gtk_widget_hide"/> | |
295 <child internal-child="vbox"> | |
296 <object class="GtkVBox" id="dialog-vbox1"> | |
297 <property name="visible">True</property> | |
298 <property name="orientation">vertical</property> | |
299 <property name="spacing">2</property> | |
300 <child> | |
301 <object class="GtkTable" id="table1"> | |
302 <property name="visible">True</property> | |
303 <property name="n_rows">3</property> | |
304 <property name="n_columns">2</property> | |
305 <child> | |
306 <object class="GtkLabel" id="label2"> | |
307 <property name="visible">True</property> | |
308 <property name="label" translatable="yes">Name:</property> | |
1492
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
309 <property name="justify">right</property> |
1478 | 310 </object> |
311 </child> | |
312 <child> | |
313 <object class="GtkLabel" id="label3"> | |
314 <property name="visible">True</property> | |
315 <property name="label" translatable="yes">Radius:</property> | |
1492
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
316 <property name="justify">right</property> |
1478 | 317 </object> |
318 <packing> | |
319 <property name="top_attach">1</property> | |
320 <property name="bottom_attach">2</property> | |
321 </packing> | |
322 </child> | |
323 <child> | |
324 <object class="GtkEntry" id="state_name"> | |
325 <property name="visible">True</property> | |
326 <property name="can_focus">True</property> | |
327 <property name="invisible_char">●</property> | |
328 </object> | |
329 <packing> | |
330 <property name="left_attach">1</property> | |
331 <property name="right_attach">2</property> | |
332 </packing> | |
333 </child> | |
334 <child> | |
335 <object class="GtkEntry" id="state_radius"> | |
336 <property name="visible">True</property> | |
337 <property name="can_focus">True</property> | |
338 <property name="invisible_char">●</property> | |
339 </object> | |
340 <packing> | |
341 <property name="left_attach">1</property> | |
342 <property name="right_attach">2</property> | |
343 <property name="top_attach">1</property> | |
344 <property name="bottom_attach">2</property> | |
345 </packing> | |
346 </child> | |
347 <child> | |
1492
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
348 <object class="GtkLabel" id="label4"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
349 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
350 <property name="label" translatable="yes">Entry Action:</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
351 <property name="justify">right</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
352 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
353 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
354 <property name="top_attach">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
355 <property name="bottom_attach">3</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
356 </packing> |
1478 | 357 </child> |
358 <child> | |
1492
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
359 <object class="GtkEntry" id="state_entry_action"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
360 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
361 <property name="can_focus">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
362 <property name="invisible_char">●</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
363 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
364 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
365 <property name="left_attach">1</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
366 <property name="right_attach">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
367 <property name="top_attach">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
368 <property name="bottom_attach">3</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
369 </packing> |
1478 | 370 </child> |
371 </object> | |
372 <packing> | |
373 <property name="expand">False</property> | |
374 <property name="position">1</property> | |
375 </packing> | |
376 </child> | |
377 <child internal-child="action_area"> | |
378 <object class="GtkHButtonBox" id="dialog-action_area1"> | |
379 <property name="visible">True</property> | |
380 <property name="layout_style">end</property> | |
381 <child> | |
382 <object class="GtkButton" id="state_apply"> | |
383 <property name="label">gtk-apply</property> | |
384 <property name="visible">True</property> | |
385 <property name="can_focus">True</property> | |
386 <property name="receives_default">True</property> | |
387 <property name="use_stock">True</property> | |
388 <signal name="clicked" handler="on_state_apply_clicked"/> | |
389 </object> | |
390 <packing> | |
391 <property name="expand">False</property> | |
392 <property name="fill">False</property> | |
393 <property name="position">0</property> | |
394 </packing> | |
395 </child> | |
396 <child> | |
397 <object class="GtkButton" id="state_cancel"> | |
398 <property name="label">gtk-cancel</property> | |
399 <property name="visible">True</property> | |
400 <property name="can_focus">True</property> | |
401 <property name="receives_default">True</property> | |
402 <property name="use_stock">True</property> | |
403 <signal name="clicked" handler="on_state_cancel_clicked"/> | |
404 </object> | |
405 <packing> | |
406 <property name="expand">False</property> | |
407 <property name="fill">False</property> | |
408 <property name="position">1</property> | |
409 </packing> | |
410 </child> | |
411 </object> | |
412 <packing> | |
413 <property name="expand">False</property> | |
414 <property name="pack_type">end</property> | |
415 <property name="position">0</property> | |
416 </packing> | |
417 </child> | |
418 </object> | |
419 </child> | |
420 <action-widgets> | |
421 <action-widget response="0">state_apply</action-widget> | |
422 <action-widget response="0">state_cancel</action-widget> | |
423 </action-widgets> | |
424 </object> | |
425 <object class="GtkDialog" id="error_dialog"> | |
426 <property name="width_request">200</property> | |
427 <property name="height_request">200</property> | |
428 <property name="border_width">5</property> | |
429 <property name="title" translatable="yes">Error</property> | |
430 <property name="resizable">False</property> | |
431 <property name="modal">True</property> | |
432 <property name="type_hint">normal</property> | |
433 <property name="transient_for">state_editor</property> | |
434 <signal name="delete_event" handler="gtk_widget_hide"/> | |
435 <child internal-child="vbox"> | |
436 <object class="GtkVBox" id="dialog-vbox2"> | |
437 <property name="visible">True</property> | |
438 <property name="orientation">vertical</property> | |
439 <property name="spacing">2</property> | |
440 <child> | |
441 <object class="GtkVBox" id="vbox3"> | |
442 <property name="visible">True</property> | |
443 <property name="orientation">vertical</property> | |
444 <child> | |
445 <object class="GtkLabel" id="error_dialog_label"> | |
446 <property name="visible">True</property> | |
447 <property name="label" translatable="yes">Invalid state name. It is a existing state name or invalid in format!</property> | |
448 <property name="wrap">True</property> | |
449 </object> | |
450 <packing> | |
451 <property name="position">0</property> | |
452 </packing> | |
453 </child> | |
454 </object> | |
455 <packing> | |
456 <property name="position">1</property> | |
457 </packing> | |
458 </child> | |
459 <child internal-child="action_area"> | |
460 <object class="GtkHButtonBox" id="dialog-action_area2"> | |
461 <property name="visible">True</property> | |
462 <property name="layout_style">end</property> | |
463 <child> | |
464 <placeholder/> | |
465 </child> | |
466 <child> | |
467 <object class="GtkButton" id="error_dialog_ok"> | |
468 <property name="label">gtk-ok</property> | |
469 <property name="visible">True</property> | |
470 <property name="can_focus">True</property> | |
471 <property name="receives_default">True</property> | |
472 <property name="use_stock">True</property> | |
473 <signal name="clicked" handler="on_error_dialog_ok_clicked"/> | |
474 </object> | |
475 <packing> | |
476 <property name="expand">False</property> | |
477 <property name="fill">False</property> | |
478 <property name="position">1</property> | |
479 </packing> | |
480 </child> | |
481 </object> | |
482 <packing> | |
483 <property name="expand">False</property> | |
484 <property name="pack_type">end</property> | |
485 <property name="position">0</property> | |
486 </packing> | |
487 </child> | |
488 </object> | |
489 </child> | |
490 <action-widgets> | |
491 <action-widget response="0">error_dialog_ok</action-widget> | |
492 </action-widgets> | |
493 </object> | |
1488
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
494 <object class="GtkMenu" id="state_menu"> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
495 <property name="visible">True</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
496 <child> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
497 <object class="GtkMenuItem" id="add_transition"> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
498 <property name="visible">True</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
499 <property name="tooltip_text" translatable="yes">Add a transition to the state</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
500 <property name="label" translatable="yes">Add Transition</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
501 <property name="use_underline">True</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
502 <signal name="activate" handler="on_add_transition_activate"/> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
503 </object> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
504 </child> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
505 <child> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
506 <object class="GtkMenuItem" id="del_state"> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
507 <property name="visible">True</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
508 <property name="tooltip_text" translatable="yes">Delete selecting state</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
509 <property name="label" translatable="yes">Del State</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
510 <property name="use_underline">True</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
511 <signal name="activate" handler="on_del_state_activate"/> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
512 </object> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
513 </child> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
514 <child> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
515 <object class="GtkMenuItem" id="edit_state"> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
516 <property name="visible">True</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
517 <property name="tooltip_text" translatable="yes">Edit properties of the state.</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
518 <property name="label" translatable="yes">Edit State</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
519 <property name="use_underline">True</property> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
520 <signal name="activate" handler="on_edit_state_activate"/> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
521 </object> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
522 </child> |
757c5626d15d
Show context menu for states
Thinker K.F. Li <thinker@codemud.net>
parents:
1479
diff
changeset
|
523 </object> |
1492
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
524 <object class="GtkDialog" id="transition_editor"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
525 <property name="border_width">5</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
526 <property name="modal">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
527 <property name="window_position">center-always</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
528 <property name="default_height">200</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
529 <property name="type_hint">normal</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
530 <property name="transient_for">FSM_main_win</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
531 <child internal-child="vbox"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
532 <object class="GtkVBox" id="dialog-vbox3"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
533 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
534 <property name="orientation">vertical</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
535 <property name="spacing">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
536 <child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
537 <object class="GtkTable" id="table2"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
538 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
539 <property name="n_rows">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
540 <property name="n_columns">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
541 <child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
542 <object class="GtkLabel" id="label5"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
543 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
544 <property name="label" translatable="yes">Condition:</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
545 <property name="justify">right</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
546 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
547 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
548 <child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
549 <object class="GtkLabel" id="label6"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
550 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
551 <property name="label" translatable="yes">Action:</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
552 <property name="justify">right</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
553 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
554 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
555 <property name="top_attach">1</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
556 <property name="bottom_attach">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
557 </packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
558 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
559 <child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
560 <object class="GtkEntry" id="transition_cond"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
561 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
562 <property name="can_focus">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
563 <property name="invisible_char">●</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
564 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
565 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
566 <property name="left_attach">1</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
567 <property name="right_attach">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
568 </packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
569 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
570 <child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
571 <object class="GtkEntry" id="transition_action"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
572 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
573 <property name="can_focus">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
574 <property name="invisible_char">●</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
575 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
576 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
577 <property name="left_attach">1</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
578 <property name="right_attach">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
579 <property name="top_attach">1</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
580 <property name="bottom_attach">2</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
581 </packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
582 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
583 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
584 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
585 <property name="expand">False</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
586 <property name="position">1</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
587 </packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
588 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
589 <child internal-child="action_area"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
590 <object class="GtkHButtonBox" id="dialog-action_area3"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
591 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
592 <property name="layout_style">end</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
593 <child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
594 <object class="GtkButton" id="transition_apply"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
595 <property name="label">gtk-apply</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
596 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
597 <property name="can_focus">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
598 <property name="receives_default">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
599 <property name="use_stock">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
600 <signal name="clicked" handler="on_transition_apply_clicked"/> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
601 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
602 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
603 <property name="expand">False</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
604 <property name="fill">False</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
605 <property name="position">0</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
606 </packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
607 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
608 <child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
609 <object class="GtkButton" id="transition_cancel"> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
610 <property name="label">gtk-cancel</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
611 <property name="visible">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
612 <property name="can_focus">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
613 <property name="receives_default">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
614 <property name="use_stock">True</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
615 <signal name="clicked" handler="on_transition_cancel_clicked"/> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
616 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
617 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
618 <property name="expand">False</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
619 <property name="fill">False</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
620 <property name="position">1</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
621 </packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
622 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
623 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
624 <packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
625 <property name="expand">False</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
626 <property name="pack_type">end</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
627 <property name="position">0</property> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
628 </packing> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
629 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
630 </object> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
631 </child> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
632 <action-widgets> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
633 <action-widget response="0">transition_apply</action-widget> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
634 <action-widget response="0">transition_cancel</action-widget> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
635 </action-widgets> |
6616530c4180
Show hint when mouse over a transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1488
diff
changeset
|
636 </object> |
1496
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
637 <object class="GtkMenu" id="transition_menu"> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
638 <property name="visible">True</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
639 <child> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
640 <object class="GtkMenuItem" id="del_transition"> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
641 <property name="visible">True</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
642 <property name="tooltip_text" translatable="yes">Delete the transition</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
643 <property name="label" translatable="yes">Delete</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
644 <property name="use_underline">True</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
645 <signal name="activate" handler="on_del_transition_activate"/> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
646 </object> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
647 </child> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
648 <child> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
649 <object class="GtkMenuItem" id="edit_transition"> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
650 <property name="visible">True</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
651 <property name="tooltip_text" translatable="yes">Edit properties of the transition</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
652 <property name="label" translatable="yes">Edit</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
653 <property name="use_underline">True</property> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
654 <signal name="activate" handler="on_edit_transition_activate"/> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
655 </object> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
656 </child> |
042587afed2e
Add popup menu for transition
Thinker K.F. Li <thinker@codemud.net>
parents:
1492
diff
changeset
|
657 </object> |
1456
894a4bf35fe6
Start implement FSM editor window
Thinker K.F. Li <thinker@codemud.net>
parents:
diff
changeset
|
658 </interface> |