tecscde 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (237) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +12 -0
  3. data/.rubocop.yml +125 -0
  4. data/.rubocop_todo.yml +188 -0
  5. data/CHANGELOG.md +3 -0
  6. data/Gemfile +6 -0
  7. data/LICENSE +46 -0
  8. data/LICENSE.ja +32 -0
  9. data/README.ja.md +200 -0
  10. data/README.md +35 -0
  11. data/Rakefile +27 -0
  12. data/bin/tecscde +64 -0
  13. data/glade/tecscde-cell-property.glade +205 -0
  14. data/glade/tecscde-celltype-property.glade +172 -0
  15. data/glade/tecscde-celltype.glade +414 -0
  16. data/glade/tecscde-export.glade +161 -0
  17. data/glade/test-cell-plugin.rb +51 -0
  18. data/glade/test-cell-property.rb +35 -0
  19. data/glade/test-export.rb +35 -0
  20. data/glade/test-palette.rb +26 -0
  21. data/lib/tcflow.rb +148 -0
  22. data/lib/tecscde.rb +65 -0
  23. data/lib/tecscde/NewCell.png +0 -0
  24. data/lib/tecscde/SelectArrow.png +0 -0
  25. data/lib/tecscde/attr_tree_view.rb +253 -0
  26. data/lib/tecscde/cell_plugin_dialog.glade +294 -0
  27. data/lib/tecscde/cell_plugin_dialog.rb +89 -0
  28. data/lib/tecscde/celltype_tree_view.rb +105 -0
  29. data/lib/tecscde/change_set_control.rb +35 -0
  30. data/lib/tecscde/change_set_control/change_set.rb +32 -0
  31. data/lib/tecscde/change_set_control/change_set_manager.rb +62 -0
  32. data/lib/tecscde/command.rb +35 -0
  33. data/lib/tecscde/control.rb +491 -0
  34. data/lib/tecscde/highlighted_objects.rb +180 -0
  35. data/lib/tecscde/logger.rb +74 -0
  36. data/lib/tecscde/main_view_and_model.rb +80 -0
  37. data/lib/tecscde/palette.glade +553 -0
  38. data/lib/tecscde/palette.rb +174 -0
  39. data/lib/tecscde/preferences.glade +117 -0
  40. data/lib/tecscde/preferences.rb +44 -0
  41. data/lib/tecscde/tecs_model.rb +1137 -0
  42. data/lib/tecscde/tecs_model/hbar.rb +68 -0
  43. data/lib/tecscde/tecs_model/tm_c_port.rb +122 -0
  44. data/lib/tecscde/tecs_model/tm_c_port_array.rb +98 -0
  45. data/lib/tecscde/tecs_model/tm_cell.rb +496 -0
  46. data/lib/tecscde/tecs_model/tm_e_port.rb +126 -0
  47. data/lib/tecscde/tecs_model/tm_e_port_array.rb +78 -0
  48. data/lib/tecscde/tecs_model/tm_join.rb +293 -0
  49. data/lib/tecscde/tecs_model/tm_join_bar.rb +146 -0
  50. data/lib/tecscde/tecs_model/tm_port.rb +238 -0
  51. data/lib/tecscde/tecs_model/tm_port_array.rb +246 -0
  52. data/lib/tecscde/tecs_model/tm_region.rb +107 -0
  53. data/lib/tecscde/tecs_model/tm_uneditable.rb +68 -0
  54. data/lib/tecscde/tecs_model/vbar.rb +68 -0
  55. data/lib/tecscde/templates/_cell_info.cde.erb +15 -0
  56. data/lib/tecscde/templates/_join_info.cde.erb +28 -0
  57. data/lib/tecscde/templates/main.cde.erb +49 -0
  58. data/lib/tecscde/tm_object.rb +91 -0
  59. data/lib/tecscde/version.rb +4 -0
  60. data/lib/tecscde/view.rb +58 -0
  61. data/lib/tecscde/view/cairo_matrix.rb +90 -0
  62. data/lib/tecscde/view/canvas.rb +59 -0
  63. data/lib/tecscde/view/constants.rb +114 -0
  64. data/lib/tecscde/view/main_view.rb +1245 -0
  65. data/lib/tecsflow.rb +475 -0
  66. data/lib/tecsflow/C_parser.tab.rb +2471 -0
  67. data/lib/tecsflow/C_parser.y.rb +1087 -0
  68. data/lib/tecsflow/classes.rb +421 -0
  69. data/lib/tecsgen.rb +581 -0
  70. data/lib/tecsgen/core/C_parser.tab.rb +2477 -0
  71. data/lib/tecsgen/core/C_parser.y +1032 -0
  72. data/lib/tecsgen/core/bnf-deb.tab.rb +5193 -0
  73. data/lib/tecsgen/core/bnf.tab.rb +5193 -0
  74. data/lib/tecsgen/core/bnf.y +2211 -0
  75. data/lib/tecsgen/core/componentobj.rb +7901 -0
  76. data/lib/tecsgen/core/ctypes.rb +226 -0
  77. data/lib/tecsgen/core/expression.rb +1031 -0
  78. data/lib/tecsgen/core/gen_xml.rb +374 -0
  79. data/lib/tecsgen/core/generate.rb +5206 -0
  80. data/lib/tecsgen/core/location.rb +116 -0
  81. data/lib/tecsgen/core/messages.rb +101 -0
  82. data/lib/tecsgen/core/optimize.rb +456 -0
  83. data/lib/tecsgen/core/plugin.rb +332 -0
  84. data/lib/tecsgen/core/pluginModule.rb +165 -0
  85. data/lib/tecsgen/core/syntaxobj.rb +1234 -0
  86. data/lib/tecsgen/core/tecs_lang.rb +306 -0
  87. data/lib/tecsgen/core/tecsgen.rb +453 -0
  88. data/lib/tecsgen/core/tecsinfo.rb +860 -0
  89. data/lib/tecsgen/core/tool_info.rb +258 -0
  90. data/lib/tecsgen/core/types.rb +1632 -0
  91. data/lib/tecsgen/core/unjoin_plugin.rb +218 -0
  92. data/lib/tecsgen/core/value.rb +650 -0
  93. data/lib/tecsgen/messages/messages_console_en_US.rb +1171 -0
  94. data/lib/tecsgen/messages/messages_console_ja_JP.rb +1171 -0
  95. data/lib/tecsgen/messages/messages_file_en_US.rb +334 -0
  96. data/lib/tecsgen/messages/messages_file_ja_JP.rb +163 -0
  97. data/lib/tecsgen/plugin/ATK1AlarmPlugin.rb +196 -0
  98. data/lib/tecsgen/plugin/ATK1DelayTaskPlugin.rb +106 -0
  99. data/lib/tecsgen/plugin/ATK1EventPlugin.rb +147 -0
  100. data/lib/tecsgen/plugin/ATK1ISRPlugin.rb +174 -0
  101. data/lib/tecsgen/plugin/ATK1KernelPlugin.rb +287 -0
  102. data/lib/tecsgen/plugin/ATK1ResourcePlugin.rb +124 -0
  103. data/lib/tecsgen/plugin/ATK1TaskPlugin.rb +220 -0
  104. data/lib/tecsgen/plugin/C2TECSBridgePlugin.rb +210 -0
  105. data/lib/tecsgen/plugin/CellPlugin.rb +61 -0
  106. data/lib/tecsgen/plugin/CelltypePlugin.rb +72 -0
  107. data/lib/tecsgen/plugin/CompositePlugin.rb +66 -0
  108. data/lib/tecsgen/plugin/DomainPlugin.rb +89 -0
  109. data/lib/tecsgen/plugin/HRP2AlarmHandlerPlugin.rb +76 -0
  110. data/lib/tecsgen/plugin/HRP2Cache.rb +1 -0
  111. data/lib/tecsgen/plugin/HRP2CyclicHandlerPlugin.rb +75 -0
  112. data/lib/tecsgen/plugin/HRP2DataqueuePlugin.rb +68 -0
  113. data/lib/tecsgen/plugin/HRP2EventflagPlugin.rb +68 -0
  114. data/lib/tecsgen/plugin/HRP2FixedSizeMemoryPoolPlugin.rb +68 -0
  115. data/lib/tecsgen/plugin/HRP2HandlerPlugin.rb +117 -0
  116. data/lib/tecsgen/plugin/HRP2KernelObjectPlugin.rb +372 -0
  117. data/lib/tecsgen/plugin/HRP2ObjectPlugin.rb +94 -0
  118. data/lib/tecsgen/plugin/HRP2Plugin.rb +140 -0
  119. data/lib/tecsgen/plugin/HRP2PostHook.rb +111 -0
  120. data/lib/tecsgen/plugin/HRP2PriorityDataqueuePlugin.rb +66 -0
  121. data/lib/tecsgen/plugin/HRP2RPCPlugin.rb +319 -0
  122. data/lib/tecsgen/plugin/HRP2SVCPlugin.rb +473 -0
  123. data/lib/tecsgen/plugin/HRP2SemaphorePlugin.rb +67 -0
  124. data/lib/tecsgen/plugin/HRP2TaskPlugin.rb +200 -0
  125. data/lib/tecsgen/plugin/HRPHandlerPlugin.rb +125 -0
  126. data/lib/tecsgen/plugin/HRPKernelObjectManager.rb +72 -0
  127. data/lib/tecsgen/plugin/HRPKernelObjectPlugin.rb +333 -0
  128. data/lib/tecsgen/plugin/HRPObjectPlugin.rb +93 -0
  129. data/lib/tecsgen/plugin/HRPPlugin.rb +356 -0
  130. data/lib/tecsgen/plugin/HRPRPCPlugin.rb +407 -0
  131. data/lib/tecsgen/plugin/HRPSVCPlugin.rb +859 -0
  132. data/lib/tecsgen/plugin/HRPTaskPlugin.rb +107 -0
  133. data/lib/tecsgen/plugin/Mruby2CBridgePlugin.rb +86 -0
  134. data/lib/tecsgen/plugin/MrubyBridgeCellPlugin.rb +264 -0
  135. data/lib/tecsgen/plugin/MrubyBridgeCelltypePlugin.rb +293 -0
  136. data/lib/tecsgen/plugin/MrubyBridgeCompositePlugin.rb +49 -0
  137. data/lib/tecsgen/plugin/MrubyBridgePlugin.rb +67 -0
  138. data/lib/tecsgen/plugin/MrubyBridgeSignaturePlugin.rb +1307 -0
  139. data/lib/tecsgen/plugin/MrubyInfoBridgePlugin.rb +14 -0
  140. data/lib/tecsgen/plugin/MrubyInfoBridgeSignaturePlugin.rb +994 -0
  141. data/lib/tecsgen/plugin/MultiPlugin.rb +57 -0
  142. data/lib/tecsgen/plugin/NotifierPlugin.rb +1217 -0
  143. data/lib/tecsgen/plugin/OpaqueMarshalerPlugin.rb +81 -0
  144. data/lib/tecsgen/plugin/OpaqueRPCPlugin.rb +323 -0
  145. data/lib/tecsgen/plugin/RPCPlugin.rb +266 -0
  146. data/lib/tecsgen/plugin/RepeatCellPlugin.rb +166 -0
  147. data/lib/tecsgen/plugin/RepeatJoinPlugin.rb +130 -0
  148. data/lib/tecsgen/plugin/SharedOpaqueRPCPlugin.rb +357 -0
  149. data/lib/tecsgen/plugin/SharedRPCPlugin.rb +329 -0
  150. data/lib/tecsgen/plugin/SignaturePlugin.rb +77 -0
  151. data/lib/tecsgen/plugin/TECS2CBridgePlugin.rb +178 -0
  152. data/lib/tecsgen/plugin/TECSInfoPlugin.rb +280 -0
  153. data/lib/tecsgen/plugin/ThroughPlugin.rb +333 -0
  154. data/lib/tecsgen/plugin/TracePlugin.rb +484 -0
  155. data/lib/tecsgen/plugin/lib/GenHRP2Marshaler.rb +761 -0
  156. data/lib/tecsgen/plugin/lib/GenOpaqueMarshaler.rb +1107 -0
  157. data/lib/tecsgen/plugin/lib/GenParamCopy.rb +365 -0
  158. data/lib/tecsgen/plugin/lib/GenTransparentMarshaler.rb +683 -0
  159. data/lib/tecsgen/plugin/lib/MrubyBridgeCelltypePluginModule.rb +283 -0
  160. data/lib/tecsgen/plugin/lib/MrubyBridgeSignaturePluginModule.rb +277 -0
  161. data/lib/tecsgen/version.rb +6 -0
  162. data/samples/FigureSamples/active/active.cde +104 -0
  163. data/samples/FigureSamples/active/active.cdl +20 -0
  164. data/samples/FigureSamples/active/active.pdf +0 -0
  165. data/samples/FigureSamples/active/active.png +0 -0
  166. data/samples/FigureSamples/active/gen/tmp_C_src.c +36 -0
  167. data/samples/FigureSamples/active/gen/tmp_cygwin_tecs.h +1908 -0
  168. data/samples/FigureSamples/active/gen/tmp_plugin_post_code.cdl +0 -0
  169. data/samples/FigureSamples/allocator/allocator-internal.png +0 -0
  170. data/samples/FigureSamples/allocator/allocator.cde +171 -0
  171. data/samples/FigureSamples/allocator/allocator.cdl +58 -0
  172. data/samples/FigureSamples/allocator/allocator.png +0 -0
  173. data/samples/FigureSamples/basic/Makefile +87 -0
  174. data/samples/FigureSamples/basic/SimpleSample-trace.cdl +50 -0
  175. data/samples/FigureSamples/basic/SimpleSample.cde +91 -0
  176. data/samples/FigureSamples/basic/SimpleSample.cdl +47 -0
  177. data/samples/FigureSamples/basic/basic.cde +93 -0
  178. data/samples/FigureSamples/basic/basic.cdl +46 -0
  179. data/samples/FigureSamples/basic/basic.png +0 -0
  180. data/samples/FigureSamples/callback/callback.cde +130 -0
  181. data/samples/FigureSamples/callback/callback.cdl +29 -0
  182. data/samples/FigureSamples/callback/callback.png +0 -0
  183. data/samples/FigureSamples/carray/carray.cde +144 -0
  184. data/samples/FigureSamples/carray/carray.cdl +38 -0
  185. data/samples/FigureSamples/carray/carray.png +0 -0
  186. data/samples/FigureSamples/cearray/cearray.cde +314 -0
  187. data/samples/FigureSamples/cearray/cearray.cdl +60 -0
  188. data/samples/FigureSamples/cearray/cearray.png +0 -0
  189. data/samples/FigureSamples/composite/composite-internal.png +0 -0
  190. data/samples/FigureSamples/composite/composite.cde +216 -0
  191. data/samples/FigureSamples/composite/composite.cdl +95 -0
  192. data/samples/FigureSamples/composite/composite.png +0 -0
  193. data/samples/FigureSamples/earray/earray.cde +142 -0
  194. data/samples/FigureSamples/earray/earray.cdl +38 -0
  195. data/samples/FigureSamples/earray/earray.png +0 -0
  196. data/samples/FigureSamples/join/Makefile +87 -0
  197. data/samples/FigureSamples/join/join.cde +132 -0
  198. data/samples/FigureSamples/join/join.cdl +40 -0
  199. data/samples/FigureSamples/join/join.png +0 -0
  200. data/samples/FigureSamples/relay/Makefile +99 -0
  201. data/samples/FigureSamples/relay/relay-internal.png +0 -0
  202. data/samples/FigureSamples/relay/relay.cde +284 -0
  203. data/samples/FigureSamples/relay/relay.cdl +52 -0
  204. data/samples/FigureSamples/relay/relay.png +0 -0
  205. data/samples/FigureSamples/rpc/Makefile +123 -0
  206. data/samples/FigureSamples/rpc/rpc-expand.png +0 -0
  207. data/samples/FigureSamples/rpc/rpc.cde +245 -0
  208. data/samples/FigureSamples/rpc/rpc.png +0 -0
  209. data/samples/FigureSamples/rpc/rpc_sample.cdl +53 -0
  210. data/samples/SimpleSample/Makefile +25 -0
  211. data/samples/SimpleSample/SimpleSample/Makefile +86 -0
  212. data/samples/SimpleSample/SimpleSample/Makefile-trace +91 -0
  213. data/samples/SimpleSample/SimpleSample/README.txt +106 -0
  214. data/samples/SimpleSample/SimpleSample/SimpleSample-trace.cdl +50 -0
  215. data/samples/SimpleSample/SimpleSample/SimpleSample.cdl +45 -0
  216. data/samples/SimpleSample/SimpleSample/src/tSample.c +77 -0
  217. data/samples/SimpleSample/SimpleSample/src/tSimple.c +48 -0
  218. data/samples/SimpleSample/SimpleSample/src/tecs-types.h +27 -0
  219. data/samples/SimpleSample/SimpleSampleOpaqueRPC/Makefile +51 -0
  220. data/samples/SimpleSample/SimpleSampleOpaqueRPC/Makefile-trace +91 -0
  221. data/samples/SimpleSample/SimpleSampleOpaqueRPC/README.txt +106 -0
  222. data/samples/SimpleSample/SimpleSampleOpaqueRPC/SimpleSample-trace.cdl +80 -0
  223. data/samples/SimpleSample/SimpleSampleOpaqueRPC/SimpleSample.cdl +77 -0
  224. data/samples/SimpleSample/SimpleSampleOpaqueRPC/rSample/Makefile +112 -0
  225. data/samples/SimpleSample/SimpleSampleOpaqueRPC/rSimple/Makefile +109 -0
  226. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tSample.c +80 -0
  227. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tSimple.c +47 -0
  228. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tTaskMain.c +66 -0
  229. data/samples/SimpleSample/SimpleSampleOpaqueRPC/src/tecs-types.h +27 -0
  230. data/samples/SimpleSample/SimpleSampleTransparentRPC/Makefile +125 -0
  231. data/samples/SimpleSample/SimpleSampleTransparentRPC/Makefile-trace +130 -0
  232. data/samples/SimpleSample/SimpleSampleTransparentRPC/SimpleSample-trace.cdl +54 -0
  233. data/samples/SimpleSample/SimpleSampleTransparentRPC/SimpleSample.cdl +53 -0
  234. data/samples/SimpleSample/SimpleSampleTransparentRPC/src/tSample.c +80 -0
  235. data/samples/SimpleSample/SimpleSampleTransparentRPC/src/tSimple.c +54 -0
  236. data/tecscde.gemspec +41 -0
  237. metadata +353 -0
