Module: Tk::BLT::Table::TableContainer
- Defined in:
- lib/tkextlib/blt/table.rb
Instance Method Summary collapse
- #blt_table_add(*args) ⇒ Object
- #blt_table_arrange ⇒ Object
- #blt_table_cget(*args) ⇒ Object
- #blt_table_configinfo(*args) ⇒ Object
- #blt_table_configure(*args) ⇒ Object
- #blt_table_current_configinfo(*args) ⇒ Object
- #blt_table_current_itemconfiginfo(*args) ⇒ Object
- #blt_table_delete(*args) ⇒ Object
- #blt_table_extents(item) ⇒ Object
- #blt_table_insert(*args) ⇒ Object
- #blt_table_insert_after(*args) ⇒ Object
- #blt_table_insert_before(*args) ⇒ Object
- #blt_table_itemcget(*args) ⇒ Object
- #blt_table_itemconfiginfo(*args) ⇒ Object
- #blt_table_itemconfigure(*args) ⇒ Object
- #blt_table_iteminfo(item) ⇒ Object
- #blt_table_join(first, last) ⇒ Object
- #blt_table_locate(x, y) ⇒ Object
- #blt_table_save ⇒ Object
- #blt_table_search(*args) ⇒ Object
- #blt_table_split(*args) ⇒ Object
Instance Method Details
#blt_table_add(*args) ⇒ Object
19 20 21 22 |
# File 'lib/tkextlib/blt/table.rb', line 19 def blt_table_add(*args) Tk::BLT::Table.add(self, *args) self end |
#blt_table_arrange ⇒ Object
24 25 26 27 |
# File 'lib/tkextlib/blt/table.rb', line 24 def blt_table_arrange() Tk::BLT::Table.arrange(self) self end |
#blt_table_cget(*args) ⇒ Object
29 30 31 |
# File 'lib/tkextlib/blt/table.rb', line 29 def blt_table_cget(*args) Tk::BLT::Table.cget(self, *args) end |
#blt_table_configinfo(*args) ⇒ Object
38 39 40 |
# File 'lib/tkextlib/blt/table.rb', line 38 def blt_table_configinfo(*args) Tk::BLT::Table.configinfo(self, *args) end |
#blt_table_configure(*args) ⇒ Object
33 34 35 36 |
# File 'lib/tkextlib/blt/table.rb', line 33 def blt_table_configure(*args) Tk::BLT::Table.configure(self, *args) self end |
#blt_table_current_configinfo(*args) ⇒ Object
42 43 44 |
# File 'lib/tkextlib/blt/table.rb', line 42 def blt_table_current_configinfo(*args) Tk::BLT::Table.current_configinfo(self, *args) end |
#blt_table_current_itemconfiginfo(*args) ⇒ Object
105 106 107 |
# File 'lib/tkextlib/blt/table.rb', line 105 def blt_table_current_itemconfiginfo(*args) Tk::BLT::Table.current_itemconfiginfo(self, *args) end |
#blt_table_delete(*args) ⇒ Object
50 51 52 53 |
# File 'lib/tkextlib/blt/table.rb', line 50 def blt_table_delete(*args) Tk::BLT::Table.delete(self, *args) self end |
#blt_table_extents(item) ⇒ Object
55 56 57 |
# File 'lib/tkextlib/blt/table.rb', line 55 def blt_table_extents(item) Tk::BLT::Table.extents(self, item) end |
#blt_table_insert(*args) ⇒ Object
59 60 61 62 |
# File 'lib/tkextlib/blt/table.rb', line 59 def blt_table_insert(*args) Tk::BLT::Table.insert(self, *args) self end |
#blt_table_insert_after(*args) ⇒ Object
69 70 71 72 |
# File 'lib/tkextlib/blt/table.rb', line 69 def blt_table_insert_after(*args) Tk::BLT::Table.insert_after(self, *args) self end |
#blt_table_insert_before(*args) ⇒ Object
64 65 66 67 |
# File 'lib/tkextlib/blt/table.rb', line 64 def blt_table_insert_before(*args) Tk::BLT::Table.insert_before(self, *args) self end |
#blt_table_itemcget(*args) ⇒ Object
92 93 94 |
# File 'lib/tkextlib/blt/table.rb', line 92 def blt_table_itemcget(*args) Tk::BLT::Table.itemcget(self, *args) end |
#blt_table_itemconfiginfo(*args) ⇒ Object
101 102 103 |
# File 'lib/tkextlib/blt/table.rb', line 101 def blt_table_itemconfiginfo(*args) Tk::BLT::Table.itemconfiginfo(self, *args) end |
#blt_table_itemconfigure(*args) ⇒ Object
96 97 98 99 |
# File 'lib/tkextlib/blt/table.rb', line 96 def blt_table_itemconfigure(*args) Tk::BLT::Table.itemconfigure(self, *args) self end |
#blt_table_iteminfo(item) ⇒ Object
109 110 111 |
# File 'lib/tkextlib/blt/table.rb', line 109 def blt_table_iteminfo(item) Tk::BLT::Table.iteminfo(self, item) end |
#blt_table_join(first, last) ⇒ Object
74 75 76 77 |
# File 'lib/tkextlib/blt/table.rb', line 74 def blt_table_join(first, last) Tk::BLT::Table.join(self, first, last) self end |
#blt_table_locate(x, y) ⇒ Object
46 47 48 |
# File 'lib/tkextlib/blt/table.rb', line 46 def blt_table_locate(x, y) Tk::BLT::Table.locate(self, x, y) end |
#blt_table_save ⇒ Object
79 80 81 |
# File 'lib/tkextlib/blt/table.rb', line 79 def blt_table_save() Tk::BLT::Table.save(self) end |
#blt_table_search(*args) ⇒ Object
83 84 85 |
# File 'lib/tkextlib/blt/table.rb', line 83 def blt_table_search(*args) Tk::BLT::Table.search(self, *args) end |
#blt_table_split(*args) ⇒ Object
87 88 89 90 |
# File 'lib/tkextlib/blt/table.rb', line 87 def blt_table_split(*args) Tk::BLT::Table.split(self, *args) self end |