arcadia 0.8.0 → 0.8.1
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.
- data/README +10 -15
- data/conf/arcadia.conf +19 -0
- data/ext/ae-dir-projects/ae-dir-projects.rb +3 -1
- data/ext/ae-editor/ae-editor.conf +2 -1
- data/ext/ae-editor/ae-editor.rb +142 -63
- data/ext/ae-editor/langs/conf.lang +5 -13
- data/ext/ae-output/ae-output.rb +1 -1
- data/ext/ae-rad/lib/tk/al-tk.rb +1 -1
- data/ext/ae-search-in-files/ae-search-in-files.rb +7 -5
- data/lib/a-commons.rb +27 -15
- data/lib/a-contracts.rb +6 -0
- data/lib/a-core.rb +124 -20
- data/lib/a-tkcommons.rb +28 -0
- metadata +162 -162
data/lib/a-tkcommons.rb
CHANGED
@@ -485,6 +485,20 @@ class AGTkVSplittedFrames < AGTkSplittedFrames
|
|
485
485
|
@right_frame_obj.amove(_x + _w,0)
|
486
486
|
end
|
487
487
|
|
488
|
+
def move_splitter(_gapx=0,_gapy=0)
|
489
|
+
@splitter_frame_obj.amove(_gapx,_gapy)
|
490
|
+
do_resize
|
491
|
+
end
|
492
|
+
|
493
|
+
def resize_left(_new_width)
|
494
|
+
@left_frame_obj.width = _new_width
|
495
|
+
@left_frame_obj.go(_new_width,0)
|
496
|
+
@left_frame_obj.amove(0,0)
|
497
|
+
@splitter_frame_obj.amove(_new_width,0)
|
498
|
+
@right_frame_obj.width = - _new_width - @slen
|
499
|
+
@right_frame_obj.amove(_new_width + @slen,0)
|
500
|
+
end
|
501
|
+
|
488
502
|
def hide_left
|
489
503
|
if (@state=='left')
|
490
504
|
_w = @last
|
@@ -810,6 +824,9 @@ class TkBaseTitledFrame < TkFrame
|
|
810
824
|
@bmaxmin = add_button('[ ]',proc{resize}, W_MAX_GIF)
|
811
825
|
end
|
812
826
|
|
827
|
+
def visible?
|
828
|
+
TkWinfo.mapped?(self)
|
829
|
+
end
|
813
830
|
end
|
814
831
|
|
815
832
|
|
@@ -1311,6 +1328,17 @@ class TkScrollText < TkText
|
|
1311
1328
|
|
1312
1329
|
end
|
1313
1330
|
|
1331
|
+
class TkArcadiaText < TkScrollText
|
1332
|
+
def initialize(parent=nil, keys={})
|
1333
|
+
super(parent, keys)
|
1334
|
+
self.bind_append("<Copy>"){Arcadia.process_event(CopyTextEvent.new(self));break}
|
1335
|
+
self.bind_append("<Cut>"){Arcadia.process_event(CutTextEvent.new(self));break}
|
1336
|
+
self.bind_append("<Paste>"){Arcadia.process_event(PasteTextEvent.new(self));break}
|
1337
|
+
self.bind_append("<Undo>"){Arcadia.process_event(UndoTextEvent.new(self));break}
|
1338
|
+
self.bind_append("<Redo>"){Arcadia.process_event(RedoTextEvent.new(self));break}
|
1339
|
+
end
|
1340
|
+
end
|
1341
|
+
|
1314
1342
|
class TkScrollWidget
|
1315
1343
|
def initialize(widget)
|
1316
1344
|
@widget = widget
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: arcadia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Antonio Galeone
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
12
|
+
date: 2010-04-10 00:00:00 +02:00
|
13
13
|
default_executable: arcadia
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -32,196 +32,196 @@ extensions: []
|
|
32
32
|
extra_rdoc_files:
|
33
33
|
- README
|
34
34
|
files:
|
35
|
-
- lib/a-tkcommons.rb
|
36
35
|
- lib/a-contracts.rb
|
37
36
|
- lib/a-commons.rb
|
38
37
|
- lib/a-core.rb
|
39
|
-
-
|
38
|
+
- lib/a-tkcommons.rb
|
39
|
+
- ext/ae-output/ae-output.conf
|
40
|
+
- ext/ae-output/ae-output.rb
|
41
|
+
- ext/ae-search-in-files/ae-search-in-files.conf
|
42
|
+
- ext/ae-search-in-files/ae-search-in-files.rb
|
43
|
+
- ext/ae-search-in-files/ext
|
44
|
+
- ext/ae-search-in-files/ext/ack-in-files
|
45
|
+
- ext/ae-search-in-files/ext/ack-in-files/ack-in-files.rb
|
46
|
+
- ext/ae-search-in-files/ext/ack-in-files/ack-in-files.conf
|
47
|
+
- ext/ae-file-history/ae-file-history.rb
|
48
|
+
- ext/ae-file-history/ae-file-history.conf
|
49
|
+
- ext/ae-rad/ae-rad-libs.rb
|
50
|
+
- ext/ae-rad/ae-rad.rb
|
51
|
+
- ext/ae-rad/ae-rad.conf
|
52
|
+
- ext/ae-rad/ae-rad-inspector.rb
|
53
|
+
- ext/ae-rad/lib
|
54
|
+
- ext/ae-rad/lib/tkext
|
55
|
+
- ext/ae-rad/lib/tkext/al-iwidgets.rb
|
56
|
+
- ext/ae-rad/lib/tkext/al-tktable.rb
|
57
|
+
- ext/ae-rad/lib/tkext/al-tile.rb
|
58
|
+
- ext/ae-rad/lib/tkext/al-bwidget.rb
|
59
|
+
- ext/ae-rad/lib/tk
|
60
|
+
- ext/ae-rad/lib/tk/al-tk.rb
|
61
|
+
- ext/ae-rad/lib/tk/al-tkarcadia.rb
|
62
|
+
- ext/ae-rad/lib/tk/al-tkcustom.rb
|
63
|
+
- ext/ae-rad/lib/tk/al-tk.res.rb
|
64
|
+
- ext/ae-rad/ae-rad-palette.rb
|
40
65
|
- ext/ae-breakpoints/ae-breakpoints.rb
|
41
|
-
- ext/ae-
|
66
|
+
- ext/ae-breakpoints/ae-breakpoints.conf
|
67
|
+
- ext/ae-ruby-debug/ae-ruby-debug.conf
|
68
|
+
- ext/ae-ruby-debug/ae-ruby-debug.rb
|
42
69
|
- ext/ae-dir-projects/ae-dir-projects.conf
|
70
|
+
- ext/ae-dir-projects/ae-dir-projects.rb
|
71
|
+
- ext/test-shutdown-after-startup/test-shutdown-after-startup.conf
|
72
|
+
- ext/test-shutdown-after-startup/test-shutdown-after-startup.rb
|
73
|
+
- ext/ae-shell/ae-shell.rb
|
74
|
+
- ext/ae-shell/sh.rb
|
75
|
+
- ext/ae-shell/ae-shell.conf
|
43
76
|
- ext/ae-editor/langs
|
44
77
|
- ext/ae-editor/langs/tokens.lang.bind
|
45
|
-
- ext/ae-editor/langs/
|
78
|
+
- ext/ae-editor/langs/lang.lang.bind
|
79
|
+
- ext/ae-editor/langs/rbw.lang.bind
|
80
|
+
- ext/ae-editor/langs/rb.lang
|
46
81
|
- ext/ae-editor/langs/xml.lang
|
47
|
-
- ext/ae-editor/langs/java.lang
|
48
|
-
- ext/ae-editor/langs/conf.lang
|
49
82
|
- ext/ae-editor/langs/erb.lang.bind
|
50
|
-
- ext/ae-editor/langs/
|
51
|
-
- ext/ae-editor/langs/
|
52
|
-
- ext/ae-editor/langs/lang.lang.bind
|
83
|
+
- ext/ae-editor/langs/java.lang
|
84
|
+
- ext/ae-editor/langs/rhtml.lang
|
53
85
|
- ext/ae-editor/langs/coderay.tokens
|
86
|
+
- ext/ae-editor/langs/conf.lang
|
54
87
|
- ext/ae-editor/ae-editor.rb
|
55
88
|
- ext/ae-editor/ae-editor.conf
|
56
|
-
- ext/ae-rad/lib
|
57
|
-
- ext/ae-rad/lib/tk
|
58
|
-
- ext/ae-rad/lib/tk/al-tkcustom.rb
|
59
|
-
- ext/ae-rad/lib/tk/al-tk.rb
|
60
|
-
- ext/ae-rad/lib/tk/al-tk.res.rb
|
61
|
-
- ext/ae-rad/lib/tk/al-tkarcadia.rb
|
62
|
-
- ext/ae-rad/lib/tkext
|
63
|
-
- ext/ae-rad/lib/tkext/al-tile.rb
|
64
|
-
- ext/ae-rad/lib/tkext/al-iwidgets.rb
|
65
|
-
- ext/ae-rad/lib/tkext/al-bwidget.rb
|
66
|
-
- ext/ae-rad/lib/tkext/al-tktable.rb
|
67
|
-
- ext/ae-rad/ae-rad-inspector.rb
|
68
|
-
- ext/ae-rad/ae-rad-libs.rb
|
69
|
-
- ext/ae-rad/ae-rad-palette.rb
|
70
|
-
- ext/ae-rad/ae-rad.conf
|
71
|
-
- ext/ae-rad/ae-rad.rb
|
72
|
-
- ext/ae-shell/sh.rb
|
73
|
-
- ext/ae-shell/ae-shell.conf
|
74
|
-
- ext/ae-shell/ae-shell.rb
|
75
|
-
- ext/ae-output/ae-output.rb
|
76
|
-
- ext/ae-output/ae-output.conf
|
77
|
-
- ext/ae-file-history/ae-file-history.rb
|
78
|
-
- ext/ae-file-history/ae-file-history.conf
|
79
|
-
- ext/test-shutdown-after-startup/test-shutdown-after-startup.rb
|
80
|
-
- ext/test-shutdown-after-startup/test-shutdown-after-startup.conf
|
81
|
-
- ext/ae-ruby-debug/ae-ruby-debug.conf
|
82
|
-
- ext/ae-ruby-debug/ae-ruby-debug.rb
|
83
|
-
- ext/ae-search-in-files/ae-search-in-files.conf
|
84
|
-
- ext/ae-search-in-files/ae-search-in-files.rb
|
85
|
-
- ext/ae-search-in-files/ext
|
86
|
-
- ext/ae-search-in-files/ext/ack-in-files
|
87
|
-
- ext/ae-search-in-files/ext/ack-in-files/ack-in-files.conf
|
88
|
-
- ext/ae-search-in-files/ext/ack-in-files/ack-in-files.rb
|
89
89
|
- tcl/BWidget-1.9.0
|
90
|
-
- tcl/BWidget-1.9.0/scrollw.tcl
|
91
|
-
- tcl/BWidget-1.9.0/dropsite.tcl
|
92
|
-
- tcl/BWidget-1.9.0/init.tcl
|
93
|
-
- tcl/BWidget-1.9.0/ChangeLog
|
94
|
-
- tcl/BWidget-1.9.0/labelentry.tcl
|
95
|
-
- tcl/BWidget-1.9.0/CHANGES.txt
|
96
|
-
- tcl/BWidget-1.9.0/README.txt
|
97
|
-
- tcl/BWidget-1.9.0/progressdlg.tcl
|
98
|
-
- tcl/BWidget-1.9.0/panedw.tcl
|
99
|
-
- tcl/BWidget-1.9.0/statusbar.tcl
|
100
|
-
- tcl/BWidget-1.9.0/spinbox.tcl
|
101
|
-
- tcl/BWidget-1.9.0/progressbar.tcl
|
102
|
-
- tcl/BWidget-1.9.0/button.tcl
|
103
|
-
- tcl/BWidget-1.9.0/messagedlg.tcl
|
104
|
-
- tcl/BWidget-1.9.0/combobox.tcl
|
105
|
-
- tcl/BWidget-1.9.0/mainframe.tcl
|
106
|
-
- tcl/BWidget-1.9.0/passwddlg.tcl
|
107
|
-
- tcl/BWidget-1.9.0/titleframe.tcl
|
108
|
-
- tcl/BWidget-1.9.0/color.tcl
|
109
|
-
- tcl/BWidget-1.9.0/font.tcl
|
110
|
-
- tcl/BWidget-1.9.0/dynhelp.tcl
|
111
|
-
- tcl/BWidget-1.9.0/pagesmgr.tcl
|
112
|
-
- tcl/BWidget-1.9.0/dialog.tcl
|
113
|
-
- tcl/BWidget-1.9.0/utils.tcl
|
114
|
-
- tcl/BWidget-1.9.0/LICENSE.txt
|
115
|
-
- tcl/BWidget-1.9.0/dragsite.tcl
|
116
|
-
- tcl/BWidget-1.9.0/notebook.tcl
|
117
|
-
- tcl/BWidget-1.9.0/arrow.tcl
|
118
|
-
- tcl/BWidget-1.9.0/entry.tcl
|
119
|
-
- tcl/BWidget-1.9.0/lang
|
120
|
-
- tcl/BWidget-1.9.0/lang/da.rc
|
121
|
-
- tcl/BWidget-1.9.0/lang/es.rc
|
122
|
-
- tcl/BWidget-1.9.0/lang/fr.rc
|
123
|
-
- tcl/BWidget-1.9.0/lang/en.rc
|
124
|
-
- tcl/BWidget-1.9.0/lang/nl.rc
|
125
|
-
- tcl/BWidget-1.9.0/lang/no.rc
|
126
|
-
- tcl/BWidget-1.9.0/lang/hu.rc
|
127
|
-
- tcl/BWidget-1.9.0/lang/de.rc
|
128
|
-
- tcl/BWidget-1.9.0/tests
|
129
|
-
- tcl/BWidget-1.9.0/tests/entry.test
|
130
|
-
- tcl/BWidget-1.9.0/listbox.tcl
|
131
|
-
- tcl/BWidget-1.9.0/wizard.tcl
|
132
|
-
- tcl/BWidget-1.9.0/tree.tcl
|
133
|
-
- tcl/BWidget-1.9.0/widget.tcl
|
134
|
-
- tcl/BWidget-1.9.0/labelframe.tcl
|
135
|
-
- tcl/BWidget-1.9.0/demo
|
136
|
-
- tcl/BWidget-1.9.0/demo/bwidget.xbm
|
137
|
-
- tcl/BWidget-1.9.0/demo/basic.tcl
|
138
|
-
- tcl/BWidget-1.9.0/demo/dnd.tcl
|
139
|
-
- tcl/BWidget-1.9.0/demo/x1.xbm
|
140
|
-
- tcl/BWidget-1.9.0/demo/tree.tcl
|
141
|
-
- tcl/BWidget-1.9.0/demo/select.tcl
|
142
|
-
- tcl/BWidget-1.9.0/demo/tmpldlg.tcl
|
143
|
-
- tcl/BWidget-1.9.0/demo/manager.tcl
|
144
|
-
- tcl/BWidget-1.9.0/demo/demo.tcl
|
145
|
-
- tcl/BWidget-1.9.0/images
|
146
|
-
- tcl/BWidget-1.9.0/images/question.gif
|
147
|
-
- tcl/BWidget-1.9.0/images/dragfile.gif
|
148
|
-
- tcl/BWidget-1.9.0/images/print.gif
|
149
|
-
- tcl/BWidget-1.9.0/images/info.gif
|
150
|
-
- tcl/BWidget-1.9.0/images/opcopy.xbm
|
151
|
-
- tcl/BWidget-1.9.0/images/bold.gif
|
152
|
-
- tcl/BWidget-1.9.0/images/plus.xbm
|
153
|
-
- tcl/BWidget-1.9.0/images/error.gif
|
154
|
-
- tcl/BWidget-1.9.0/images/minus.xbm
|
155
|
-
- tcl/BWidget-1.9.0/images/redo.gif
|
156
|
-
- tcl/BWidget-1.9.0/images/file.gif
|
157
|
-
- tcl/BWidget-1.9.0/images/overstrike.gif
|
158
|
-
- tcl/BWidget-1.9.0/images/save.gif
|
159
|
-
- tcl/BWidget-1.9.0/images/palette.gif
|
160
|
-
- tcl/BWidget-1.9.0/images/new.gif
|
161
|
-
- tcl/BWidget-1.9.0/images/target.xbm
|
162
|
-
- tcl/BWidget-1.9.0/images/warning.gif
|
163
|
-
- tcl/BWidget-1.9.0/images/openfold.gif
|
164
|
-
- tcl/BWidget-1.9.0/images/opmove.xbm
|
165
|
-
- tcl/BWidget-1.9.0/images/dragicon.gif
|
166
|
-
- tcl/BWidget-1.9.0/images/copy.gif
|
167
|
-
- tcl/BWidget-1.9.0/images/underline.gif
|
168
|
-
- tcl/BWidget-1.9.0/images/passwd.gif
|
169
|
-
- tcl/BWidget-1.9.0/images/cut.gif
|
170
|
-
- tcl/BWidget-1.9.0/images/open.gif
|
171
|
-
- tcl/BWidget-1.9.0/images/oplink.xbm
|
172
|
-
- tcl/BWidget-1.9.0/images/hourglass.gif
|
173
|
-
- tcl/BWidget-1.9.0/images/italic.gif
|
174
|
-
- tcl/BWidget-1.9.0/images/folder.gif
|
175
|
-
- tcl/BWidget-1.9.0/images/paste.gif
|
176
|
-
- tcl/BWidget-1.9.0/images/undo.gif
|
177
|
-
- tcl/BWidget-1.9.0/separator.tcl
|
178
90
|
- tcl/BWidget-1.9.0/BWman
|
91
|
+
- tcl/BWidget-1.9.0/BWman/ButtonBox.html
|
92
|
+
- tcl/BWidget-1.9.0/BWman/SelectFont.html
|
179
93
|
- tcl/BWidget-1.9.0/BWman/Label.html
|
180
|
-
- tcl/BWidget-1.9.0/BWman/
|
181
|
-
- tcl/BWidget-1.9.0/BWman/DragSite.html
|
182
|
-
- tcl/BWidget-1.9.0/BWman/SpinBox.html
|
183
|
-
- tcl/BWidget-1.9.0/BWman/PasswdDlg.html
|
184
|
-
- tcl/BWidget-1.9.0/BWman/Dialog.html
|
185
|
-
- tcl/BWidget-1.9.0/BWman/DynamicHelp.html
|
186
|
-
- tcl/BWidget-1.9.0/BWman/PagesManager.html
|
187
|
-
- tcl/BWidget-1.9.0/BWman/options.htm
|
188
|
-
- tcl/BWidget-1.9.0/BWman/Entry.html
|
189
|
-
- tcl/BWidget-1.9.0/BWman/index.html
|
94
|
+
- tcl/BWidget-1.9.0/BWman/ScrolledWindow.html
|
190
95
|
- tcl/BWidget-1.9.0/BWman/MessageDlg.html
|
191
|
-
- tcl/BWidget-1.9.0/BWman/
|
96
|
+
- tcl/BWidget-1.9.0/BWman/ArrowButton.html
|
97
|
+
- tcl/BWidget-1.9.0/BWman/ListBox.html
|
192
98
|
- tcl/BWidget-1.9.0/BWman/contents.html
|
99
|
+
- tcl/BWidget-1.9.0/BWman/DynamicHelp.html
|
100
|
+
- tcl/BWidget-1.9.0/BWman/MainFrame.html
|
101
|
+
- tcl/BWidget-1.9.0/BWman/PasswdDlg.html
|
193
102
|
- tcl/BWidget-1.9.0/BWman/LabelFrame.html
|
194
|
-
- tcl/BWidget-1.9.0/BWman/
|
195
|
-
- tcl/BWidget-1.9.0/BWman/BWidget.html
|
196
|
-
- tcl/BWidget-1.9.0/BWman/ListBox.html
|
197
|
-
- tcl/BWidget-1.9.0/BWman/ScrollableFrame.html
|
103
|
+
- tcl/BWidget-1.9.0/BWman/navtree.html
|
198
104
|
- tcl/BWidget-1.9.0/BWman/PanelFrame.html
|
199
|
-
- tcl/BWidget-1.9.0/BWman/
|
105
|
+
- tcl/BWidget-1.9.0/BWman/Entry.html
|
106
|
+
- tcl/BWidget-1.9.0/BWman/Dialog.html
|
200
107
|
- tcl/BWidget-1.9.0/BWman/Tree.html
|
108
|
+
- tcl/BWidget-1.9.0/BWman/BWidget.html
|
109
|
+
- tcl/BWidget-1.9.0/BWman/ProgressDlg.html
|
110
|
+
- tcl/BWidget-1.9.0/BWman/PanedWindow.html
|
201
111
|
- tcl/BWidget-1.9.0/BWman/ProgressBar.html
|
202
|
-
- tcl/BWidget-1.9.0/BWman/
|
203
|
-
- tcl/BWidget-1.9.0/BWman/MainFrame.html
|
204
|
-
- tcl/BWidget-1.9.0/BWman/ScrolledWindow.html
|
205
|
-
- tcl/BWidget-1.9.0/BWman/Widget.html
|
112
|
+
- tcl/BWidget-1.9.0/BWman/ScrollableFrame.html
|
206
113
|
- tcl/BWidget-1.9.0/BWman/Button.html
|
114
|
+
- tcl/BWidget-1.9.0/BWman/TitleFrame.html
|
115
|
+
- tcl/BWidget-1.9.0/BWman/SpinBox.html
|
116
|
+
- tcl/BWidget-1.9.0/BWman/ScrollView.html
|
117
|
+
- tcl/BWidget-1.9.0/BWman/DragSite.html
|
118
|
+
- tcl/BWidget-1.9.0/BWman/Widget.html
|
119
|
+
- tcl/BWidget-1.9.0/BWman/PagesManager.html
|
207
120
|
- tcl/BWidget-1.9.0/BWman/DropSite.html
|
208
|
-
- tcl/BWidget-1.9.0/BWman/ProgressDlg.html
|
209
|
-
- tcl/BWidget-1.9.0/BWman/NoteBook.html
|
210
121
|
- tcl/BWidget-1.9.0/BWman/Separator.html
|
211
|
-
- tcl/BWidget-1.9.0/BWman/
|
122
|
+
- tcl/BWidget-1.9.0/BWman/NoteBook.html
|
123
|
+
- tcl/BWidget-1.9.0/BWman/ComboBox.html
|
124
|
+
- tcl/BWidget-1.9.0/BWman/SelectColor.html
|
125
|
+
- tcl/BWidget-1.9.0/BWman/options.htm
|
126
|
+
- tcl/BWidget-1.9.0/BWman/index.html
|
212
127
|
- tcl/BWidget-1.9.0/BWman/LabelEntry.html
|
213
|
-
- tcl/BWidget-1.9.0/BWman/ButtonBox.html
|
214
|
-
- tcl/BWidget-1.9.0/BWman/PanedWindow.html
|
215
|
-
- tcl/BWidget-1.9.0/BWman/TitleFrame.html
|
216
128
|
- tcl/BWidget-1.9.0/BWman/StatusBar.html
|
217
|
-
- tcl/BWidget-1.9.0/
|
218
|
-
- tcl/BWidget-1.9.0/
|
129
|
+
- tcl/BWidget-1.9.0/CHANGES.txt
|
130
|
+
- tcl/BWidget-1.9.0/wizard.tcl
|
131
|
+
- tcl/BWidget-1.9.0/labelentry.tcl
|
132
|
+
- tcl/BWidget-1.9.0/button.tcl
|
133
|
+
- tcl/BWidget-1.9.0/listbox.tcl
|
134
|
+
- tcl/BWidget-1.9.0/images
|
135
|
+
- tcl/BWidget-1.9.0/images/overstrike.gif
|
136
|
+
- tcl/BWidget-1.9.0/images/question.gif
|
137
|
+
- tcl/BWidget-1.9.0/images/plus.xbm
|
138
|
+
- tcl/BWidget-1.9.0/images/error.gif
|
139
|
+
- tcl/BWidget-1.9.0/images/opmove.xbm
|
140
|
+
- tcl/BWidget-1.9.0/images/italic.gif
|
141
|
+
- tcl/BWidget-1.9.0/images/redo.gif
|
142
|
+
- tcl/BWidget-1.9.0/images/passwd.gif
|
143
|
+
- tcl/BWidget-1.9.0/images/cut.gif
|
144
|
+
- tcl/BWidget-1.9.0/images/undo.gif
|
145
|
+
- tcl/BWidget-1.9.0/images/minus.xbm
|
146
|
+
- tcl/BWidget-1.9.0/images/target.xbm
|
147
|
+
- tcl/BWidget-1.9.0/images/print.gif
|
148
|
+
- tcl/BWidget-1.9.0/images/palette.gif
|
149
|
+
- tcl/BWidget-1.9.0/images/oplink.xbm
|
150
|
+
- tcl/BWidget-1.9.0/images/new.gif
|
151
|
+
- tcl/BWidget-1.9.0/images/bold.gif
|
152
|
+
- tcl/BWidget-1.9.0/images/file.gif
|
153
|
+
- tcl/BWidget-1.9.0/images/opcopy.xbm
|
154
|
+
- tcl/BWidget-1.9.0/images/paste.gif
|
155
|
+
- tcl/BWidget-1.9.0/images/save.gif
|
156
|
+
- tcl/BWidget-1.9.0/images/dragicon.gif
|
157
|
+
- tcl/BWidget-1.9.0/images/hourglass.gif
|
158
|
+
- tcl/BWidget-1.9.0/images/openfold.gif
|
159
|
+
- tcl/BWidget-1.9.0/images/warning.gif
|
160
|
+
- tcl/BWidget-1.9.0/images/folder.gif
|
161
|
+
- tcl/BWidget-1.9.0/images/underline.gif
|
162
|
+
- tcl/BWidget-1.9.0/images/open.gif
|
163
|
+
- tcl/BWidget-1.9.0/images/dragfile.gif
|
164
|
+
- tcl/BWidget-1.9.0/images/info.gif
|
165
|
+
- tcl/BWidget-1.9.0/images/copy.gif
|
166
|
+
- tcl/BWidget-1.9.0/ChangeLog
|
167
|
+
- tcl/BWidget-1.9.0/combobox.tcl
|
168
|
+
- tcl/BWidget-1.9.0/dragsite.tcl
|
169
|
+
- tcl/BWidget-1.9.0/widget.tcl
|
170
|
+
- tcl/BWidget-1.9.0/README.txt
|
171
|
+
- tcl/BWidget-1.9.0/notebook.tcl
|
172
|
+
- tcl/BWidget-1.9.0/scrollview.tcl
|
173
|
+
- tcl/BWidget-1.9.0/entry.tcl
|
174
|
+
- tcl/BWidget-1.9.0/mainframe.tcl
|
175
|
+
- tcl/BWidget-1.9.0/labelframe.tcl
|
219
176
|
- tcl/BWidget-1.9.0/buttonbox.tcl
|
177
|
+
- tcl/BWidget-1.9.0/messagedlg.tcl
|
178
|
+
- tcl/BWidget-1.9.0/label.tcl
|
179
|
+
- tcl/BWidget-1.9.0/panedw.tcl
|
180
|
+
- tcl/BWidget-1.9.0/utils.tcl
|
181
|
+
- tcl/BWidget-1.9.0/arrow.tcl
|
220
182
|
- tcl/BWidget-1.9.0/bitmap.tcl
|
183
|
+
- tcl/BWidget-1.9.0/pagesmgr.tcl
|
184
|
+
- tcl/BWidget-1.9.0/pkgIndex.tcl
|
185
|
+
- tcl/BWidget-1.9.0/tests
|
186
|
+
- tcl/BWidget-1.9.0/tests/entry.test
|
187
|
+
- tcl/BWidget-1.9.0/progressdlg.tcl
|
188
|
+
- tcl/BWidget-1.9.0/spinbox.tcl
|
189
|
+
- tcl/BWidget-1.9.0/progressbar.tcl
|
190
|
+
- tcl/BWidget-1.9.0/titleframe.tcl
|
221
191
|
- tcl/BWidget-1.9.0/panelframe.tcl
|
192
|
+
- tcl/BWidget-1.9.0/init.tcl
|
193
|
+
- tcl/BWidget-1.9.0/dialog.tcl
|
194
|
+
- tcl/BWidget-1.9.0/passwddlg.tcl
|
195
|
+
- tcl/BWidget-1.9.0/font.tcl
|
196
|
+
- tcl/BWidget-1.9.0/dropsite.tcl
|
222
197
|
- tcl/BWidget-1.9.0/scrollframe.tcl
|
223
|
-
- tcl/BWidget-1.9.0/
|
224
|
-
- tcl/BWidget-1.9.0/
|
198
|
+
- tcl/BWidget-1.9.0/tree.tcl
|
199
|
+
- tcl/BWidget-1.9.0/xpm2image.tcl
|
200
|
+
- tcl/BWidget-1.9.0/dynhelp.tcl
|
201
|
+
- tcl/BWidget-1.9.0/statusbar.tcl
|
202
|
+
- tcl/BWidget-1.9.0/separator.tcl
|
203
|
+
- tcl/BWidget-1.9.0/scrollw.tcl
|
204
|
+
- tcl/BWidget-1.9.0/LICENSE.txt
|
205
|
+
- tcl/BWidget-1.9.0/demo
|
206
|
+
- tcl/BWidget-1.9.0/demo/x1.xbm
|
207
|
+
- tcl/BWidget-1.9.0/demo/bwidget.xbm
|
208
|
+
- tcl/BWidget-1.9.0/demo/basic.tcl
|
209
|
+
- tcl/BWidget-1.9.0/demo/manager.tcl
|
210
|
+
- tcl/BWidget-1.9.0/demo/tree.tcl
|
211
|
+
- tcl/BWidget-1.9.0/demo/tmpldlg.tcl
|
212
|
+
- tcl/BWidget-1.9.0/demo/dnd.tcl
|
213
|
+
- tcl/BWidget-1.9.0/demo/demo.tcl
|
214
|
+
- tcl/BWidget-1.9.0/demo/select.tcl
|
215
|
+
- tcl/BWidget-1.9.0/color.tcl
|
216
|
+
- tcl/BWidget-1.9.0/lang
|
217
|
+
- tcl/BWidget-1.9.0/lang/nl.rc
|
218
|
+
- tcl/BWidget-1.9.0/lang/hu.rc
|
219
|
+
- tcl/BWidget-1.9.0/lang/da.rc
|
220
|
+
- tcl/BWidget-1.9.0/lang/fr.rc
|
221
|
+
- tcl/BWidget-1.9.0/lang/de.rc
|
222
|
+
- tcl/BWidget-1.9.0/lang/no.rc
|
223
|
+
- tcl/BWidget-1.9.0/lang/en.rc
|
224
|
+
- tcl/BWidget-1.9.0/lang/es.rc
|
225
225
|
- README
|
226
226
|
- bin/arcadia
|
227
227
|
- bin/arcadia.bat
|