ffi-tk 2010.08.23 → 2018.02.20
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.
- checksums.yaml +7 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +7 -0
- data/.rubocop_todo.yml +371 -0
- data/AUTHORS +4 -2
- data/CHANGELOG +302 -262
- data/Gemfile +10 -0
- data/Gemfile.lock +45 -0
- data/MANIFEST +6 -6
- data/README.md +1 -1
- data/Rakefile +12 -11
- data/bin/rwish +6 -5
- data/example/choose_color.rb +5 -4
- data/example/choose_directory.rb +5 -4
- data/example/dialog.rb +9 -8
- data/example/hello.rb +2 -1
- data/example/message_box.rb +8 -5
- data/example/option_menu.rb +4 -3
- data/example/popup.rb +4 -3
- data/example/set_palette.rb +5 -4
- data/example/text.rb +30 -30
- data/example/tile/kroc_demo_small.rb +51 -55
- data/example/tile/kroc_rb_demo.rb +74 -83
- data/example/tile/notebook.rb +6 -9
- data/example/tile/theme_hello.rb +6 -8
- data/example/tile/themes.rb +4 -2
- data/example/tile/treeview.rb +16 -14
- data/example/tkgo.rb +120 -88
- data/example/various.rb +8 -7
- data/example/wait.rb +3 -2
- data/ffi-tk.gemspec +21 -20
- data/gemset.nix +134 -0
- data/lib/ffi-tk.rb +10 -11
- data/lib/ffi-tk/command.rb +3 -2
- data/lib/ffi-tk/command/after.rb +8 -7
- data/lib/ffi-tk/command/bell.rb +2 -1
- data/lib/ffi-tk/command/bind.rb +1 -0
- data/lib/ffi-tk/command/bindtags.rb +1 -0
- data/lib/ffi-tk/command/cget.rb +31 -24
- data/lib/ffi-tk/command/choose_color.rb +2 -1
- data/lib/ffi-tk/command/choose_directory.rb +2 -1
- data/lib/ffi-tk/command/clipboard.rb +6 -5
- data/lib/ffi-tk/command/configure.rb +23 -21
- data/lib/ffi-tk/command/destroy.rb +2 -1
- data/lib/ffi-tk/command/dialog.rb +4 -3
- data/lib/ffi-tk/command/event.rb +1 -0
- data/lib/ffi-tk/command/focus.rb +2 -1
- data/lib/ffi-tk/command/font.rb +12 -9
- data/lib/ffi-tk/command/get_open_file.rb +1 -0
- data/lib/ffi-tk/command/get_save_file.rb +1 -0
- data/lib/ffi-tk/command/grab.rb +2 -1
- data/lib/ffi-tk/command/grid.rb +7 -6
- data/lib/ffi-tk/command/image.rb +5 -4
- data/lib/ffi-tk/command/lower.rb +1 -0
- data/lib/ffi-tk/command/message_box.rb +2 -1
- data/lib/ffi-tk/command/option_menu.rb +3 -2
- data/lib/ffi-tk/command/pack.rb +5 -4
- data/lib/ffi-tk/command/place.rb +5 -4
- data/lib/ffi-tk/command/popup.rb +2 -1
- data/lib/ffi-tk/command/raise.rb +1 -0
- data/lib/ffi-tk/command/scrollable.rb +7 -10
- data/lib/ffi-tk/command/selection.rb +4 -3
- data/lib/ffi-tk/command/set_palette.rb +2 -1
- data/lib/ffi-tk/command/tk_cmd.rb +1 -0
- data/lib/ffi-tk/command/vars.rb +2 -1
- data/lib/ffi-tk/command/wait.rb +2 -1
- data/lib/ffi-tk/command/winfo.rb +9 -8
- data/lib/ffi-tk/command/wm.rb +11 -10
- data/lib/ffi-tk/core_extensions.rb +5 -4
- data/lib/ffi-tk/event/data.rb +32 -31
- data/lib/ffi-tk/event/handler.rb +4 -3
- data/lib/ffi-tk/ffi/tcl.rb +42 -31
- data/lib/ffi-tk/ffi/tcl/cmd_proc.rb +2 -1
- data/lib/ffi-tk/ffi/tcl/eval_result.rb +47 -8
- data/lib/ffi-tk/ffi/tcl/interp.rb +7 -4
- data/lib/ffi-tk/ffi/tcl/obj.rb +7 -32
- data/lib/ffi-tk/ffi/tcl/time.rb +2 -1
- data/lib/ffi-tk/ffi/tk.rb +8 -7
- data/lib/ffi-tk/geometry.rb +20 -17
- data/lib/ffi-tk/thread_sender.rb +1 -0
- data/lib/ffi-tk/tk.rb +23 -23
- data/lib/ffi-tk/variable.rb +25 -3
- data/lib/ffi-tk/version.rb +1 -1
- data/lib/ffi-tk/widget.rb +2 -1
- data/lib/ffi-tk/widget/button.rb +4 -1
- data/lib/ffi-tk/widget/canvas.rb +18 -15
- data/lib/ffi-tk/widget/canvas/arc.rb +2 -1
- data/lib/ffi-tk/widget/canvas/bitmap.rb +2 -1
- data/lib/ffi-tk/widget/canvas/image.rb +2 -1
- data/lib/ffi-tk/widget/canvas/item.rb +4 -4
- data/lib/ffi-tk/widget/canvas/line.rb +2 -1
- data/lib/ffi-tk/widget/canvas/oval.rb +2 -1
- data/lib/ffi-tk/widget/canvas/polygon.rb +2 -1
- data/lib/ffi-tk/widget/canvas/rectangle.rb +2 -1
- data/lib/ffi-tk/widget/canvas/text.rb +2 -1
- data/lib/ffi-tk/widget/canvas/window.rb +2 -1
- data/lib/ffi-tk/widget/checkbutton.rb +4 -1
- data/lib/ffi-tk/widget/entry.rb +4 -1
- data/lib/ffi-tk/widget/frame.rb +4 -1
- data/lib/ffi-tk/widget/label.rb +4 -1
- data/lib/ffi-tk/widget/labelframe.rb +4 -1
- data/lib/ffi-tk/widget/listbox.rb +5 -2
- data/lib/ffi-tk/widget/menu.rb +4 -1
- data/lib/ffi-tk/widget/menubutton.rb +4 -1
- data/lib/ffi-tk/widget/message.rb +4 -1
- data/lib/ffi-tk/widget/panedwindow.rb +5 -2
- data/lib/ffi-tk/widget/radiobutton.rb +4 -1
- data/lib/ffi-tk/widget/root.rb +1 -0
- data/lib/ffi-tk/widget/scale.rb +4 -1
- data/lib/ffi-tk/widget/scrollbar.rb +4 -1
- data/lib/ffi-tk/widget/spinbox.rb +4 -1
- data/lib/ffi-tk/widget/text.rb +20 -16
- data/lib/ffi-tk/widget/text/peer.rb +1 -0
- data/lib/ffi-tk/widget/tile.rb +2 -1
- data/lib/ffi-tk/widget/tile/button.rb +4 -1
- data/lib/ffi-tk/widget/tile/checkbutton.rb +4 -1
- data/lib/ffi-tk/widget/tile/combobox.rb +5 -2
- data/lib/ffi-tk/widget/tile/entry.rb +4 -1
- data/lib/ffi-tk/widget/tile/frame.rb +4 -1
- data/lib/ffi-tk/widget/tile/label.rb +4 -2
- data/lib/ffi-tk/widget/tile/labelframe.rb +4 -1
- data/lib/ffi-tk/widget/tile/menubutton.rb +4 -1
- data/lib/ffi-tk/widget/tile/notebook.rb +4 -1
- data/lib/ffi-tk/widget/tile/panedwindow.rb +4 -1
- data/lib/ffi-tk/widget/tile/progressbar.rb +4 -2
- data/lib/ffi-tk/widget/tile/radiobutton.rb +4 -1
- data/lib/ffi-tk/widget/tile/scale.rb +4 -1
- data/lib/ffi-tk/widget/tile/scrollbar.rb +7 -4
- data/lib/ffi-tk/widget/tile/separator.rb +4 -1
- data/lib/ffi-tk/widget/tile/sizegrip.rb +4 -1
- data/lib/ffi-tk/widget/tile/style.rb +16 -17
- data/lib/ffi-tk/widget/tile/treeview.rb +11 -5
- data/lib/ffi-tk/widget/toplevel.rb +4 -1
- data/shell.nix +19 -0
- data/spec/ffi-tk/command/bind.rb +5 -4
- data/spec/ffi-tk/command/bindtags.rb +2 -1
- data/spec/ffi-tk/command/clipboard.rb +4 -3
- data/spec/ffi-tk/command/font.rb +20 -19
- data/spec/ffi-tk/command/image.rb +13 -5
- data/spec/ffi-tk/command/pack.rb +3 -2
- data/spec/ffi-tk/command/place.rb +4 -3
- data/spec/ffi-tk/command/selection.rb +2 -1
- data/spec/ffi-tk/command/vars.rb +3 -2
- data/spec/ffi-tk/command/winfo.rb +10 -10
- data/spec/ffi-tk/command/wm.rb +23 -22
- data/spec/ffi-tk/event.rb +23 -21
- data/spec/ffi-tk/tile/button.rb +8 -8
- data/spec/ffi-tk/tile/checkbutton.rb +1 -1
- data/spec/ffi-tk/tile/combobox.rb +11 -12
- data/spec/ffi-tk/tile/entry.rb +18 -19
- data/spec/ffi-tk/tile/frame.rb +13 -13
- data/spec/ffi-tk/tile/label.rb +2 -2
- data/spec/ffi-tk/tile/labelframe.rb +1 -1
- data/spec/ffi-tk/tile/menubutton.rb +1 -1
- data/spec/ffi-tk/tile/notebook.rb +22 -20
- data/spec/ffi-tk/tile/panedwindow.rb +1 -1
- data/spec/ffi-tk/tile/progressbar.rb +1 -1
- data/spec/ffi-tk/tile/radiobutton.rb +1 -1
- data/spec/ffi-tk/tile/scale.rb +1 -1
- data/spec/ffi-tk/tile/scrollbar.rb +1 -16
- data/spec/ffi-tk/tile/separator.rb +2 -2
- data/spec/ffi-tk/tile/sizegrip.rb +1 -1
- data/spec/ffi-tk/tile/style.rb +63 -65
- data/spec/ffi-tk/tile/treeview.rb +11 -10
- data/spec/ffi-tk/variable.rb +5 -4
- data/spec/ffi-tk/widget/button.rb +3 -2
- data/spec/ffi-tk/widget/canvas.rb +59 -58
- data/spec/ffi-tk/widget/checkbutton.rb +6 -5
- data/spec/ffi-tk/widget/entry.rb +112 -103
- data/spec/ffi-tk/widget/frame.rb +2 -1
- data/spec/ffi-tk/widget/label.rb +2 -1
- data/spec/ffi-tk/widget/labelframe.rb +1 -0
- data/spec/ffi-tk/widget/listbox.rb +5 -4
- data/spec/ffi-tk/widget/menu.rb +3 -2
- data/spec/ffi-tk/widget/menubutton.rb +1 -0
- data/spec/ffi-tk/widget/message.rb +1 -0
- data/spec/ffi-tk/widget/panedwindow.rb +1 -0
- data/spec/ffi-tk/widget/radiobutton.rb +1 -0
- data/spec/ffi-tk/widget/root.rb +2 -1
- data/spec/ffi-tk/widget/scale.rb +1 -0
- data/spec/ffi-tk/widget/scrollbar.rb +1 -0
- data/spec/ffi-tk/widget/spinbox.rb +1 -0
- data/spec/ffi-tk/widget/text.rb +63 -54
- data/spec/ffi-tk/widget/toplevel.rb +1 -0
- data/spec/helper.rb +3 -1
- data/tasks/authors.rake +3 -2
- data/tasks/bacon.rake +13 -11
- data/tasks/changelog.rake +1 -0
- data/tasks/gem.rake +13 -11
- data/tasks/manifest.rake +2 -1
- data/tasks/release.rake +11 -32
- data/tasks/reversion.rake +2 -1
- metadata +52 -75
- data/spec/ffi-tk/command/grid.rb +0 -6
- data/tasks/gem_setup.rake +0 -113
- data/tasks/grancher.rake +0 -12
- data/tasks/rcov.rake +0 -17
- data/tasks/setup.rake +0 -12
- data/tasks/ycov.rake +0 -84
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 5a85c9168eb12b37e32c88675b0496f7d6937ad8
|
4
|
+
data.tar.gz: 75dfbde06b40b69ac672f825f789d0213edd79c5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0b969330bd1f9089b16980bdbc3e0b8fa08ae068849ed62aebe757d111df7bcac0b13cf96ac71a39215008e92451d86883550fe57db5c155c3e541d4bdff6701
|
7
|
+
data.tar.gz: aaf6047d1ade7569ec75d2cd132bcfa53371478936669d8f9a3da5628710c3a066e15a359cb30b172d722398986b4c2c715742dfe3d3eab5b5ae8d7a71a8aa54
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,371 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2016-12-24 23:21:58 +0100 using RuboCop version 0.46.0.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 13
|
10
|
+
# Configuration parameters: AllowSafeAssignment.
|
11
|
+
Lint/AssignmentInCondition:
|
12
|
+
Exclude:
|
13
|
+
- 'bin/rwish'
|
14
|
+
- 'lib/ffi-tk/command/cget.rb'
|
15
|
+
- 'lib/ffi-tk/command/selection.rb'
|
16
|
+
- 'lib/ffi-tk/command/wm.rb'
|
17
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
18
|
+
- 'lib/ffi-tk/event/handler.rb'
|
19
|
+
- 'lib/ffi-tk/widget/panedwindow.rb'
|
20
|
+
- 'tasks/rcov.rake'
|
21
|
+
|
22
|
+
# Offense count: 2
|
23
|
+
Lint/DuplicateMethods:
|
24
|
+
Exclude:
|
25
|
+
- 'lib/ffi-tk/command/lower.rb'
|
26
|
+
- 'lib/ffi-tk/command/raise.rb'
|
27
|
+
|
28
|
+
# Offense count: 1
|
29
|
+
Lint/DuplicatedKey:
|
30
|
+
Exclude:
|
31
|
+
- 'lib/ffi-tk/widget/canvas/item.rb'
|
32
|
+
|
33
|
+
# Offense count: 1
|
34
|
+
Lint/EmptyWhen:
|
35
|
+
Exclude:
|
36
|
+
- 'lib/ffi-tk/event/data.rb'
|
37
|
+
|
38
|
+
# Offense count: 5
|
39
|
+
Lint/Eval:
|
40
|
+
Exclude:
|
41
|
+
- 'bin/rwish'
|
42
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
43
|
+
- 'lib/ffi-tk/ffi/tcl/obj.rb'
|
44
|
+
|
45
|
+
# Offense count: 1
|
46
|
+
Lint/FormatParameterMismatch:
|
47
|
+
Exclude:
|
48
|
+
- 'lib/ffi-tk/geometry.rb'
|
49
|
+
|
50
|
+
# Offense count: 2
|
51
|
+
Lint/HandleExceptions:
|
52
|
+
Exclude:
|
53
|
+
- 'tasks/grancher.rake'
|
54
|
+
- 'tasks/ycov.rake'
|
55
|
+
|
56
|
+
# Offense count: 1
|
57
|
+
Lint/IneffectiveAccessModifier:
|
58
|
+
Exclude:
|
59
|
+
- 'lib/ffi-tk/command/configure.rb'
|
60
|
+
|
61
|
+
# Offense count: 2
|
62
|
+
Lint/Loop:
|
63
|
+
Exclude:
|
64
|
+
- 'lib/ffi-tk/ffi/tcl/interp.rb'
|
65
|
+
|
66
|
+
# Offense count: 2
|
67
|
+
Lint/RescueException:
|
68
|
+
Exclude:
|
69
|
+
- 'example/set_palette.rb'
|
70
|
+
- 'example/tile/treeview.rb'
|
71
|
+
|
72
|
+
# Offense count: 2
|
73
|
+
Lint/ShadowingOuterLocalVariable:
|
74
|
+
Exclude:
|
75
|
+
- 'example/tile/treeview.rb'
|
76
|
+
- 'lib/ffi-tk/widget/checkbutton.rb'
|
77
|
+
|
78
|
+
# Offense count: 1
|
79
|
+
# Cop supports --auto-correct.
|
80
|
+
Lint/UnifiedInteger:
|
81
|
+
Exclude:
|
82
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
83
|
+
|
84
|
+
# Offense count: 2
|
85
|
+
# Cop supports --auto-correct.
|
86
|
+
# Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods.
|
87
|
+
Lint/UnusedMethodArgument:
|
88
|
+
Exclude:
|
89
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
90
|
+
|
91
|
+
# Offense count: 20
|
92
|
+
Lint/UselessAssignment:
|
93
|
+
Exclude:
|
94
|
+
- 'example/tkgo.rb'
|
95
|
+
- 'example/various.rb'
|
96
|
+
- 'example/wait.rb'
|
97
|
+
- 'ffi-tk.gemspec'
|
98
|
+
- 'lib/ffi-tk/command/cget.rb'
|
99
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
100
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
101
|
+
- 'lib/ffi-tk/ffi/tk.rb'
|
102
|
+
- 'lib/ffi-tk/tk.rb'
|
103
|
+
- 'lib/ffi-tk/widget/tile/style.rb'
|
104
|
+
|
105
|
+
# Offense count: 296
|
106
|
+
Lint/Void:
|
107
|
+
Enabled: false
|
108
|
+
|
109
|
+
# Offense count: 24
|
110
|
+
Metrics/AbcSize:
|
111
|
+
Max: 45
|
112
|
+
|
113
|
+
# Offense count: 2
|
114
|
+
# Configuration parameters: CountComments.
|
115
|
+
Metrics/BlockLength:
|
116
|
+
Max: 92
|
117
|
+
|
118
|
+
# Offense count: 2
|
119
|
+
Metrics/BlockNesting:
|
120
|
+
Max: 4
|
121
|
+
|
122
|
+
# Offense count: 6
|
123
|
+
# Configuration parameters: CountComments.
|
124
|
+
Metrics/ClassLength:
|
125
|
+
Max: 293
|
126
|
+
|
127
|
+
# Offense count: 8
|
128
|
+
Metrics/CyclomaticComplexity:
|
129
|
+
Max: 14
|
130
|
+
|
131
|
+
# Offense count: 115
|
132
|
+
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
|
133
|
+
# URISchemes: http, https
|
134
|
+
Metrics/LineLength:
|
135
|
+
Max: 592
|
136
|
+
|
137
|
+
# Offense count: 44
|
138
|
+
# Configuration parameters: CountComments.
|
139
|
+
Metrics/MethodLength:
|
140
|
+
Max: 83
|
141
|
+
|
142
|
+
# Offense count: 3
|
143
|
+
# Configuration parameters: CountComments.
|
144
|
+
Metrics/ModuleLength:
|
145
|
+
Max: 408
|
146
|
+
|
147
|
+
# Offense count: 1
|
148
|
+
# Configuration parameters: CountKeywordArgs.
|
149
|
+
Metrics/ParameterLists:
|
150
|
+
Max: 6
|
151
|
+
|
152
|
+
# Offense count: 6
|
153
|
+
Metrics/PerceivedComplexity:
|
154
|
+
Max: 13
|
155
|
+
|
156
|
+
# Offense count: 3
|
157
|
+
Style/AccessorMethodName:
|
158
|
+
Exclude:
|
159
|
+
- 'lib/ffi-tk/command/grab.rb'
|
160
|
+
- 'lib/ffi-tk/widget/tile.rb'
|
161
|
+
|
162
|
+
# Offense count: 1
|
163
|
+
# Cop supports --auto-correct.
|
164
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, ProceduralMethods, FunctionalMethods, IgnoredMethods.
|
165
|
+
# SupportedStyles: line_count_based, semantic, braces_for_chaining
|
166
|
+
# ProceduralMethods: benchmark, bm, bmbm, create, each_with_object, measure, new, realtime, tap, with_object
|
167
|
+
# FunctionalMethods: let, let!, subject, watch
|
168
|
+
# IgnoredMethods: lambda, proc, it
|
169
|
+
Style/BlockDelimiters:
|
170
|
+
Exclude:
|
171
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
172
|
+
|
173
|
+
# Offense count: 2
|
174
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
175
|
+
# SupportedStyles: nested, compact
|
176
|
+
Style/ClassAndModuleChildren:
|
177
|
+
Exclude:
|
178
|
+
- 'lib/ffi-tk/version.rb'
|
179
|
+
- 'spec/ffi-tk/tile/style.rb'
|
180
|
+
|
181
|
+
# Offense count: 2
|
182
|
+
# Cop supports --auto-correct.
|
183
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, SingleLineConditionsOnly.
|
184
|
+
# SupportedStyles: assign_to_condition, assign_inside_condition
|
185
|
+
Style/ConditionalAssignment:
|
186
|
+
Exclude:
|
187
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
188
|
+
- 'lib/ffi-tk/widget.rb'
|
189
|
+
|
190
|
+
# Offense count: 85
|
191
|
+
Style/Documentation:
|
192
|
+
Enabled: false
|
193
|
+
|
194
|
+
# Offense count: 1
|
195
|
+
# Cop supports --auto-correct.
|
196
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
197
|
+
# SupportedStyles: leading, trailing
|
198
|
+
Style/DotPosition:
|
199
|
+
Exclude:
|
200
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
201
|
+
|
202
|
+
# Offense count: 3
|
203
|
+
# Cop supports --auto-correct.
|
204
|
+
# Configuration parameters: AllowAdjacentOneLineDefs.
|
205
|
+
Style/EmptyLineBetweenDefs:
|
206
|
+
Exclude:
|
207
|
+
- 'lib/ffi-tk.rb'
|
208
|
+
|
209
|
+
# Offense count: 6
|
210
|
+
# Cop supports --auto-correct.
|
211
|
+
# Configuration parameters: AllowForAlignment, ForceEqualSignAlignment.
|
212
|
+
Style/ExtraSpacing:
|
213
|
+
Exclude:
|
214
|
+
- 'lib/ffi-tk.rb'
|
215
|
+
|
216
|
+
# Offense count: 1
|
217
|
+
# Configuration parameters: ExpectMatchingDefinition, Regex, IgnoreExecutableScripts.
|
218
|
+
Style/FileName:
|
219
|
+
Exclude:
|
220
|
+
- 'lib/ffi-tk.rb'
|
221
|
+
|
222
|
+
# Offense count: 44
|
223
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
224
|
+
# SupportedStyles: format, sprintf, percent
|
225
|
+
Style/FormatString:
|
226
|
+
Enabled: false
|
227
|
+
|
228
|
+
# Offense count: 16
|
229
|
+
# Configuration parameters: AllowedVariables.
|
230
|
+
Style/GlobalVars:
|
231
|
+
Exclude:
|
232
|
+
- 'example/tile/kroc_rb_demo.rb'
|
233
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
234
|
+
|
235
|
+
# Offense count: 10
|
236
|
+
# Configuration parameters: MinBodyLength.
|
237
|
+
Style/GuardClause:
|
238
|
+
Exclude:
|
239
|
+
- 'lib/ffi-tk/command/cget.rb'
|
240
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
241
|
+
- 'lib/ffi-tk/event/handler.rb'
|
242
|
+
- 'lib/ffi-tk/ffi/tcl/eval_result.rb'
|
243
|
+
- 'lib/ffi-tk/ffi/tcl/interp.rb'
|
244
|
+
- 'lib/ffi-tk/widget/canvas.rb'
|
245
|
+
- 'lib/ffi-tk/widget/tile/style.rb'
|
246
|
+
|
247
|
+
# Offense count: 2
|
248
|
+
Style/IfInsideElse:
|
249
|
+
Exclude:
|
250
|
+
- 'lib/ffi-tk/command/bind.rb'
|
251
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
252
|
+
|
253
|
+
# Offense count: 3
|
254
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
255
|
+
# SupportedStyles: snake_case, camelCase
|
256
|
+
Style/MethodName:
|
257
|
+
Exclude:
|
258
|
+
- 'example/tile/kroc_demo_small.rb'
|
259
|
+
|
260
|
+
# Offense count: 1
|
261
|
+
# Cop supports --auto-correct.
|
262
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
263
|
+
# SupportedStyles: symmetrical, new_line, same_line
|
264
|
+
Style/MultilineArrayBraceLayout:
|
265
|
+
Exclude:
|
266
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
267
|
+
|
268
|
+
# Offense count: 1
|
269
|
+
# Cop supports --auto-correct.
|
270
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, IndentationWidth.
|
271
|
+
# SupportedStyles: aligned, indented, indented_relative_to_receiver
|
272
|
+
Style/MultilineMethodCallIndentation:
|
273
|
+
Exclude:
|
274
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
275
|
+
|
276
|
+
# Offense count: 2
|
277
|
+
# Cop supports --auto-correct.
|
278
|
+
Style/MutableConstant:
|
279
|
+
Exclude:
|
280
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
281
|
+
- 'lib/ffi-tk/version.rb'
|
282
|
+
|
283
|
+
# Offense count: 7
|
284
|
+
# Cop supports --auto-correct.
|
285
|
+
# Configuration parameters: AutoCorrect, EnforcedStyle, SupportedStyles.
|
286
|
+
# SupportedStyles: predicate, comparison
|
287
|
+
Style/NumericPredicate:
|
288
|
+
Exclude:
|
289
|
+
- 'spec/**/*'
|
290
|
+
- 'lib/ffi-tk/ffi/tcl/eval_result.rb'
|
291
|
+
- 'lib/ffi-tk/ffi/tcl/interp.rb'
|
292
|
+
- 'tasks/bacon.rake'
|
293
|
+
|
294
|
+
# Offense count: 3
|
295
|
+
# Cop supports --auto-correct.
|
296
|
+
Style/ParallelAssignment:
|
297
|
+
Exclude:
|
298
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
299
|
+
- 'lib/ffi-tk/widget.rb'
|
300
|
+
|
301
|
+
# Offense count: 4
|
302
|
+
# Cop supports --auto-correct.
|
303
|
+
# Configuration parameters: AllowAsExpressionSeparator.
|
304
|
+
Style/Semicolon:
|
305
|
+
Exclude:
|
306
|
+
- 'example/tile/kroc_demo_small.rb'
|
307
|
+
- 'lib/ffi-tk/command/scrollable.rb'
|
308
|
+
- 'spec/ffi-tk/event.rb'
|
309
|
+
|
310
|
+
# Offense count: 4
|
311
|
+
# Cop supports --auto-correct.
|
312
|
+
# Configuration parameters: AllowIfMethodIsEmpty.
|
313
|
+
Style/SingleLineMethods:
|
314
|
+
Exclude:
|
315
|
+
- 'lib/ffi-tk.rb'
|
316
|
+
|
317
|
+
# Offense count: 5
|
318
|
+
# Cop supports --auto-correct.
|
319
|
+
# Configuration parameters: AllowForAlignment.
|
320
|
+
Style/SpaceAroundOperators:
|
321
|
+
Exclude:
|
322
|
+
- 'lib/ffi-tk.rb'
|
323
|
+
|
324
|
+
# Offense count: 5
|
325
|
+
# Cop supports --auto-correct.
|
326
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
327
|
+
# SupportedStyles: space, no_space
|
328
|
+
Style/SpaceBeforeBlockBraces:
|
329
|
+
Exclude:
|
330
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
331
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
332
|
+
- 'lib/ffi-tk/thread_sender.rb'
|
333
|
+
|
334
|
+
# Offense count: 3
|
335
|
+
# Cop supports --auto-correct.
|
336
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
|
337
|
+
# SupportedStyles: space, no_space
|
338
|
+
Style/SpaceInsideBlockBraces:
|
339
|
+
Exclude:
|
340
|
+
- 'lib/ffi-tk/core_extensions.rb'
|
341
|
+
|
342
|
+
# Offense count: 1
|
343
|
+
# Cop supports --auto-correct.
|
344
|
+
Style/SpaceInsideBrackets:
|
345
|
+
Exclude:
|
346
|
+
- 'lib/ffi-tk.rb'
|
347
|
+
|
348
|
+
# Offense count: 4
|
349
|
+
# Cop supports --auto-correct.
|
350
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles, ConsistentQuotesInMultiline.
|
351
|
+
# SupportedStyles: single_quotes, double_quotes
|
352
|
+
Style/StringLiterals:
|
353
|
+
Exclude:
|
354
|
+
- 'lib/ffi-tk/ffi/tcl.rb'
|
355
|
+
- 'lib/ffi-tk/version.rb'
|
356
|
+
- 'lib/ffi-tk/widget.rb'
|
357
|
+
|
358
|
+
# Offense count: 4
|
359
|
+
Style/StructInheritance:
|
360
|
+
Exclude:
|
361
|
+
- 'lib/ffi-tk/command/bindtags.rb'
|
362
|
+
- 'lib/ffi-tk/ffi/tcl/eval_result.rb'
|
363
|
+
- 'lib/ffi-tk/geometry.rb'
|
364
|
+
- 'lib/ffi-tk/widget/canvas/item.rb'
|
365
|
+
|
366
|
+
# Offense count: 1
|
367
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
368
|
+
# SupportedStyles: snake_case, camelCase
|
369
|
+
Style/VariableName:
|
370
|
+
Exclude:
|
371
|
+
- 'lib/ffi-tk/widget/menu.rb'
|
data/AUTHORS
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
Following persons have contributed to ffi-tk.
|
2
2
|
(Sorted by number of submitted patches, then alphabetically)
|
3
3
|
|
4
|
-
|
5
|
-
|
4
|
+
247 Michael Fellinger <m.fellinger@gmail.com>
|
5
|
+
21 Julian Langschaedel <meta.rb@gmail.com>
|
6
|
+
2 Michael Fellinger <michael.fellinger@xing.com>
|
7
|
+
1 Simon Hafner <hafnersimon@gmail.com>
|
6
8
|
1 unknown <manveru@.(none)>
|
data/CHANGELOG
CHANGED
@@ -1,1052 +1,1092 @@
|
|
1
|
-
[
|
1
|
+
[7fee25f | 2018-02-20 17:14:49 UTC] Michael Fellinger <michael.fellinger@xing.com>
|
2
|
+
|
3
|
+
* Version 2018.02.20
|
4
|
+
|
5
|
+
[15ed100 | 2018-02-20 14:47:54 UTC] Michael Fellinger <michael.fellinger@xing.com>
|
6
|
+
|
7
|
+
* Update all the things!
|
8
|
+
|
9
|
+
[4d2f37f | 2013-01-30 08:14:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
10
|
+
|
11
|
+
* ignore .rbx
|
12
|
+
|
13
|
+
[5d50030 | 2012-03-09 00:14:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
14
|
+
|
15
|
+
* a couple of changes to make it run on rbx
|
16
|
+
|
17
|
+
[85dcee3 | 2011-07-28 23:15:51 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
18
|
+
|
19
|
+
* Make dialog and various example work again.
|
20
|
+
|
21
|
+
[45f50be | 2011-05-04 10:12:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
22
|
+
|
23
|
+
* Fix another pointer issue
|
24
|
+
|
25
|
+
[660ffb9 | 2011-05-02 18:44:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
26
|
+
|
27
|
+
* Fix null-pointer issue
|
28
|
+
|
29
|
+
[7e85391 | 2010-08-30 20:25:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
30
|
+
|
31
|
+
* Fix return value of Tk::Image.types
|
32
|
+
|
33
|
+
[2bd93ee | 2009-11-25 20:53:19 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
34
|
+
|
35
|
+
* Adjust specs for tk-aqua
|
36
|
+
|
37
|
+
[d7215bd | 2010-11-13 23:07:59 UTC] Simon Hafner <hafnersimon@gmail.com>
|
38
|
+
|
39
|
+
* Image#create wasn't passing type in all cases
|
40
|
+
|
41
|
+
[1415faa | 2010-08-23 17:22:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
2
42
|
|
3
43
|
* Version 2010.08.23
|
4
44
|
|
5
|
-
[215da7c | 2010-08-23
|
45
|
+
[215da7c | 2010-08-23 17:21:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
6
46
|
|
7
47
|
* Fix dependency
|
8
48
|
|
9
|
-
[082548c | 2010-08-23
|
49
|
+
[082548c | 2010-08-23 17:19:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
10
50
|
|
11
51
|
* Version 2010.08
|
12
52
|
|
13
|
-
[8d78da8 | 2010-06-02
|
53
|
+
[8d78da8 | 2010-06-02 23:15:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
14
54
|
|
15
55
|
* Version 2010.06
|
16
56
|
|
17
|
-
[c2d350b | 2010-06-02
|
57
|
+
[c2d350b | 2010-06-02 23:13:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
18
58
|
|
19
59
|
* ComboBox is not an Entry
|
20
60
|
|
21
|
-
[ff17848 | 2010-06-02
|
61
|
+
[ff17848 | 2010-06-02 23:12:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
22
62
|
|
23
63
|
* Fix pathname generation
|
24
64
|
|
25
|
-
[0747bc3 | 2010-03-12
|
65
|
+
[0747bc3 | 2010-03-12 13:14:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
26
66
|
|
27
67
|
* Add tcl/tk 8.6 as working versions
|
28
68
|
|
29
|
-
[80c4cb4 | 2010-03-
|
69
|
+
[80c4cb4 | 2010-03-11 00:07:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
30
70
|
|
31
71
|
* Name the mysterious eval flag
|
32
72
|
|
33
|
-
[28aff12 | 2010-03-
|
73
|
+
[28aff12 | 2010-03-11 00:07:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
34
74
|
|
35
75
|
* Use better array retrieval
|
36
76
|
|
37
|
-
[4916cfb | 2010-03-10
|
77
|
+
[4916cfb | 2010-03-10 23:53:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
38
78
|
|
39
79
|
* Let other function calls panic too
|
40
80
|
|
41
|
-
[2caf7a1 | 2010-03-10
|
81
|
+
[2caf7a1 | 2010-03-10 23:52:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
42
82
|
|
43
83
|
* Don't try to convert event data if it's ??
|
44
84
|
|
45
|
-
[77dce01 | 2010-03-10
|
85
|
+
[77dce01 | 2010-03-10 23:52:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
46
86
|
|
47
87
|
* Improve EvalResult::map_list_core
|
48
88
|
|
49
|
-
[6f328f6 | 2010-03-10
|
89
|
+
[6f328f6 | 2010-03-10 16:03:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
50
90
|
|
51
91
|
* Handle the % sequence in events
|
52
92
|
|
53
|
-
[795e77d | 2010-03-09
|
93
|
+
[795e77d | 2010-03-09 15:36:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
54
94
|
|
55
95
|
* Rename Event::Data.sequence to Event::Data.pattern
|
56
96
|
|
57
|
-
[bc3f560 | 2010-03-
|
97
|
+
[bc3f560 | 2010-03-08 00:04:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
58
98
|
|
59
99
|
* Split up the LIBPATH Hash into two constant Arrays, fix bug on osx
|
60
100
|
|
61
|
-
[c98168e | 2010-03-07
|
101
|
+
[c98168e | 2010-03-07 23:59:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
62
102
|
|
63
103
|
* A little bit of restructure, don't require the 'Apple_PubSub_Socket_Render' env to be set, but allow TK_LIBPATH and TCL_LIBPATH to be
|
64
104
|
|
65
|
-
[865fd4b | 2010-03-
|
105
|
+
[865fd4b | 2010-03-06 01:41:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
66
106
|
|
67
107
|
* Working implementation of WM::protocol
|
68
108
|
|
69
|
-
[920e7c5 | 2010-03-02
|
109
|
+
[920e7c5 | 2010-03-02 13:07:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
70
110
|
|
71
111
|
* Version 2010.03
|
72
112
|
|
73
|
-
[d0db268 | 2010-03-02
|
113
|
+
[d0db268 | 2010-03-02 13:07:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
74
114
|
|
75
115
|
* Update Rakefile
|
76
116
|
|
77
|
-
[6704d90 | 2010-03-01
|
117
|
+
[6704d90 | 2010-03-01 13:38:20 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
78
118
|
|
79
119
|
* Fix ffi_lib loadpaths osx
|
80
120
|
|
81
|
-
[9a44790 | 2010-03-01
|
121
|
+
[9a44790 | 2010-03-01 18:24:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
82
122
|
|
83
123
|
* Add some constants for flags
|
84
124
|
|
85
|
-
[7c520c9 | 2010-
|
125
|
+
[7c520c9 | 2010-03-01 05:56:12 UTC] unknown <manveru@.(none)>
|
86
126
|
|
87
127
|
* Fix ffi_lib for windows
|
88
128
|
|
89
|
-
[8ad1897 | 2010-02-28
|
129
|
+
[8ad1897 | 2010-02-28 14:47:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
90
130
|
|
91
131
|
* Force output of clipboard to UTF-8
|
92
132
|
|
93
|
-
[fb959b5 | 2010-02-
|
133
|
+
[fb959b5 | 2010-02-27 01:45:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
94
134
|
|
95
135
|
* Text#get_displaychars should return String
|
96
136
|
|
97
|
-
[12d960a | 2010-02-25
|
137
|
+
[12d960a | 2010-02-25 23:19:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
98
138
|
|
99
139
|
* Add shortcut for the tcl update command
|
100
140
|
|
101
|
-
[2de99ed | 2010-02-
|
141
|
+
[2de99ed | 2010-02-18 01:57:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
102
142
|
|
103
143
|
* Make sure Text#tag_cget doesn't return EvalResult
|
104
144
|
|
105
|
-
[a173b8a | 2010-02-15
|
145
|
+
[a173b8a | 2010-02-15 14:37:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
106
146
|
|
107
147
|
* Adapt to FFI 0.6
|
108
148
|
|
109
|
-
[e1ae1ee | 2010-02-
|
149
|
+
[e1ae1ee | 2010-02-15 02:34:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
110
150
|
|
111
151
|
* Version 2010.02
|
112
152
|
|
113
|
-
[a84139f | 2010-02-11
|
153
|
+
[a84139f | 2010-02-11 23:16:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
114
154
|
|
115
155
|
* Parse the grid_info
|
116
156
|
|
117
|
-
[848118d | 2010-02-10
|
157
|
+
[848118d | 2010-02-10 09:35:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
118
158
|
|
119
159
|
* Remove debugging output from canvas bind
|
120
160
|
|
121
|
-
[860e5eb | 2010-02-03
|
161
|
+
[860e5eb | 2010-02-03 23:53:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
122
162
|
|
123
163
|
* Tile::Treeview is Scrollable
|
124
164
|
|
125
|
-
[bb895e7 | 2010-02-
|
165
|
+
[bb895e7 | 2010-02-03 00:22:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
126
166
|
|
127
167
|
* Make sure we return strings from Focus::focus
|
128
168
|
|
129
|
-
[9906882 | 2010-02-01
|
169
|
+
[9906882 | 2010-02-01 13:45:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
130
170
|
|
131
171
|
* Tk::get_color should run in thread_sender if needed
|
132
172
|
|
133
|
-
[a3c410f | 2010-01-30
|
173
|
+
[a3c410f | 2010-01-30 12:07:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
134
174
|
|
135
175
|
* Version 2010.01
|
136
176
|
|
137
|
-
[08ea2af | 2010-01-30
|
177
|
+
[08ea2af | 2010-01-30 12:05:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
138
178
|
|
139
179
|
* Version 2009.01
|
140
180
|
|
141
|
-
[8ae78b3 | 2010-01-
|
181
|
+
[8ae78b3 | 2010-01-29 02:47:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
142
182
|
|
143
183
|
* Return Items for Treeview#selection
|
144
184
|
|
145
|
-
[3a65a4a | 2010-01-28
|
185
|
+
[3a65a4a | 2010-01-28 21:25:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
146
186
|
|
147
187
|
* Define correct methods for ttk::panedwindow
|
148
188
|
|
149
|
-
[7e23eef | 2010-01-25
|
189
|
+
[7e23eef | 2010-01-25 17:21:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
150
190
|
|
151
191
|
* Make sure all files are valid ASCII
|
152
192
|
|
153
|
-
[08d7237 | 2010-01-
|
193
|
+
[08d7237 | 2010-01-23 04:51:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
154
194
|
|
155
195
|
* Improve some more around Bind and add a spec
|
156
196
|
|
157
|
-
[f03669c | 2010-01-
|
197
|
+
[f03669c | 2010-01-23 03:39:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
158
198
|
|
159
199
|
* Allow lookup of existing binds for Bind and BindTag
|
160
200
|
|
161
|
-
[9c0188f | 2010-01-20
|
201
|
+
[9c0188f | 2010-01-20 23:00:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
162
202
|
|
163
203
|
* Adding Event::Data.resend
|
164
204
|
|
165
|
-
[d479e70 | 2010-01-19
|
205
|
+
[d479e70 | 2010-01-19 09:40:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
166
206
|
|
167
207
|
* Fix Event::generate by converting options
|
168
208
|
|
169
|
-
[afabe51 | 2010-01-18
|
209
|
+
[afabe51 | 2010-01-18 20:30:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
170
210
|
|
171
211
|
* Add shortcut to get from event data to widget instance
|
172
212
|
|
173
|
-
[5b0bbb0 | 2010-01-18
|
213
|
+
[5b0bbb0 | 2010-01-18 15:41:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
174
214
|
|
175
215
|
* Relay full exception with backtrace to tcl when something goes wrong in a callback or event
|
176
216
|
|
177
|
-
[c94a30f | 2010-01-18
|
217
|
+
[c94a30f | 2010-01-18 15:25:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
178
218
|
|
179
219
|
* Add Clipboard::set
|
180
220
|
|
181
|
-
[0dfb69e | 2010-01-16
|
221
|
+
[0dfb69e | 2010-01-16 23:58:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
182
222
|
|
183
223
|
* Add convenience methods for a few obscure but helpful tk procs
|
184
224
|
|
185
|
-
[0a25db7 | 2010-01-15
|
225
|
+
[0a25db7 | 2010-01-15 23:19:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
186
226
|
|
187
227
|
* Add little example for picking themes
|
188
228
|
|
189
|
-
[c1813f5 | 2010-01-14
|
229
|
+
[c1813f5 | 2010-01-14 22:49:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
190
230
|
|
191
231
|
* Fixing some commands for Tile::Notebook
|
192
232
|
|
193
|
-
[2673fec | 2010-01-14
|
233
|
+
[2673fec | 2010-01-14 22:49:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
194
234
|
|
195
235
|
* Fixing Place::configure
|
196
236
|
|
197
|
-
[855fc4a | 2010-01-11
|
237
|
+
[855fc4a | 2010-01-11 13:10:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
198
238
|
|
199
239
|
* Revert "Correct usage of ffi_lib" until new FFI gem is out.
|
200
240
|
|
201
241
|
This reverts commit b6f9b0aab4255e545fcee087ba4b72b76168db60.
|
202
242
|
|
203
|
-
[b6f9b0a | 2010-01-11
|
243
|
+
[b6f9b0a | 2010-01-11 13:02:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
204
244
|
|
205
245
|
* Correct usage of ffi_lib
|
206
246
|
|
207
|
-
[35c816d | 2010-01-06
|
247
|
+
[35c816d | 2010-01-06 11:57:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
208
248
|
|
209
249
|
* Adding .gitignore
|
210
250
|
|
211
|
-
[eda8832 | 2010-01-
|
251
|
+
[eda8832 | 2010-01-06 01:33:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
212
252
|
|
213
253
|
* Add FFI::Tk::get_color
|
214
254
|
|
215
|
-
[764a4fe | 2010-01-05
|
255
|
+
[764a4fe | 2010-01-05 16:20:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
216
256
|
|
217
257
|
* Fix Text#dump
|
218
258
|
|
219
|
-
[0b480a3 | 2010-01-
|
259
|
+
[0b480a3 | 2010-01-04 01:41:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
220
260
|
|
221
261
|
* Fix String#to_tcl, take care of {}
|
222
262
|
|
223
|
-
[25a628d | 2010-01-
|
263
|
+
[25a628d | 2010-01-04 00:40:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
224
264
|
|
225
265
|
* Handle case when the array thought to contain configuration doesn't contain any
|
226
266
|
|
227
|
-
[bc5eef4 | 2010-01-02
|
267
|
+
[bc5eef4 | 2010-01-02 15:40:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
228
268
|
|
229
269
|
* Fix bug in Treeview#selection_set and add Treeview::Item#selection_set
|
230
270
|
|
231
|
-
[6064ac0 | 2010-01-02
|
271
|
+
[6064ac0 | 2010-01-02 15:40:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
232
272
|
|
233
273
|
* Fix bug in Grid::columnconfigure
|
234
274
|
|
235
|
-
[3e84b8d | 2010-01-02
|
275
|
+
[3e84b8d | 2010-01-02 15:39:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
236
276
|
|
237
277
|
* Version 2010.01.02
|
238
278
|
|
239
|
-
[b4c87c4 | 2010-01-
|
279
|
+
[b4c87c4 | 2010-01-02 02:37:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
240
280
|
|
241
281
|
* Refine handling of event data
|
242
282
|
|
243
|
-
[fdac9fc | 2009-12-29
|
283
|
+
[fdac9fc | 2009-12-29 21:44:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
244
284
|
|
245
285
|
* Fix return values of get_(save|open)_file
|
246
286
|
|
247
|
-
[f7b1a21 | 2009-12-29
|
287
|
+
[f7b1a21 | 2009-12-29 21:39:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
248
288
|
|
249
289
|
* Revert "Avoid segfault in EvalResult::to_string"
|
250
290
|
|
251
291
|
This reverts commit 133b7b963c49c79ea1ee7a7b71663a0c895b22c0.
|
252
292
|
|
253
|
-
[3e8953a | 2009-12-29
|
293
|
+
[3e8953a | 2009-12-29 16:09:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
254
294
|
|
255
295
|
* Fix Array#tcl_options_to_hash for result of configure
|
256
296
|
|
257
|
-
[4d14c53 | 2009-12-27
|
297
|
+
[4d14c53 | 2009-12-27 19:15:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
258
298
|
|
259
299
|
* Make sure we convert Text#index
|
260
300
|
|
261
|
-
[133b7b9 | 2009-12-27
|
301
|
+
[133b7b9 | 2009-12-27 19:11:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
262
302
|
|
263
303
|
* Avoid segfault in EvalResult::to_string
|
264
304
|
|
265
|
-
[b1b92d1 | 2009-12-26
|
305
|
+
[b1b92d1 | 2009-12-26 22:16:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
266
306
|
|
267
307
|
* Various fixes for Canvas
|
268
308
|
|
269
|
-
[01629a8 | 2009-12-26
|
309
|
+
[01629a8 | 2009-12-26 22:16:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
270
310
|
|
271
311
|
* Add Tcl.set_max_block_time
|
272
312
|
|
273
|
-
[d2d9144 | 2009-12-24
|
313
|
+
[d2d9144 | 2009-12-24 22:19:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
274
314
|
|
275
315
|
* Fix return value of get_(save|open)_file
|
276
316
|
|
277
|
-
[b25337b | 2009-12-18
|
317
|
+
[b25337b | 2009-12-18 21:44:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
278
318
|
|
279
319
|
* Update readme
|
280
320
|
|
281
|
-
[5c7b800 | 2009-12-14
|
321
|
+
[5c7b800 | 2009-12-14 11:55:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
282
322
|
|
283
323
|
* Version 2009.12.14
|
284
324
|
|
285
|
-
[0ec1768 | 2009-12-
|
325
|
+
[0ec1768 | 2009-12-06 00:50:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
286
326
|
|
287
327
|
* Gnugo defaults to 19 size
|
288
328
|
|
289
|
-
[95e450e | 2009-12-05
|
329
|
+
[95e450e | 2009-12-05 20:30:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
290
330
|
|
291
331
|
* Add license and some options
|
292
332
|
|
293
|
-
[01bc732 | 2009-12-05
|
333
|
+
[01bc732 | 2009-12-05 15:10:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
294
334
|
|
295
335
|
* Fix some stuff of Canvas
|
296
336
|
|
297
|
-
[709119c | 2009-11-28
|
337
|
+
[709119c | 2009-11-28 23:17:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
298
338
|
|
299
339
|
* Make gemspec and related files
|
300
340
|
|
301
|
-
[a03ce1d | 2009-11-28
|
341
|
+
[a03ce1d | 2009-11-28 18:05:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
302
342
|
|
303
343
|
* Fix Treeview#delete and add Treeview#clear
|
304
344
|
|
305
|
-
[294fdaf | 2009-11-23
|
345
|
+
[294fdaf | 2009-11-23 16:13:47 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
306
346
|
|
307
347
|
* Fix Listbox#value
|
308
348
|
|
309
|
-
[cb2b4cc | 2009-11-
|
349
|
+
[cb2b4cc | 2009-11-24 00:15:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
310
350
|
|
311
351
|
* Fix Treeview#children
|
312
352
|
|
313
|
-
[27bd01b | 2009-11-23
|
353
|
+
[27bd01b | 2009-11-23 20:40:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
314
354
|
|
315
355
|
* adding Tile::Treeview with example and spec
|
316
356
|
|
317
|
-
[54145da | 2009-11-23
|
357
|
+
[54145da | 2009-11-23 19:23:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
318
358
|
|
319
359
|
* Make Configure usable for Font
|
320
360
|
|
321
|
-
[5000a6f | 2009-11-23
|
361
|
+
[5000a6f | 2009-11-23 14:12:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
322
362
|
|
323
363
|
* Fix warnings of function wrapping
|
324
364
|
|
325
|
-
[acbb8be | 2009-11-23
|
365
|
+
[acbb8be | 2009-11-23 13:38:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
326
366
|
|
327
367
|
* Make tile widgets adhere to code style
|
328
368
|
|
329
|
-
[73bb848 | 2009-11-23
|
369
|
+
[73bb848 | 2009-11-23 13:29:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
330
370
|
|
331
371
|
* Add shortcut to set Label text
|
332
372
|
|
333
|
-
[2ae4372 | 2009-11-23
|
373
|
+
[2ae4372 | 2009-11-23 13:25:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
334
374
|
|
335
375
|
* Rename Widget#parent to Widget#tk_parent to avoid confusing name collisions
|
336
376
|
|
337
|
-
[72552b6 | 2009-11-23
|
377
|
+
[72552b6 | 2009-11-23 12:37:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
338
378
|
|
339
379
|
* Tile::Treeview stub
|
340
380
|
|
341
|
-
[54dbfa0 | 2009-11-21
|
381
|
+
[54dbfa0 | 2009-11-21 21:13:16 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
342
382
|
|
343
383
|
* Autoload aqua on osx. use NO_AQUA=1 for x11
|
344
384
|
|
345
|
-
[a17fe6d | 2009-11-21
|
385
|
+
[a17fe6d | 2009-11-21 16:55:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
346
386
|
|
347
387
|
* cleanup
|
348
388
|
|
349
|
-
[c89b261 | 2009-11-21
|
389
|
+
[c89b261 | 2009-11-21 16:55:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
350
390
|
|
351
391
|
* Fix Clipboard::get
|
352
392
|
|
353
|
-
[2fd71f1 | 2009-11-20
|
393
|
+
[2fd71f1 | 2009-11-20 16:50:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
354
394
|
|
355
395
|
* Support running event loop on main thread
|
356
396
|
|
357
|
-
[996040e | 2009-11-17
|
397
|
+
[996040e | 2009-11-17 16:54:21 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
358
398
|
|
359
399
|
* Add tile combobox, progressbar widgets
|
360
400
|
|
361
|
-
[9c0265b | 2009-11-17
|
401
|
+
[9c0265b | 2009-11-17 10:08:14 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
362
402
|
|
363
403
|
* Add tile separator, sizegrip widget
|
364
404
|
|
365
|
-
[d34f365 | 2009-11-17
|
405
|
+
[d34f365 | 2009-11-17 17:10:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
366
406
|
|
367
407
|
* Update TODO
|
368
408
|
|
369
|
-
[4fd810f | 2009-11-16
|
409
|
+
[4fd810f | 2009-11-16 21:42:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
370
410
|
|
371
411
|
* Remove the gen_* scripts
|
372
412
|
|
373
|
-
[343504b | 2009-11-16
|
413
|
+
[343504b | 2009-11-16 20:56:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
374
414
|
|
375
415
|
* Fix Regexp escaping
|
376
416
|
|
377
|
-
[6f05905 | 2009-11-16
|
417
|
+
[6f05905 | 2009-11-16 12:31:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
378
418
|
|
379
419
|
* Fix Text#dlineinfo
|
380
420
|
|
381
|
-
[5d85e1e | 2009-11-
|
421
|
+
[5d85e1e | 2009-11-15 00:45:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
382
422
|
|
383
423
|
* do_events_until should use until
|
384
424
|
|
385
|
-
[ecff6c1 | 2009-11-14
|
425
|
+
[ecff6c1 | 2009-11-14 20:10:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
386
426
|
|
387
427
|
* Fix Listbox#get
|
388
428
|
|
389
|
-
[5057c51 | 2009-11-14
|
429
|
+
[5057c51 | 2009-11-14 19:54:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
390
430
|
|
391
431
|
* Add Entry#clear
|
392
432
|
|
393
|
-
[8d7e941 | 2009-11-14
|
433
|
+
[8d7e941 | 2009-11-14 19:54:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
394
434
|
|
395
435
|
* Improve debugging
|
396
436
|
|
397
|
-
[9c7929c | 2009-11-14
|
437
|
+
[9c7929c | 2009-11-14 18:25:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
398
438
|
|
399
439
|
* Make sure all execution happens in a single thread, this should make us pretty much thread-safe
|
400
440
|
|
401
|
-
[c72caf6 | 2009-11-13
|
441
|
+
[c72caf6 | 2009-11-13 14:54:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
402
442
|
|
403
443
|
* Fix winfo spec
|
404
444
|
|
405
|
-
[f0bb141 | 2009-11-13
|
445
|
+
[f0bb141 | 2009-11-13 14:51:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
406
446
|
|
407
447
|
* Clean up
|
408
448
|
|
409
|
-
[4ae1678 | 2009-11-14
|
449
|
+
[4ae1678 | 2009-11-14 16:32:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
410
450
|
|
411
451
|
* Adding ThreadSender in preparation for EM compatibility
|
412
452
|
|
413
|
-
[c07a8f2 | 2009-11-13
|
453
|
+
[c07a8f2 | 2009-11-13 23:41:59 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
414
454
|
|
415
455
|
* Add tile notebook widget
|
416
456
|
|
417
|
-
[77c0090 | 2009-11-13
|
457
|
+
[77c0090 | 2009-11-13 23:40:20 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
418
458
|
|
419
459
|
* Fix text clear
|
420
460
|
|
421
|
-
[d234c52 | 2009-11-
|
461
|
+
[d234c52 | 2009-11-13 03:02:59 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
422
462
|
|
423
463
|
* Move scrolling of widgets into own module
|
424
464
|
|
425
|
-
[b73e61c | 2009-11-
|
465
|
+
[b73e61c | 2009-11-13 00:06:20 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
426
466
|
|
427
467
|
* Add more tile specs
|
428
468
|
|
429
|
-
[eee25a3 | 2009-11-
|
469
|
+
[eee25a3 | 2009-11-13 00:03:15 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
430
470
|
|
431
471
|
* Remove ttk::dialog
|
432
472
|
|
433
|
-
[1d80711 | 2009-11-12
|
473
|
+
[1d80711 | 2009-11-12 22:56:38 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
434
474
|
|
435
475
|
* Adjust tile frame spec
|
436
476
|
|
437
|
-
[53c8ea8 | 2009-11-
|
477
|
+
[53c8ea8 | 2009-11-13 06:56:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
438
478
|
|
439
479
|
* Remove custom Tile initialize
|
440
480
|
|
441
|
-
[2e16ed1 | 2009-11-12
|
481
|
+
[2e16ed1 | 2009-11-12 10:10:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
442
482
|
|
443
483
|
* Fix typo
|
444
484
|
|
445
|
-
[db58259 | 2009-11-12
|
485
|
+
[db58259 | 2009-11-12 10:06:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
446
486
|
|
447
487
|
* Improve tag bind and implement canvas bind
|
448
488
|
|
449
|
-
[f65bd92 | 2009-11-11
|
489
|
+
[f65bd92 | 2009-11-11 13:22:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
450
490
|
|
451
491
|
* Fix listbox
|
452
492
|
|
453
|
-
[8582198 | 2009-11-
|
493
|
+
[8582198 | 2009-11-09 05:37:09 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
454
494
|
|
455
495
|
* Adjust event spec
|
456
496
|
|
457
|
-
[4edff0d | 2009-11-09
|
497
|
+
[4edff0d | 2009-11-09 12:56:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
458
498
|
|
459
499
|
* Fix tk command lookup issues on jruby
|
460
500
|
|
461
|
-
[2854e63 | 2009-11-
|
501
|
+
[2854e63 | 2009-11-09 03:13:29 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
462
502
|
|
463
503
|
* Fix event. caller should invoke focus
|
464
504
|
|
465
|
-
[ca76858 | 2009-11-09
|
505
|
+
[ca76858 | 2009-11-09 11:17:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
466
506
|
|
467
507
|
* Fix Text#search
|
468
508
|
|
469
|
-
[42eadfc | 2009-11-08
|
509
|
+
[42eadfc | 2009-11-08 22:05:37 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
470
510
|
|
471
511
|
* Fix event spec with focus issue
|
472
512
|
|
473
|
-
[07d1648 | 2009-11-08
|
513
|
+
[07d1648 | 2009-11-08 20:50:25 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
474
514
|
|
475
515
|
* Fix Menu widget
|
476
516
|
|
477
|
-
[1bb22b3 | 2009-11-08
|
517
|
+
[1bb22b3 | 2009-11-08 22:22:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
478
518
|
|
479
519
|
* Implement Text#tag_bind
|
480
520
|
|
481
|
-
[56d8d51 | 2009-11-08
|
521
|
+
[56d8d51 | 2009-11-08 19:06:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
482
522
|
|
483
523
|
* Improve Regexp escaping
|
484
524
|
|
485
|
-
[903fd09 | 2009-11-07
|
525
|
+
[903fd09 | 2009-11-07 20:27:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
486
526
|
|
487
527
|
* Remove debugging output
|
488
528
|
|
489
|
-
[4e63e5a | 2009-11-08
|
529
|
+
[4e63e5a | 2009-11-08 18:12:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
490
530
|
|
491
531
|
* Fix tcl_callback
|
492
532
|
|
493
|
-
[1b9c79b | 2009-11-08
|
533
|
+
[1b9c79b | 2009-11-08 18:12:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
494
534
|
|
495
535
|
* Add Tk::After.idle
|
496
536
|
|
497
|
-
[681b0b7 | 2009-11-08
|
537
|
+
[681b0b7 | 2009-11-08 17:29:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
498
538
|
|
499
539
|
* Fix/Add command
|
500
540
|
|
501
|
-
[e2af760 | 2009-11-08
|
541
|
+
[e2af760 | 2009-11-08 17:28:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
502
542
|
|
503
543
|
* Fixing lower/raise
|
504
544
|
|
505
|
-
[8fd8b21 | 2009-11-08
|
545
|
+
[8fd8b21 | 2009-11-08 17:28:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
506
546
|
|
507
547
|
* Adding Tk::After command
|
508
548
|
|
509
|
-
[b136858 | 2009-11-08
|
549
|
+
[b136858 | 2009-11-08 17:02:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
510
550
|
|
511
551
|
* Proper output for Text#tag_ranges
|
512
552
|
|
513
|
-
[ab663dd | 2009-11-08
|
553
|
+
[ab663dd | 2009-11-08 17:02:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
514
554
|
|
515
555
|
* Fix Text#edit_modified?
|
516
556
|
|
517
|
-
[aa97537 | 2009-11-08
|
557
|
+
[aa97537 | 2009-11-08 16:06:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
518
558
|
|
519
559
|
* Prettier debug output
|
520
560
|
|
521
|
-
[dd9ae81 | 2009-11-08
|
561
|
+
[dd9ae81 | 2009-11-08 15:51:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
522
562
|
|
523
563
|
* Fix tag_ranges and speed up tag_remove
|
524
564
|
|
525
|
-
[a9cb0e8 | 2009-11-08
|
565
|
+
[a9cb0e8 | 2009-11-08 15:51:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
526
566
|
|
527
567
|
* Add missing requires
|
528
568
|
|
529
|
-
[24947d8 | 2009-11-08
|
569
|
+
[24947d8 | 2009-11-08 15:48:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
530
570
|
|
531
571
|
* Improve tk_pathname generation and allow easier subclassing
|
532
572
|
|
533
|
-
[25a5569 | 2009-11-08
|
573
|
+
[25a5569 | 2009-11-08 15:10:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
534
574
|
|
535
575
|
* Implement TkCmd module
|
536
576
|
|
537
|
-
[715e464 | 2009-11-
|
577
|
+
[715e464 | 2009-11-08 01:29:34 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
538
578
|
|
539
579
|
* Fix font spec
|
540
580
|
|
541
|
-
[9ed4f94 | 2009-11-
|
581
|
+
[9ed4f94 | 2009-11-08 00:52:39 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
542
582
|
|
543
583
|
* Adjust tile widgets
|
544
584
|
|
545
|
-
[0348d84 | 2009-11-
|
585
|
+
[0348d84 | 2009-11-08 00:29:20 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
546
586
|
|
547
587
|
* Fix button spec, and other widgets that register a command
|
548
588
|
|
549
|
-
[503d6d9 | 2009-11-07
|
589
|
+
[503d6d9 | 2009-11-07 22:38:29 UTC] Julian Langschaedel <meta.rb@gmail.com>
|
550
590
|
|
551
591
|
* Make wminfo, entry specs less enviorment dependent
|
552
592
|
|
553
|
-
[6536be1 | 2009-11-07
|
593
|
+
[6536be1 | 2009-11-07 19:28:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
554
594
|
|
555
595
|
* Fix regular expression escaping
|
556
596
|
|
557
|
-
[610e900 | 2009-11-07
|
597
|
+
[610e900 | 2009-11-07 19:27:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
558
598
|
|
559
599
|
* -style is a list
|
560
600
|
|
561
|
-
[6db1bec | 2009-11-07
|
601
|
+
[6db1bec | 2009-11-07 19:07:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
562
602
|
|
563
603
|
* Some fixes again, make EvalResult roundtrip-able
|
564
604
|
|
565
|
-
[e8cdae2 | 2009-11-07
|
605
|
+
[e8cdae2 | 2009-11-07 18:56:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
566
606
|
|
567
607
|
* Fix string escaping
|
568
608
|
|
569
|
-
[b86fa6b | 2009-11-07
|
609
|
+
[b86fa6b | 2009-11-07 18:38:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
570
610
|
|
571
611
|
* Tons of cleanup/fixes/additions
|
572
612
|
|
573
|
-
[ee933d9 | 2009-11-07
|
613
|
+
[ee933d9 | 2009-11-07 18:38:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
574
614
|
|
575
615
|
* Implement callback results
|
576
616
|
|
577
|
-
[d6d09db | 2009-11-
|
617
|
+
[d6d09db | 2009-11-07 03:47:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
578
618
|
|
579
619
|
* Fix specs for Entry and Text for new type of :state
|
580
620
|
|
581
|
-
[130db87 | 2009-11-
|
621
|
+
[130db87 | 2009-11-07 03:34:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
582
622
|
|
583
623
|
* Remove trailing whitespace
|
584
624
|
|
585
|
-
[5fc332e | 2009-11-
|
625
|
+
[5fc332e | 2009-11-07 03:40:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
586
626
|
|
587
627
|
* Merge lians tile branch
|
588
628
|
|
589
|
-
[af36452 | 2009-11-
|
629
|
+
[af36452 | 2009-11-07 03:26:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
590
630
|
|
591
631
|
* Specs and fixes for checkbutton
|
592
632
|
|
593
|
-
[916fb38 | 2009-11-
|
633
|
+
[916fb38 | 2009-11-07 03:25:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
594
634
|
|
595
635
|
* Rename EvalResult#to_bool to to_boolean for consistency
|
596
636
|
|
597
|
-
[ac252ec | 2009-11-
|
637
|
+
[ac252ec | 2009-11-07 02:51:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
598
638
|
|
599
639
|
* Fix require of Frame spec
|
600
640
|
|
601
|
-
[46a3905 | 2009-11-
|
641
|
+
[46a3905 | 2009-11-07 02:51:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
602
642
|
|
603
643
|
* Fix implementation of Button
|
604
644
|
|
605
|
-
[93fe329 | 2009-11-
|
645
|
+
[93fe329 | 2009-11-07 02:45:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
606
646
|
|
607
647
|
* Fix Event spec
|
608
648
|
|
609
|
-
[d3e34bc | 2009-11-
|
649
|
+
[d3e34bc | 2009-11-07 02:38:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
610
650
|
|
611
651
|
* Fix Entry spec
|
612
652
|
|
613
|
-
[394ce7e | 2009-11-
|
653
|
+
[394ce7e | 2009-11-07 02:36:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
614
654
|
|
615
655
|
* Fix spec of Tk::Root
|
616
656
|
|
617
|
-
[6743f48 | 2009-11-
|
657
|
+
[6743f48 | 2009-11-07 02:35:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
618
658
|
|
619
659
|
* Fix wm spec
|
620
660
|
|
621
|
-
[674c144 | 2009-11-
|
661
|
+
[674c144 | 2009-11-07 02:31:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
622
662
|
|
623
663
|
* Root is a Toplevel
|
624
664
|
|
625
|
-
[6fb5853 | 2009-11-
|
665
|
+
[6fb5853 | 2009-11-07 02:30:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
626
666
|
|
627
667
|
* fix command name for Widget
|
628
668
|
|
629
|
-
[a30a5b5 | 2009-11-
|
669
|
+
[a30a5b5 | 2009-11-07 02:28:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
630
670
|
|
631
671
|
* Fix a couple of specs
|
632
672
|
|
633
|
-
[4e65493 | 2009-11-
|
673
|
+
[4e65493 | 2009-11-07 02:25:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
634
674
|
|
635
675
|
* Add autoloads for all widgets
|
636
676
|
|
637
|
-
[f5e17b5 | 2009-11-
|
677
|
+
[f5e17b5 | 2009-11-07 02:18:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
638
678
|
|
639
679
|
* Fix clipboard spec
|
640
680
|
|
641
|
-
[fcbd134 | 2009-11-
|
681
|
+
[fcbd134 | 2009-11-07 02:14:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
642
682
|
|
643
683
|
* Add stub specs for widgets
|
644
684
|
|
645
|
-
[25a3f3e | 2009-11-
|
685
|
+
[25a3f3e | 2009-11-07 02:14:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
646
686
|
|
647
687
|
* Little spec generator
|
648
688
|
|
649
|
-
[ecc16e5 | 2009-11-
|
689
|
+
[ecc16e5 | 2009-11-07 02:14:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
650
690
|
|
651
691
|
* Adding Rakefile and tasks
|
652
692
|
|
653
|
-
[70b07cc | 2009-11-
|
693
|
+
[70b07cc | 2009-11-07 02:01:31 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
654
694
|
|
655
695
|
* Move specs for widgets into own directory
|
656
696
|
|
657
|
-
[bb0a887 | 2009-11-
|
697
|
+
[bb0a887 | 2009-11-07 02:00:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
658
698
|
|
659
699
|
* Add last missing widget: Toplevel
|
660
700
|
|
661
|
-
[3871865 | 2009-11-
|
701
|
+
[3871865 | 2009-11-07 02:00:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
662
702
|
|
663
703
|
* Adjust gen_widget
|
664
704
|
|
665
|
-
[43f3fc9 | 2009-11-
|
705
|
+
[43f3fc9 | 2009-11-07 01:59:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
666
706
|
|
667
707
|
* Remove done commands from todo list
|
668
708
|
|
669
|
-
[ef8b66f | 2009-11-
|
709
|
+
[ef8b66f | 2009-11-07 01:55:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
670
710
|
|
671
711
|
* Simplify and fix all Widget subclasses by doing smarter initialization in Widget
|
672
712
|
|
673
|
-
[075f615 | 2009-11-
|
713
|
+
[075f615 | 2009-11-07 01:31:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
674
714
|
|
675
715
|
* Clean up tk.rb, fix lazy init
|
676
716
|
|
677
|
-
[3c33177 | 2009-11-
|
717
|
+
[3c33177 | 2009-11-07 00:55:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
678
718
|
|
679
719
|
* Support for Variable initial value
|
680
720
|
|
681
|
-
[296f181 | 2009-11-
|
721
|
+
[296f181 | 2009-11-07 00:55:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
682
722
|
|
683
723
|
* Lazy Tk.init
|
684
724
|
|
685
|
-
[7b886bc | 2009-11-
|
725
|
+
[7b886bc | 2009-11-07 00:54:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
686
726
|
|
687
727
|
* Adding Tk::Wait
|
688
728
|
|
689
|
-
[f9b45d4 | 2009-11-06
|
729
|
+
[f9b45d4 | 2009-11-06 19:29:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
690
730
|
|
691
731
|
* Add various methods for variables
|
692
732
|
|
693
|
-
[45b77db | 2009-11-06
|
733
|
+
[45b77db | 2009-11-06 19:00:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
694
734
|
|
695
735
|
* Add the tk_text(Copy|Cut|Paste) commands to Text widget
|
696
736
|
|
697
|
-
[30d7f9b | 2009-11-06
|
737
|
+
[30d7f9b | 2009-11-06 18:58:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
698
738
|
|
699
739
|
* Add Tk.set_palette
|
700
740
|
|
701
|
-
[ee9c5ab | 2009-11-06
|
741
|
+
[ee9c5ab | 2009-11-06 18:41:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
702
742
|
|
703
743
|
* Add Tk.popup and Proc#to_tcl
|
704
744
|
|
705
|
-
[ae09fd2 | 2009-11-06
|
745
|
+
[ae09fd2 | 2009-11-06 18:24:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
706
746
|
|
707
747
|
* Fix Variable to work with newly added Tk.option_menu
|
708
748
|
|
709
|
-
[b1cec70 | 2009-11-06
|
749
|
+
[b1cec70 | 2009-11-06 17:38:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
710
750
|
|
711
751
|
* Add Tk::Variable
|
712
752
|
|
713
|
-
[2c83cba | 2009-11-
|
753
|
+
[2c83cba | 2009-11-06 01:37:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
714
754
|
|
715
755
|
* Add Tk.message_box
|
716
756
|
|
717
|
-
[2013e0d | 2009-11-05
|
757
|
+
[2013e0d | 2009-11-05 20:43:32 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
718
758
|
|
719
759
|
* Implement a couple of tk_ commands
|
720
760
|
|
721
|
-
[3c63589 | 2009-11-05
|
761
|
+
[3c63589 | 2009-11-05 18:15:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
722
762
|
|
723
763
|
* Add a few doc snippets
|
724
764
|
|
725
|
-
[02eb18a | 2009-11-05
|
765
|
+
[02eb18a | 2009-11-05 18:14:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
726
766
|
|
727
767
|
* Add bin/rwish not very functional yet
|
728
768
|
|
729
|
-
[02abfa7 | 2009-11-05
|
769
|
+
[02abfa7 | 2009-11-05 17:50:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
730
770
|
|
731
771
|
* Fix syntax and implementation of all the skeleton widgets
|
732
772
|
|
733
|
-
[4f73ed2 | 2009-11-05
|
773
|
+
[4f73ed2 | 2009-11-05 17:49:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
734
774
|
|
735
775
|
* Improve Configure
|
736
776
|
|
737
|
-
[cc45b1a | 2009-11-05
|
777
|
+
[cc45b1a | 2009-11-05 16:15:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
738
778
|
|
739
779
|
* translate methods for listbox
|
740
780
|
|
741
|
-
[0f52465 | 2009-11-05
|
781
|
+
[0f52465 | 2009-11-05 12:28:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
742
782
|
|
743
783
|
* Make things run on JRuby
|
744
784
|
|
745
|
-
[92fe70e | 2009-11-04
|
785
|
+
[92fe70e | 2009-11-04 19:27:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
746
786
|
|
747
787
|
* update todo list
|
748
788
|
|
749
|
-
[9cd3c02 | 2009-11-04
|
789
|
+
[9cd3c02 | 2009-11-04 19:27:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
750
790
|
|
751
791
|
* Add Text#see
|
752
792
|
|
753
|
-
[db49a21 | 2009-11-04
|
793
|
+
[db49a21 | 2009-11-04 19:24:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
754
794
|
|
755
795
|
* Fix specs for Text
|
756
796
|
|
757
|
-
[515b2bd | 2009-11-04
|
797
|
+
[515b2bd | 2009-11-04 19:22:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
758
798
|
|
759
799
|
* Implement Text#search
|
760
800
|
|
761
|
-
[ae0d81d | 2009-11-04
|
801
|
+
[ae0d81d | 2009-11-04 17:31:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
762
802
|
|
763
803
|
* Improve canvas items and extract them
|
764
804
|
|
765
|
-
[a7999ed | 2009-11-04
|
805
|
+
[a7999ed | 2009-11-04 17:06:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
766
806
|
|
767
807
|
* Lots of improvments for Canvas and widgets
|
768
808
|
|
769
|
-
[5e0ec52 | 2009-11-03
|
809
|
+
[5e0ec52 | 2009-11-03 18:56:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
770
810
|
|
771
811
|
* Implemented Canvas
|
772
812
|
|
773
|
-
[914224c | 2009-11-02
|
813
|
+
[914224c | 2009-11-02 23:48:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
774
814
|
|
775
815
|
* Add skeleton for most of the missing old commands together with the script used to generate them
|
776
816
|
|
777
|
-
[1f26b50 | 2009-11-02
|
817
|
+
[1f26b50 | 2009-11-02 23:20:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
778
818
|
|
779
819
|
* Add frame widget
|
780
820
|
|
781
|
-
[007f54b | 2009-11-02
|
821
|
+
[007f54b | 2009-11-02 23:18:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
782
822
|
|
783
823
|
* Add Frame widget
|
784
824
|
|
785
|
-
[015cb53 | 2009-11-02
|
825
|
+
[015cb53 | 2009-11-02 23:12:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
786
826
|
|
787
827
|
* Add Grab command
|
788
828
|
|
789
|
-
[1ef88d5 | 2009-11-02
|
829
|
+
[1ef88d5 | 2009-11-02 22:57:59 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
790
830
|
|
791
831
|
* Fix text widget
|
792
832
|
|
793
|
-
[854bf75 | 2009-11-02
|
833
|
+
[854bf75 | 2009-11-02 22:57:48 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
794
834
|
|
795
835
|
* Add image command definition
|
796
836
|
|
797
|
-
[602b7a6 | 2009-11-02
|
837
|
+
[602b7a6 | 2009-11-02 22:41:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
798
838
|
|
799
839
|
* Add Winfo command
|
800
840
|
|
801
|
-
[78e96e9 | 2009-11-02
|
841
|
+
[78e96e9 | 2009-11-02 15:58:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
802
842
|
|
803
843
|
* Add to_sym?
|
804
844
|
|
805
|
-
[d8d2f29 | 2009-11-02
|
845
|
+
[d8d2f29 | 2009-11-02 15:57:04 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
806
846
|
|
807
847
|
* Add a lot more specs and bugfixes for WM command
|
808
848
|
|
809
|
-
[4970b5a | 2009-11-02
|
849
|
+
[4970b5a | 2009-11-02 14:42:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
810
850
|
|
811
851
|
* Add WM command, still needs a ton of specs
|
812
852
|
|
813
|
-
[ddcf075 | 2009-11-02
|
853
|
+
[ddcf075 | 2009-11-02 14:41:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
814
854
|
|
815
855
|
* Fix Pack.pack
|
816
856
|
|
817
|
-
[114ae24 | 2009-11-01
|
857
|
+
[114ae24 | 2009-11-01 15:59:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
818
858
|
|
819
859
|
* Add lower/raise commands
|
820
860
|
|
821
|
-
[7539f57 | 2009-11-01
|
861
|
+
[7539f57 | 2009-11-01 15:52:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
822
862
|
|
823
863
|
* Add Font command
|
824
864
|
|
825
|
-
[0c02ed3 | 2009-11-01
|
865
|
+
[0c02ed3 | 2009-11-01 15:51:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
826
866
|
|
827
867
|
* Improve rb2tcl conversion a bit
|
828
868
|
|
829
|
-
[694a7db | 2009-11-01
|
869
|
+
[694a7db | 2009-11-01 15:19:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
830
870
|
|
831
871
|
* Make sure strings returned from Tcl don't have binary encoding
|
832
872
|
|
833
|
-
[2d3d1c1 | 2009-11-01
|
873
|
+
[2d3d1c1 | 2009-11-01 14:46:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
834
874
|
|
835
875
|
* Add Selection
|
836
876
|
|
837
|
-
[657d76e | 2009-11-01
|
877
|
+
[657d76e | 2009-11-01 14:20:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
838
878
|
|
839
879
|
* Simplify life by use of evil core extensions
|
840
880
|
|
841
|
-
[c05fe8e | 2009-11-01
|
881
|
+
[c05fe8e | 2009-11-01 13:23:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
842
882
|
|
843
883
|
* Finish Clipboard
|
844
884
|
|
845
|
-
[b2c3ba1 | 2009-10-29
|
885
|
+
[b2c3ba1 | 2009-10-29 12:09:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
846
886
|
|
847
887
|
* Fix spec for dlineinfo
|
848
888
|
|
849
|
-
[5305af7 | 2009-10-31
|
889
|
+
[5305af7 | 2009-10-31 18:49:03 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
850
890
|
|
851
891
|
* Fix the various example
|
852
892
|
|
853
|
-
[9ea10a4 | 2009-10-31
|
893
|
+
[9ea10a4 | 2009-10-31 18:48:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
854
894
|
|
855
895
|
* Update todo list
|
856
896
|
|
857
|
-
[4f33883 | 2009-10-31
|
897
|
+
[4f33883 | 2009-10-31 18:48:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
858
898
|
|
859
899
|
* Add Clipboard command
|
860
900
|
|
861
|
-
[aee3524 | 2009-10-31
|
901
|
+
[aee3524 | 2009-10-31 18:27:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
862
902
|
|
863
903
|
* Add README and licenses
|
864
904
|
|
865
|
-
[11e3067 | 2009-10-31
|
905
|
+
[11e3067 | 2009-10-31 18:27:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
866
906
|
|
867
907
|
* Add a bit more to the Grid command, still no specs
|
868
908
|
|
869
|
-
[4b814d5 | 2009-10-31
|
909
|
+
[4b814d5 | 2009-10-31 18:26:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
870
910
|
|
871
911
|
* Make event handling a bit more consistent
|
872
912
|
|
873
|
-
[38f579f | 2009-10-
|
913
|
+
[38f579f | 2009-10-31 01:11:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
874
914
|
|
875
915
|
* Add TODO.md
|
876
916
|
|
877
|
-
[dee8b7f | 2009-10-
|
917
|
+
[dee8b7f | 2009-10-31 01:10:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
878
918
|
|
879
919
|
* Add grid skeleton
|
880
920
|
|
881
|
-
[14a9f31 | 2009-10-
|
921
|
+
[14a9f31 | 2009-10-31 01:09:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
882
922
|
|
883
923
|
* Add Place command
|
884
924
|
|
885
|
-
[68b6193 | 2009-10-
|
925
|
+
[68b6193 | 2009-10-31 00:41:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
886
926
|
|
887
927
|
* minor
|
888
928
|
|
889
|
-
[51035c3 | 2009-10-
|
929
|
+
[51035c3 | 2009-10-31 00:24:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
890
930
|
|
891
931
|
* Add specs and better implementation for Pack
|
892
932
|
|
893
|
-
[904676c | 2009-10-30
|
933
|
+
[904676c | 2009-10-30 23:59:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
894
934
|
|
895
935
|
* cleanup
|
896
936
|
|
897
|
-
[c231071 | 2009-10-30
|
937
|
+
[c231071 | 2009-10-30 23:59:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
898
938
|
|
899
939
|
* Add methods for Pack
|
900
940
|
|
901
|
-
[0e1b0c9 | 2009-10-30
|
941
|
+
[0e1b0c9 | 2009-10-30 23:54:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
902
942
|
|
903
943
|
* Make a dummy @interp that reminds you of calling Tk.init
|
904
944
|
|
905
|
-
[8153f75 | 2009-10-30
|
945
|
+
[8153f75 | 2009-10-30 22:45:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
906
946
|
|
907
947
|
* Fix conversion of array to tcl
|
908
948
|
|
909
|
-
[fa36ee1 | 2009-10-30
|
949
|
+
[fa36ee1 | 2009-10-30 22:44:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
910
950
|
|
911
951
|
* Put command requires into a single place
|
912
952
|
|
913
|
-
[35f5af2 | 2009-10-30
|
953
|
+
[35f5af2 | 2009-10-30 22:44:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
914
954
|
|
915
955
|
* Add bindtags command
|
916
956
|
|
917
|
-
[6b9b494 | 2009-10-30
|
957
|
+
[6b9b494 | 2009-10-30 22:32:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
918
958
|
|
919
959
|
* Fix syntax error
|
920
960
|
|
921
|
-
[04ab383 | 2009-10-30
|
961
|
+
[04ab383 | 2009-10-30 22:14:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
922
962
|
|
923
963
|
* Add bell command
|
924
964
|
|
925
|
-
[2ffc7cd | 2009-10-30
|
965
|
+
[2ffc7cd | 2009-10-30 22:08:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
926
966
|
|
927
967
|
* add the last missing methods to Entry
|
928
968
|
|
929
|
-
[c80e660 | 2009-10-30
|
969
|
+
[c80e660 | 2009-10-30 17:08:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
930
970
|
|
931
971
|
* Clean the mess around command options a bit
|
932
972
|
|
933
|
-
[aedf57e | 2009-10-30
|
973
|
+
[aedf57e | 2009-10-30 17:07:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
934
974
|
|
935
975
|
* Now we can finally give return values to tcl from our callbacks
|
936
976
|
|
937
|
-
[bc19a7e | 2009-10-30
|
977
|
+
[bc19a7e | 2009-10-30 16:18:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
938
978
|
|
939
979
|
* Automate the event spec, still shows an annoying window because else events aren't generated it seems
|
940
980
|
|
941
|
-
[ad21abb | 2009-10-30
|
981
|
+
[ad21abb | 2009-10-30 16:14:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
942
982
|
|
943
983
|
* So pure ruby event callbacks finally work.
|
944
984
|
|
945
|
-
[53fb864 | 2009-10-30
|
985
|
+
[53fb864 | 2009-10-30 16:08:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
946
986
|
|
947
987
|
* Add a ton of methods and specs for Entry widget
|
948
988
|
|
949
|
-
[bdb58e7 | 2009-10-30
|
989
|
+
[bdb58e7 | 2009-10-30 16:07:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
950
990
|
|
951
991
|
* Seems like the segfaults from event/callback calls are caused by Ruby GC of the Method objects
|
952
992
|
|
953
|
-
[720d71c | 2009-10-30
|
993
|
+
[720d71c | 2009-10-30 16:07:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
954
994
|
|
955
995
|
* Nicer inspect for Obj
|
956
996
|
|
957
|
-
[e0e38a6 | 2009-10-30
|
997
|
+
[e0e38a6 | 2009-10-30 16:07:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
958
998
|
|
959
999
|
* Improve configuration, prepare for intelligent handling of validation callbacks
|
960
1000
|
|
961
|
-
[d99d84f | 2009-10-30
|
1001
|
+
[d99d84f | 2009-10-30 14:42:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
962
1002
|
|
963
1003
|
* minor
|
964
1004
|
|
965
|
-
[5aecdcf | 2009-10-30
|
1005
|
+
[5aecdcf | 2009-10-30 14:42:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
966
1006
|
|
967
1007
|
* Give useful exception messages on eval failure
|
968
1008
|
|
969
|
-
[3345745 | 2009-10-30
|
1009
|
+
[3345745 | 2009-10-30 14:42:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
970
1010
|
|
971
1011
|
* put configure into own module
|
972
1012
|
|
973
|
-
[c586e1b | 2009-10-
|
1013
|
+
[c586e1b | 2009-10-30 02:35:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
974
1014
|
|
975
1015
|
* Add focus command
|
976
1016
|
|
977
|
-
[42cb290 | 2009-10-
|
1017
|
+
[42cb290 | 2009-10-30 02:34:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
978
1018
|
|
979
1019
|
* Seems like we cannot handle events using C commands, so we go (a slightly improved) tcl based way again
|
980
1020
|
|
981
|
-
[38a36ac | 2009-10-
|
1021
|
+
[38a36ac | 2009-10-30 00:46:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
982
1022
|
|
983
1023
|
* Get rid of some warnings
|
984
1024
|
|
985
|
-
[bb100fd | 2009-10-
|
1025
|
+
[bb100fd | 2009-10-30 00:36:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
986
1026
|
|
987
1027
|
* Move bulk of Tk module into own file
|
988
1028
|
|
989
|
-
[ac1c2cd | 2009-10-
|
1029
|
+
[ac1c2cd | 2009-10-30 00:34:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
990
1030
|
|
991
1031
|
* Restructure
|
992
1032
|
|
993
|
-
[a62fb50 | 2009-10-
|
1033
|
+
[a62fb50 | 2009-10-30 00:13:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
994
1034
|
|
995
1035
|
* Handle :command for Button.new
|
996
1036
|
|
997
|
-
[8b75e87 | 2009-10-
|
1037
|
+
[8b75e87 | 2009-10-30 00:13:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
998
1038
|
|
999
1039
|
* Fix segfault through autoload of Cget
|
1000
1040
|
|
1001
|
-
[d071ebd | 2009-10-
|
1041
|
+
[d071ebd | 2009-10-30 00:02:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1002
1042
|
|
1003
1043
|
* Lots of new stuff, pure ruby<->tcl callbacks brought to you by FFI
|
1004
1044
|
|
1005
|
-
[30a3f3e | 2009-10-29
|
1045
|
+
[30a3f3e | 2009-10-29 15:32:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1006
1046
|
|
1007
1047
|
* Use namespace for our tcl stuff
|
1008
1048
|
|
1009
|
-
[88bc36b | 2009-10-29
|
1049
|
+
[88bc36b | 2009-10-29 15:06:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1010
1050
|
|
1011
1051
|
* Improve upon FFI Struct
|
1012
1052
|
|
1013
|
-
[331cf96 | 2009-10-
|
1053
|
+
[331cf96 | 2009-10-29 05:38:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1014
1054
|
|
1015
1055
|
* Use Tcl_Obj type information to convert when possible
|
1016
1056
|
|
1017
|
-
[710219b | 2009-10-
|
1057
|
+
[710219b | 2009-10-29 00:38:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1018
1058
|
|
1019
1059
|
* Fix EvalResult
|
1020
1060
|
|
1021
|
-
[00f05c5 | 2009-10-
|
1061
|
+
[00f05c5 | 2009-10-29 00:37:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1022
1062
|
|
1023
1063
|
* And more methods of Tk::Text implemented with proper specs
|
1024
1064
|
|
1025
|
-
[a350658 | 2009-10-28
|
1065
|
+
[a350658 | 2009-10-28 23:21:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1026
1066
|
|
1027
1067
|
* A couple of methods for Text with some specs
|
1028
1068
|
|
1029
|
-
[b0c6a3e | 2009-10-28
|
1069
|
+
[b0c6a3e | 2009-10-28 23:21:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1030
1070
|
|
1031
1071
|
* Only show eval input when $DEBUG is on
|
1032
1072
|
|
1033
|
-
[f02795c | 2009-10-28
|
1073
|
+
[f02795c | 2009-10-28 23:20:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1034
1074
|
|
1035
1075
|
* A lot of improvements around result handling
|
1036
1076
|
|
1037
|
-
[54b5265 | 2009-10-28
|
1077
|
+
[54b5265 | 2009-10-28 13:34:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1038
1078
|
|
1039
1079
|
* Lots of improvements again
|
1040
1080
|
|
1041
|
-
[24485d5 | 2009-10-27
|
1081
|
+
[24485d5 | 2009-10-27 22:56:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1042
1082
|
|
1043
1083
|
* First cut of the new Tk
|
1044
1084
|
|
1045
|
-
[48de499 | 2009-10-27
|
1085
|
+
[48de499 | 2009-10-27 12:13:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1046
1086
|
|
1047
1087
|
* Restructure for new approach
|
1048
1088
|
|
1049
|
-
[709324d | 2009-09-14
|
1089
|
+
[709324d | 2009-09-14 17:22:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
1050
1090
|
|
1051
1091
|
* First commit
|
1052
1092
|
|