diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-26 15:31:55 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-26 15:31:55 +0000 |
| commit | 6dc0f848408a86c3c3fed9790b7c1e48974ef56b (patch) | |
| tree | f80f6bdeb464f3e0e077db6201b1e03658d4d533 | |
| parent | a1a8abdf5dca801da1222ffbfc041abb609e81ce (diff) | |
merges r24180 from trunk into ruby_1_9_1.
--
* ext/tk/lib/tk.rb,ext/tk/lib/tk/grid.rb: Bug fix on grid_slaves().
Extend usage pattern of grid_column()/grid_row().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@24288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | ext/tk/lib/tk.rb | 22 | ||||
| -rw-r--r-- | ext/tk/lib/tk/grid.rb | 20 | ||||
| -rw-r--r-- | version.h | 2 |
4 files changed, 41 insertions, 8 deletions
@@ -1,3 +1,8 @@ +Sat Jul 18 07:06:31 2009 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> + + * ext/tk/lib/tk.rb,ext/tk/lib/tk/grid.rb: Bug fix on grid_slaves(). + Extend usage pattern of grid_column()/grid_row(). + Sat Jul 18 06:30:35 2009 NAKAMURA Usaku <usa@ruby-lang.org> * include/ruby/win32.h: include winsock headers in extern "C++" for diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index 85c1e76f8..b3f889a98 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -5177,14 +5177,12 @@ class TkWindow<TkObject TkGrid.columnconfigure(self, index, keys) end alias grid_columnconfigure grid_columnconfig - alias grid_column grid_columnconfig def grid_rowconfig(index, keys) #tk_call('grid', 'rowconfigure', epath, index, *hash_kv(keys)) TkGrid.rowconfigure(self, index, keys) end alias grid_rowconfigure grid_rowconfig - alias grid_row grid_rowconfig def grid_columnconfiginfo(index, slot=nil) #if slot @@ -5214,6 +5212,22 @@ class TkWindow<TkObject TkGrid.rowconfiginfo(self, index, slot) end + def grid_column(index, keys=nil) + if keys.kind_of?(Hash) + grid_columnconfigure(index, keys) + else + grid_columnconfiginfo(index, keys) + end + end + + def grid_row(index, keys=nil) + if keys.kind_of?(Hash) + grid_rowconfigure(index, keys) + else + grid_rowconfiginfo(index, keys) + end + end + def grid_info() #list(tk_call('grid', 'info', epath)) TkGrid.info(self) @@ -5250,9 +5264,9 @@ class TkWindow<TkObject TkGrid.size(self) end - def grid_slaves(args) + def grid_slaves(keys = nil) #list(tk_call('grid', 'slaves', epath, *hash_kv(args))) - TkGrid.slaves(self, args) + TkGrid.slaves(self, keys) end def place(keys) diff --git a/ext/tk/lib/tk/grid.rb b/ext/tk/lib/tk/grid.rb index 0dfd7263a..24d7a790d 100644 --- a/ext/tk/lib/tk/grid.rb +++ b/ext/tk/lib/tk/grid.rb @@ -104,14 +104,12 @@ module TkGrid tk_call_without_enc("grid", 'columnconfigure', master, index, *hash_kv(args)) end - alias column columnconfigure def rowconfigure(master, index, args) # master = master.epath if master.kind_of?(TkObject) master = _epath(master) tk_call_without_enc("grid", 'rowconfigure', master, index, *hash_kv(args)) end - alias row rowconfigure def columnconfiginfo(master, index, slot=nil) # master = master.epath if master.kind_of?(TkObject) @@ -171,6 +169,22 @@ module TkGrid end end + def column(master, index, keys=nil) + if keys.kind_of?(Hash) + columnconfigure(master, index, keys) + else + columnconfiginfo(master, index, keys) + end + end + + def row(master, index, keys=nil) + if keys.kind_of?(Hash) + rowconfigure(master, index, keys) + else + rowconfiginfo(master, index, keys) + end + end + def add(widget, *args) configure(widget, *args) end @@ -228,7 +242,7 @@ module TkGrid list(tk_call_without_enc('grid', 'size', master)) end - def slaves(master, args) + def slaves(master, keys=nil) # master = master.epath if master.kind_of?(TkObject) master = _epath(master) list(tk_call_without_enc('grid', 'slaves', master, *hash_kv(args))) @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.1" -#define RUBY_PATCHLEVEL 245 +#define RUBY_PATCHLEVEL 246 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 |
