Class: RubyCurses::TableColumnModel
Overview
TCM
Direct Known Subclasses
Instance Method Summary collapse
- #add_column(tc) ⇒ Object
- #column(ix) ⇒ Object
- #column_count ⇒ Object
- #column_index(identifier) ⇒ Object
- #column_selection_allowed ⇒ Object
- #columns ⇒ Object
- #get_selection_model ⇒ Object
- #move_column(ix, newix) ⇒ Object
- #remove_column(tc) ⇒ Object
- #selected_column_count ⇒ Object
- #selected_columns ⇒ Object
- #set_selection_model(lsm) ⇒ Object
- #total_column_width ⇒ Object
Instance Method Details
#add_column(tc) ⇒ Object
1339 1340 |
# File 'lib/rbcurse/rtable.rb', line 1339 def add_column tc end |
#column(ix) ⇒ Object
1313 1314 1315 |
# File 'lib/rbcurse/rtable.rb', line 1313 def column ix nil end |
#column_count ⇒ Object
1319 1320 1321 |
# File 'lib/rbcurse/rtable.rb', line 1319 def column_count 0 end |
#column_index(identifier) ⇒ Object
1345 1346 1347 |
# File 'lib/rbcurse/rtable.rb', line 1345 def column_index identifier nil end |
#column_selection_allowed ⇒ Object
1322 1323 1324 |
# File 'lib/rbcurse/rtable.rb', line 1322 def column_selection_allowed false end |
#columns ⇒ Object
1316 1317 1318 |
# File 'lib/rbcurse/rtable.rb', line 1316 def columns nil end |
#get_selection_model ⇒ Object
1334 1335 1336 |
# File 'lib/rbcurse/rtable.rb', line 1334 def get_selection_model nil end |
#move_column(ix, newix) ⇒ Object
1343 1344 |
# File 'lib/rbcurse/rtable.rb', line 1343 def move_column ix, newix end |
#remove_column(tc) ⇒ Object
1341 1342 |
# File 'lib/rbcurse/rtable.rb', line 1341 def remove_column tc end |
#selected_column_count ⇒ Object
1325 1326 1327 |
# File 'lib/rbcurse/rtable.rb', line 1325 def selected_column_count 0 end |
#selected_columns ⇒ Object
1328 1329 1330 |
# File 'lib/rbcurse/rtable.rb', line 1328 def selected_columns nil end |
#set_selection_model(lsm) ⇒ Object
1337 1338 |
# File 'lib/rbcurse/rtable.rb', line 1337 def set_selection_model lsm end |
#total_column_width ⇒ Object
1331 1332 1333 |
# File 'lib/rbcurse/rtable.rb', line 1331 def total_column_width -1 end |