@@ -0,0 +1,414 @@
1
+ <?xml version="1.0"?>
2
+ <interface>
3
+ <requires lib="gtk+" version="2.16"/>
4
+ <!-- interface-naming-policy project-wide -->
5
+ <object class="GtkDialog" id="dialog1">
6
+ <property name="border_width">5</property>
7
+ <property name="type_hint">normal</property>
8
+ <property name="has_separator">False</property>
9
+ <child internal-child="vbox">
10
+ <object class="GtkVBox" id="dialog-vbox1">
11
+ <property name="visible">True</property>
12
+ <property name="orientation">vertical</property>
13
+ <property name="spacing">2</property>
14
+ <child>
15
+ <object class="GtkVBox" id="vbox1">
16
+ <property name="visible">True</property>
17
+ <property name="orientation">vertical</property>
18
+ <child>
19
+ <object class="GtkHBox" id="hbox1">
20
+ <property name="visible">True</property>
21
+ <child>
22
+ <object class="GtkLabel" id="label">
23
+ <property name="visible">True</property>
24
+ <property name="label" translatable="yes">Celltype Property</property>
25
+ </object>
26
+ <packing>
27
+ <property name="expand">False</property>
28
+ <property name="position">0</property>
29
+ </packing>
30
+ </child>
31
+ <child>
32
+ <object class="GtkLabel" id="label1">
33
+ <property name="visible">True</property>
34
+ <property name="xalign">0.94999998807907104</property>
35
+ <property name="label" translatable="yes">name</property>
36
+ </object>
37
+ <packing>
38
+ <property name="position">1</property>
39
+ </packing>
40
+ </child>
41
+ <child>
42
+ <object class="GtkEntry" id="entry_celltype_name">
43
+ <property name="visible">True</property>
44
+ <property name="can_focus">True</property>
45
+ <property name="invisible_char">&#x25CF;</property>
46
+ </object>
47
+ <packing>
48
+ <property name="position">2</property>
49
+ </packing>
50
+ </child>
51
+ </object>
52
+ <packing>
53
+ <property name="expand">False</property>
54
+ <property name="position">0</property>
55
+ </packing>
56
+ </child>
57
+ <child>
58
+ <object class="GtkVBox" id="vbox2">
59
+ <property name="visible">True</property>
60
+ <property name="orientation">vertical</property>
61
+ <child>
62
+ <object class="GtkHBox" id="hbox2">
63
+ <property name="visible">True</property>
64
+ <child>
65
+ <object class="GtkLabel" id="label2">
66
+ <property name="visible">True</property>
67
+ <property name="xalign">0</property>
68
+ <property name="label" translatable="yes">entry port(s)</property>
69
+ </object>
70
+ <packing>
71
+ <property name="expand">False</property>
72
+ <property name="position">0</property>
73
+ </packing>
74
+ </child>
75
+ <child>
76
+ <object class="GtkButton" id="button_entry_del">
77
+ <property name="label" translatable="yes">del</property>
78
+ <property name="visible">True</property>
79
+ <property name="can_focus">True</property>
80
+ <property name="receives_default">True</property>
81
+ </object>
82
+ <packing>
83
+ <property name="expand">False</property>
84
+ <property name="position">1</property>
85
+ </packing>
86
+ </child>
87
+ <child>
88
+ <object class="GtkButton" id="button_entry_add">
89
+ <property name="label" translatable="yes">add</property>
90
+ <property name="visible">True</property>
91
+ <property name="can_focus">True</property>
92
+ <property name="receives_default">True</property>
93
+ </object>
94
+ <packing>
95
+ <property name="expand">False</property>
96
+ <property name="position">2</property>
97
+ </packing>
98
+ </child>
99
+ <child>
100
+ <object class="GtkButton" id="button_entry_change">
101
+ <property name="label" translatable="yes">change</property>
102
+ <property name="visible">True</property>
103
+ <property name="can_focus">True</property>
104
+ <property name="receives_default">True</property>
105
+ </object>
106
+ <packing>
107
+ <property name="expand">False</property>
108
+ <property name="position">3</property>
109
+ </packing>
110
+ </child>
111
+ <child>
112
+ <object class="GtkLabel" id="label9">
113
+ <property name="visible">True</property>
114
+ <property name="label" translatable="yes">signature</property>
115
+ </object>
116
+ <packing>
117
+ <property name="expand">False</property>
118
+ <property name="position">4</property>
119
+ </packing>
120
+ </child>
121
+ <child>
122
+ <object class="GtkComboBox" id="combobox_signature">
123
+ <property name="visible">True</property>
124
+ </object>
125
+ <packing>
126
+ <property name="position">5</property>
127
+ </packing>
128
+ </child>
129
+ <child>
130
+ <object class="GtkLabel" id="label8">
131
+ <property name="visible">True</property>
132
+ <property name="label" translatable="yes">name</property>
133
+ </object>
134
+ <packing>
135
+ <property name="expand">False</property>
136
+ <property name="position">6</property>
137
+ </packing>
138
+ </child>
139
+ <child>
140
+ <object class="GtkEntry" id="entry_entry_name">
141
+ <property name="visible">True</property>
142
+ <property name="can_focus">True</property>
143
+ <property name="invisible_char">&#x25CF;</property>
144
+ </object>
145
+ <packing>
146
+ <property name="position">7</property>
147
+ </packing>
148
+ </child>
149
+ </object>
150
+ <packing>
151
+ <property name="expand">False</property>
152
+ <property name="position">0</property>
153
+ </packing>
154
+ </child>
155
+ <child>
156
+ <object class="GtkTreeView" id="treeview1">
157
+ <property name="visible">True</property>
158
+ <property name="can_focus">True</property>
159
+ <property name="model">liststore_entry</property>
160
+ </object>
161
+ <packing>
162
+ <property name="position">1</property>
163
+ </packing>
164
+ </child>
165
+ </object>
166
+ <packing>
167
+ <property name="position">1</property>
168
+ </packing>
169
+ </child>
170
+ <child>
171
+ <object class="GtkVBox" id="vbox3">
172
+ <property name="visible">True</property>
173
+ <property name="orientation">vertical</property>
174
+ <child>
175
+ <object class="GtkHBox" id="hbox3">
176
+ <property name="visible">True</property>
177
+ <child>
178
+ <object class="GtkLabel" id="label3">
179
+ <property name="visible">True</property>
180
+ <property name="xalign">0</property>
181
+ <property name="label" translatable="yes">call port(s)</property>
182
+ </object>
183
+ <packing>
184
+ <property name="expand">False</property>
185
+ <property name="position">0</property>
186
+ </packing>
187
+ </child>
188
+ <child>
189
+ <object class="GtkButton" id="button_call_del">
190
+ <property name="label" translatable="yes">del</property>
191
+ <property name="visible">True</property>
192
+ <property name="can_focus">True</property>
193
+ <property name="receives_default">True</property>
194
+ </object>
195
+ <packing>
196
+ <property name="expand">False</property>
197
+ <property name="position">1</property>
198
+ </packing>
199
+ </child>
200
+ <child>
201
+ <object class="GtkButton" id="button_call_add">
202
+ <property name="label" translatable="yes">add</property>
203
+ <property name="visible">True</property>
204
+ <property name="can_focus">True</property>
205
+ <property name="receives_default">True</property>
206
+ </object>
207
+ <packing>
208
+ <property name="expand">False</property>
209
+ <property name="position">2</property>
210
+ </packing>
211
+ </child>
212
+ <child>
213
+ <object class="GtkButton" id="button_call_change">
214
+ <property name="label" translatable="yes">change</property>
215
+ <property name="visible">True</property>
216
+ <property name="can_focus">True</property>
217
+ <property name="receives_default">True</property>
218
+ </object>
219
+ <packing>
220
+ <property name="expand">False</property>
221
+ <property name="position">3</property>
222
+ </packing>
223
+ </child>
224
+ <child>
225
+ <object class="GtkLabel" id="label10">
226
+ <property name="visible">True</property>
227
+ <property name="label" translatable="yes">signature</property>
228
+ </object>
229
+ <packing>
230
+ <property name="expand">False</property>
231
+ <property name="position">4</property>
232
+ </packing>
233
+ </child>
234
+ <child>
235
+ <object class="GtkComboBox" id="combobox_signature1">
236
+ <property name="visible">True</property>
237
+ </object>
238
+ <packing>
239
+ <property name="position">5</property>
240
+ </packing>
241
+ </child>
242
+ <child>
243
+ <object class="GtkLabel" id="label11">
244
+ <property name="visible">True</property>
245
+ <property name="label" translatable="yes">name</property>
246
+ </object>
247
+ <packing>
248
+ <property name="expand">False</property>
249
+ <property name="position">6</property>
250
+ </packing>
251
+ </child>
252
+ <child>
253
+ <object class="GtkEntry" id="entry_entry1">
254
+ <property name="visible">True</property>
255
+ <property name="can_focus">True</property>
256
+ <property name="invisible_char">&#x25CF;</property>
257
+ </object>
258
+ <packing>
259
+ <property name="position">7</property>
260
+ </packing>
261
+ </child>
262
+ </object>
263
+ <packing>
264
+ <property name="expand">False</property>
265
+ <property name="position">0</property>
266
+ </packing>
267
+ </child>
268
+ <child>
269
+ <object class="GtkTreeView" id="treeview2">
270
+ <property name="visible">True</property>
271
+ <property name="can_focus">True</property>
272
+ <property name="model">liststore_call</property>
273
+ </object>
274
+ <packing>
275
+ <property name="position">1</property>
276
+ </packing>
277
+ </child>
278
+ </object>
279
+ <packing>
280
+ <property name="position">2</property>
281
+ </packing>
282
+ </child>
283
+ <child>
284
+ <object class="GtkLabel" id="label4">
285
+ <property name="visible">True</property>
286
+ <property name="xalign">0</property>
287
+ <property name="label" translatable="yes">attribute(s)</property>
288
+ </object>
289
+ <packing>
290
+ <property name="expand">False</property>
291
+ <property name="position">3</property>
292
+ </packing>
293
+ </child>
294
+ <child>
295
+ <object class="GtkVBox" id="vbox5">
296
+ <property name="visible">True</property>
297
+ <property name="orientation">vertical</property>
298
+ <child>
299
+ <object class="GtkLabel" id="label5">
300
+ <property name="visible">True</property>
301
+ <property name="xalign">0</property>
302
+ <property name="label" translatable="yes">FACTORY</property>
303
+ </object>
304
+ <packing>
305
+ <property name="expand">False</property>
306
+ <property name="position">0</property>
307
+ </packing>
308
+ </child>
309
+ <child>
310
+ <object class="GtkTreeView" id="treeview4">
311
+ <property name="visible">True</property>
312
+ <property name="can_focus">True</property>
313
+ </object>
314
+ <packing>
315
+ <property name="position">1</property>
316
+ </packing>
317
+ </child>
318
+ </object>
319
+ <packing>
320
+ <property name="position">4</property>
321
+ </packing>
322
+ </child>
323
+ <child>
324
+ <object class="GtkVBox" id="vbox6">
325
+ <property name="visible">True</property>
326
+ <property name="orientation">vertical</property>
327
+ <child>
328
+ <object class="GtkLabel" id="label6">
329
+ <property name="visible">True</property>
330
+ <property name="xalign">0</property>
331
+ <property name="label" translatable="yes">factory</property>
332
+ </object>
333
+ <packing>
334
+ <property name="expand">False</property>
335
+ <property name="position">0</property>
336
+ </packing>
337
+ </child>
338
+ <child>
339
+ <object class="GtkTreeView" id="treeview5">
340
+ <property name="visible">True</property>
341
+ <property name="can_focus">True</property>
342
+ <property name="model">liststore_factory</property>
343
+ </object>
344
+ <packing>
345
+ <property name="position">1</property>
346
+ </packing>
347
+ </child>
348
+ </object>
349
+ <packing>
350
+ <property name="position">5</property>
351
+ </packing>
352
+ </child>
353
+ <child>
354
+ <object class="GtkVBox" id="vbox7">
355
+ <property name="visible">True</property>
356
+ <property name="orientation">vertical</property>
357
+ <child>
358
+ <object class="GtkLabel" id="label7">
359
+ <property name="visible">True</property>
360
+ <property name="xalign">0</property>
361
+ <property name="label" translatable="yes">require</property>
362
+ </object>
363
+ <packing>
364
+ <property name="expand">False</property>
365
+ <property name="position">0</property>
366
+ </packing>
367
+ </child>
368
+ <child>
369
+ <object class="GtkTreeView" id="treeview6">
370
+ <property name="visible">True</property>
371
+ <property name="can_focus">True</property>
372
+ <property name="model">liststore_require</property>
373
+ </object>
374
+ <packing>
375
+ <property name="position">1</property>
376
+ </packing>
377
+ </child>
378
+ </object>
379
+ <packing>
380
+ <property name="position">6</property>
381
+ </packing>
382
+ </child>
383
+ </object>
384
+ <packing>
385
+ <property name="position">1</property>
386
+ </packing>
387
+ </child>
388
+ <child internal-child="action_area">
389
+ <object class="GtkHButtonBox" id="dialog-action_area1">
390
+ <property name="visible">True</property>
391
+ <property name="layout_style">end</property>
392
+ <child>
393
+ <placeholder/>
394
+ </child>
395
+ <child>
396
+ <placeholder/>
397
+ </child>
398
+ </object>
399
+ <packing>
400
+ <property name="expand">False</property>
401
+ <property name="pack_type">end</property>
402
+ <property name="position">0</property>
403
+ </packing>
404
+ </child>
405
+ </object>
406
+ </child>
407
+ </object>
408
+ <object class="GtkListStore" id="liststore_entry"/>
409
+ <object class="GtkListStore" id="liststore_call"/>
410
+ <object class="GtkListStore" id="liststore_attribute"/>
411
+ <object class="GtkListStore" id="liststore_FACTORY"/>
412
+ <object class="GtkListStore" id="liststore_factory"/>
413
+ <object class="GtkListStore" id="liststore_require"/>
414
+ </interface>
@@ -0,0 +1,161 @@
1
+ <?xml version="1.0"?>
2
+ <interface>
3
+ <requires lib="gtk+" version="2.16"/>
4
+ <!-- interface-naming-policy project-wide -->
5
+ <object class="GtkDialog" id="dialog_export">
6
+ <property name="width_request">200</property>
7
+ <property name="border_width">5</property>
8
+ <property name="title" translatable="yes">Export</property>
9
+ <property name="type_hint">normal</property>
10
+ <property name="skip_taskbar_hint">True</property>
11
+ <property name="skip_pager_hint">True</property>
12
+ <property name="has_separator">False</property>
13
+ <child internal-child="vbox">
14
+ <object class="GtkVBox" id="dialog-vbox1">
15
+ <property name="visible">True</property>
16
+ <property name="orientation">vertical</property>
17
+ <property name="spacing">2</property>
18
+ <child>
19
+ <object class="GtkVBox" id="vbox1">
20
+ <property name="visible">True</property>
21
+ <property name="orientation">vertical</property>
22
+ <child>
23
+ <object class="GtkHBox" id="hbox1">
24
+ <property name="visible">True</property>
25
+ <child>
26
+ <object class="GtkLabel" id="label1">
27
+ <property name="visible">True</property>
28
+ <property name="label" translatable="yes">Path:</property>
29
+ </object>
30
+ <packing>
31
+ <property name="expand">False</property>
32
+ <property name="padding">5</property>
33
+ <property name="position">0</property>
34
+ </packing>
35
+ </child>
36
+ <child>
37
+ <object class="GtkEntry" id="entry_path">
38
+ <property name="width_request">200</property>
39
+ <property name="visible">True</property>
40
+ <property name="can_focus">True</property>
41
+ <property name="invisible_char">&#x25CF;</property>
42
+ </object>
43
+ <packing>
44
+ <property name="position">1</property>
45
+ </packing>
46
+ </child>
47
+ </object>
48
+ <packing>
49
+ <property name="expand">False</property>
50
+ <property name="position">0</property>
51
+ </packing>
52
+ </child>
53
+ <child>
54
+ <object class="GtkHBox" id="hbox2">
55
+ <property name="visible">True</property>
56
+ <child>
57
+ <object class="GtkLabel" id="label2">
58
+ <property name="visible">True</property>
59
+ <property name="label" translatable="yes">File Name:</property>
60
+ </object>
61
+ <packing>
62
+ <property name="expand">False</property>
63
+ <property name="padding">5</property>
64
+ <property name="position">0</property>
65
+ </packing>
66
+ </child>
67
+ <child>
68
+ <object class="GtkEntry" id="entry_file_name">
69
+ <property name="visible">True</property>
70
+ <property name="can_focus">True</property>
71
+ <property name="invisible_char">&#x25CF;</property>
72
+ </object>
73
+ <packing>
74
+ <property name="position">1</property>
75
+ </packing>
76
+ </child>
77
+ </object>
78
+ <packing>
79
+ <property name="expand">False</property>
80
+ <property name="position">1</property>
81
+ </packing>
82
+ </child>
83
+ <child>
84
+ <object class="GtkHBox" id="hbox3">
85
+ <property name="visible">True</property>
86
+ <child>
87
+ <object class="GtkLabel" id="label3">
88
+ <property name="visible">True</property>
89
+ <property name="label" translatable="yes">File Type</property>
90
+ </object>
91
+ <packing>
92
+ <property name="expand">False</property>
93
+ <property name="padding">5</property>
94
+ <property name="position">0</property>
95
+ </packing>
96
+ </child>
97
+ <child>
98
+ <object class="GtkComboBox" id="combobox_file_type">
99
+ <property name="visible">True</property>
100
+ </object>
101
+ <packing>
102
+ <property name="position">1</property>
103
+ </packing>
104
+ </child>
105
+ </object>
106
+ <packing>
107
+ <property name="expand">False</property>
108
+ <property name="position">2</property>
109
+ </packing>
110
+ </child>
111
+ </object>
112
+ <packing>
113
+ <property name="expand">False</property>
114
+ <property name="position">1</property>
115
+ </packing>
116
+ </child>
117
+ <child internal-child="action_area">
118
+ <object class="GtkHButtonBox" id="dialog-action_area1">
119
+ <property name="visible">True</property>
120
+ <property name="layout_style">end</property>
121
+ <child>
122
+ <object class="GtkButton" id="button_ok">
123
+ <property name="label" translatable="yes">OK</property>
124
+ <property name="visible">True</property>
125
+ <property name="can_focus">True</property>
126
+ <property name="receives_default">True</property>
127
+ </object>
128
+ <packing>
129
+ <property name="expand">False</property>
130
+ <property name="fill">False</property>
131
+ <property name="position">0</property>
132
+ </packing>
133
+ </child>
134
+ <child>
135
+ <object class="GtkButton" id="button_cancel">
136
+ <property name="label" translatable="yes">CANCEL</property>
137
+ <property name="visible">True</property>
138
+ <property name="can_focus">True</property>
139
+ <property name="receives_default">True</property>
140
+ </object>
141
+ <packing>
142
+ <property name="expand">False</property>
143
+ <property name="fill">False</property>
144
+ <property name="position">1</property>
145
+ </packing>
146
+ </child>
147
+ </object>
148
+ <packing>
149
+ <property name="expand">False</property>
150
+ <property name="pack_type">end</property>
151
+ <property name="position">0</property>
152
+ </packing>
153
+ </child>
154
+ </object>
155
+ </child>
156
+ <action-widgets>
157
+ <action-widget response="0">button_ok</action-widget>
158
+ <action-widget response="0">button_cancel</action-widget>
159
+ </action-widgets>
160
+ </object>
161
+ </interface>