comparison pyink/component_dock.glade @ 1309:f2b1b22f7cbc

Make comp_dock editable
author Thinker K.F. Li <thinker@codemud.net>
date Thu, 20 Jan 2011 10:54:27 +0800
parents 49775feefbcf
children c2a693a27eb9
comparison
equal deleted inserted replaced
1308:49775feefbcf 1309:f2b1b22f7cbc
4 <!-- interface-naming-policy project-wide --> 4 <!-- interface-naming-policy project-wide -->
5 <object class="GtkListStore" id="components_model"> 5 <object class="GtkListStore" id="components_model">
6 <columns> 6 <columns>
7 <!-- column-name name --> 7 <!-- column-name name -->
8 <column type="gchararray"/> 8 <column type="gchararray"/>
9 <!-- column-name editable -->
10 <column type="gboolean"/>
9 </columns> 11 </columns>
10 </object> 12 </object>
11 <object class="GtkListStore" id="timelines_model"> 13 <object class="GtkListStore" id="timelines_model">
12 <columns> 14 <columns>
13 <!-- column-name name --> 15 <!-- column-name name -->
14 <column type="gchararray"/> 16 <column type="gchararray"/>
17 <!-- column-name editable -->
18 <column type="gboolean"/>
15 </columns> 19 </columns>
16 </object> 20 </object>
17 <object class="GtkWindow" id="window1"> 21 <object class="GtkWindow" id="window1">
18 <child> 22 <child>
19 <object class="GtkVBox" id="component_dock_top"> 23 <object class="GtkVBox" id="component_dock_top">
34 <object class="GtkTreeViewColumn" id="treeviewcolumn1"> 38 <object class="GtkTreeViewColumn" id="treeviewcolumn1">
35 <property name="sizing">autosize</property> 39 <property name="sizing">autosize</property>
36 <property name="title">Component Name</property> 40 <property name="title">Component Name</property>
37 <property name="expand">True</property> 41 <property name="expand">True</property>
38 <child> 42 <child>
39 <object class="GtkCellRendererText" id="cellrenderertext1"/> 43 <object class="GtkCellRendererText" id="cellrenderer_comp">
44 <signal name="edited" handler="on_cellrenderer_comp_edited"/>
45 </object>
40 <attributes> 46 <attributes>
47 <attribute name="editable">1</attribute>
41 <attribute name="text">0</attribute> 48 <attribute name="text">0</attribute>
42 </attributes> 49 </attributes>
43 </child> 50 </child>
44 </object> 51 </object>
45 </child> 52 </child>
123 <signal name="cursor_changed" handler="on_treeview_timelines_cursor_changed"/> 130 <signal name="cursor_changed" handler="on_treeview_timelines_cursor_changed"/>
124 <child> 131 <child>
125 <object class="GtkTreeViewColumn" id="treeviewcolumn2"> 132 <object class="GtkTreeViewColumn" id="treeviewcolumn2">
126 <property name="title">Action/Timeline Name</property> 133 <property name="title">Action/Timeline Name</property>
127 <child> 134 <child>
128 <object class="GtkCellRendererText" id="cellrenderertext2"/> 135 <object class="GtkCellRendererText" id="cellrenderer_timelines">
136 <signal name="edited" handler="on_cellrenderer_timelines_edited"/>
137 </object>
129 <attributes> 138 <attributes>
139 <attribute name="editable">1</attribute>
130 <attribute name="text">0</attribute> 140 <attribute name="text">0</attribute>
131 </attributes> 141 </attributes>
132 </child> 142 </child>
133 </object> 143 </object>
134 </child> 144 </child>