Class: Fox::FXComboBox
- Inherits:
-
Object
- Object
- Fox::FXComboBox
- Includes:
- Enumerable
- Defined in:
- lib/fox16/aliases.rb,
lib/fox16/iterators.rb
Instance Method Summary (collapse)
-
- (Object) comboStyle(*args)
:nodoc:.
-
- (Object) comboStyle=(*args)
:nodoc:.
-
- (Object) currentItem(*args)
:nodoc:.
-
- (Object) currentItem=(*args)
:nodoc:.
-
- (Object) each
Calls block once for each item in the list, passing the item's text and user data as parameters.
-
- (Object) editable=(*args)
:nodoc:.
-
- (Boolean) editable?(*args)
:nodoc:.
-
- (Object) first
Override Enumerable#first with FXWindow#first for backwards compatibility.
-
- (Object) font(*args)
:nodoc:.
-
- (Object) font=(*args)
:nodoc:.
-
- (Object) helpText(*args)
:nodoc:.
-
- (Object) helpText=(*args)
:nodoc:.
-
- (Boolean) itemCurrent?(*args)
:nodoc:.
-
- (Object) numColumns(*args)
:nodoc:.
-
- (Object) numColumns=(*args)
:nodoc:.
-
- (Object) numItems(*args)
:nodoc:.
-
- (Object) numVisible(*args)
:nodoc:.
-
- (Object) numVisible=(*args)
:nodoc:.
-
- (Object) selBackColor(*args)
:nodoc:.
-
- (Object) selBackColor=(*args)
:nodoc:.
-
- (Object) selTextColor(*args)
:nodoc:.
-
- (Object) selTextColor=(*args)
:nodoc:.
-
- (Object) text(*args)
:nodoc:.
-
- (Object) text=(*args)
:nodoc:.
-
- (Object) textColor(*args)
:nodoc:.
-
- (Object) textColor=(*args)
:nodoc:.
-
- (Object) tipText(*args)
:nodoc:.
-
- (Object) tipText=(*args)
:nodoc:.
-
- (Object) to_s(*args)
:nodoc:.
Instance Method Details
- (Object) comboStyle(*args)
:nodoc:
648 649 650 |
# File 'lib/fox16/aliases.rb', line 648 def comboStyle(*args) # :nodoc: getComboStyle(*args) end |
- (Object) comboStyle=(*args)
:nodoc:
645 646 647 |
# File 'lib/fox16/aliases.rb', line 645 def comboStyle=(*args) # :nodoc: setComboStyle(*args) end |
- (Object) currentItem(*args)
:nodoc:
636 637 638 |
# File 'lib/fox16/aliases.rb', line 636 def currentItem(*args) # :nodoc: getCurrentItem(*args) end |
- (Object) currentItem=(*args)
:nodoc:
633 634 635 |
# File 'lib/fox16/aliases.rb', line 633 def currentItem=(*args) # :nodoc: setCurrentItem(*args) end |
- (Object) each
Calls block once for each item in the list, passing the item's text and user data as parameters.
18 19 20 21 22 23 |
# File 'lib/fox16/iterators.rb', line 18 def each # :yields: itemText, itemData 0.upto(numItems - 1) do |i| yield getItemText(i), getItemData(i) end self end |
- (Object) editable=(*args)
:nodoc:
606 607 608 |
# File 'lib/fox16/aliases.rb', line 606 def editable=(*args) # :nodoc: setEditable(*args) end |
- (Boolean) editable?(*args)
:nodoc:
603 604 605 |
# File 'lib/fox16/aliases.rb', line 603 def editable?(*args) # :nodoc: isEditable(*args) end |
- (Object) first
Override Enumerable#first with FXWindow#first for backwards compatibility.
10 11 12 |
# File 'lib/fox16/iterators.rb', line 10 def first getFirst end |
- (Object) font(*args)
:nodoc:
642 643 644 |
# File 'lib/fox16/aliases.rb', line 642 def font(*args) # :nodoc: getFont(*args) end |
- (Object) font=(*args)
:nodoc:
639 640 641 |
# File 'lib/fox16/aliases.rb', line 639 def font=(*args) # :nodoc: setFont(*args) end |
- (Object) helpText(*args)
:nodoc:
672 673 674 |
# File 'lib/fox16/aliases.rb', line 672 def helpText(*args) # :nodoc: getHelpText(*args) end |
- (Object) helpText=(*args)
:nodoc:
669 670 671 |
# File 'lib/fox16/aliases.rb', line 669 def helpText=(*args) # :nodoc: setHelpText(*args) end |
- (Boolean) itemCurrent?(*args)
:nodoc:
681 682 683 |
# File 'lib/fox16/aliases.rb', line 681 def itemCurrent?(*args) # :nodoc: isItemCurrent(*args) end |
- (Object) numColumns(*args)
:nodoc:
621 622 623 |
# File 'lib/fox16/aliases.rb', line 621 def numColumns(*args) # :nodoc: getNumColumns(*args) end |
- (Object) numColumns=(*args)
:nodoc:
618 619 620 |
# File 'lib/fox16/aliases.rb', line 618 def numColumns=(*args) # :nodoc: setNumColumns(*args) end |
- (Object) numItems(*args)
:nodoc:
624 625 626 |
# File 'lib/fox16/aliases.rb', line 624 def numItems(*args) # :nodoc: getNumItems(*args) end |
- (Object) numVisible(*args)
:nodoc:
627 628 629 |
# File 'lib/fox16/aliases.rb', line 627 def numVisible(*args) # :nodoc: getNumVisible(*args) end |
- (Object) numVisible=(*args)
:nodoc:
630 631 632 |
# File 'lib/fox16/aliases.rb', line 630 def numVisible=(*args) # :nodoc: setNumVisible(*args) end |
- (Object) selBackColor(*args)
:nodoc:
660 661 662 |
# File 'lib/fox16/aliases.rb', line 660 def selBackColor(*args) # :nodoc: getSelBackColor(*args) end |
- (Object) selBackColor=(*args)
:nodoc:
657 658 659 |
# File 'lib/fox16/aliases.rb', line 657 def selBackColor=(*args) # :nodoc: setSelBackColor(*args) end |
- (Object) selTextColor(*args)
:nodoc:
666 667 668 |
# File 'lib/fox16/aliases.rb', line 666 def selTextColor(*args) # :nodoc: getSelTextColor(*args) end |
- (Object) selTextColor=(*args)
:nodoc:
663 664 665 |
# File 'lib/fox16/aliases.rb', line 663 def selTextColor=(*args) # :nodoc: setSelTextColor(*args) end |
- (Object) text(*args)
:nodoc:
612 613 614 |
# File 'lib/fox16/aliases.rb', line 612 def text(*args) # :nodoc: getText(*args) end |
- (Object) text=(*args)
:nodoc:
609 610 611 |
# File 'lib/fox16/aliases.rb', line 609 def text=(*args) # :nodoc: setText(*args) end |
- (Object) textColor(*args)
:nodoc:
654 655 656 |
# File 'lib/fox16/aliases.rb', line 654 def textColor(*args) # :nodoc: getTextColor(*args) end |
- (Object) textColor=(*args)
:nodoc:
651 652 653 |
# File 'lib/fox16/aliases.rb', line 651 def textColor=(*args) # :nodoc: setTextColor(*args) end |
- (Object) tipText(*args)
:nodoc:
678 679 680 |
# File 'lib/fox16/aliases.rb', line 678 def tipText(*args) # :nodoc: getTipText(*args) end |
- (Object) tipText=(*args)
:nodoc:
675 676 677 |
# File 'lib/fox16/aliases.rb', line 675 def tipText=(*args) # :nodoc: setTipText(*args) end |
- (Object) to_s(*args)
:nodoc:
615 616 617 |
# File 'lib/fox16/aliases.rb', line 615 def to_s(*args) # :nodoc: getText(*args) end |