Class: Wx::HeaderColumnSimple
- Inherits:
-
SettableHeaderColumn
- Object
- HeaderColumn
- SettableHeaderColumn
- Wx::HeaderColumnSimple
- Defined in:
- lib/wx/doc/gen/header_ctrl.rb
Overview
Simple container for the information about the column.
This is a concrete class implementing all SettableHeaderColumn class methods in a trivial way, i.e. by just storing the information in the object itself. It is used by and with HeaderCtrlSimple, e.g.
header = Wx::HeaderCtrlSimple.new(...)
col = Wx::HeaderColumnSimple.new('Title')
col.set_width(100)
col.set_sortable(100)
header.append_column(col)
Category: Controls
Instance Method Summary collapse
-
#get_alignment ⇒ Wx::Alignment
(also: #alignment)
Trivial implementations of the base class pure virtual functions.
-
#get_bitmap ⇒ Wx::Bitmap
(also: #bitmap)
Trivial implementations of the base class pure virtual functions.
-
#get_bitmap_bundle ⇒ Wx::BitmapBundle
(also: #bitmap_bundle)
Trivial implementations of the base class pure virtual functions.
-
#get_flags ⇒ Integer
(also: #flags)
Trivial implementations of the base class pure virtual functions.
-
#get_min_width ⇒ Integer
(also: #min_width)
Trivial implementations of the base class pure virtual functions.
-
#get_title ⇒ String
(also: #title)
Trivial implementations of the base class pure virtual functions.
-
#get_width ⇒ Integer
(also: #width)
Trivial implementations of the base class pure virtual functions.
-
#initialize(*args) ⇒ HeaderColumnSimple
constructor
A new instance of HeaderColumnSimple.
-
#is_sort_key ⇒ Boolean
(also: #sort_key?)
Trivial implementations of the base class pure virtual functions.
-
#is_sort_order_ascending ⇒ Boolean
(also: #sort_order_ascending?)
Trivial implementations of the base class pure virtual functions.
-
#set_alignment(align) ⇒ void
(also: #alignment=)
Trivial implementations of the base class pure virtual functions.
-
#set_bitmap(bitmap) ⇒ void
(also: #bitmap=)
Trivial implementations of the base class pure virtual functions.
-
#set_flags(flags) ⇒ void
(also: #flags=)
Trivial implementations of the base class pure virtual functions.
-
#set_min_width(minWidth) ⇒ void
(also: #min_width=)
Trivial implementations of the base class pure virtual functions.
-
#set_sort_order(ascending) ⇒ void
(also: #sort_order=)
Trivial implementations of the base class pure virtual functions.
-
#set_title(title) ⇒ void
(also: #title=)
Trivial implementations of the base class pure virtual functions.
-
#set_width(width) ⇒ void
(also: #width=)
Trivial implementations of the base class pure virtual functions.
Methods inherited from SettableHeaderColumn
#change_flag, #clear_flag, #set_flag, #set_hidden, #set_reorderable, #set_resizeable, #set_sortable, #toggle_flag, #toggle_sort_order, #unset_as_sort_key
Methods inherited from HeaderColumn
#has_flag, #is_hidden, #is_reorderable, #is_resizeable, #is_shown, #is_sortable
Constructor Details
#initialize(title, width = Wx::COL_WIDTH_DEFAULT, align = Wx::Alignment::ALIGN_NOT, flags = Wx::COL_DEFAULT_FLAGS) ⇒ Wx::HeaderColumnSimple #initialize(bitmap, width = Wx::COL_WIDTH_DEFAULT, align = Wx::Alignment::ALIGN_CENTER, flags = Wx::COL_DEFAULT_FLAGS) ⇒ Wx::HeaderColumnSimple
Returns a new instance of HeaderColumnSimple.
757 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 757 def initialize(*args) end |
Instance Method Details
#get_alignment ⇒ Wx::Alignment Also known as: alignment
Trivial implementations of the base class pure virtual functions.
816 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 816 def get_alignment; end |
#get_bitmap ⇒ Wx::Bitmap Also known as: bitmap
Trivial implementations of the base class pure virtual functions.
778 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 778 def get_bitmap; end |
#get_bitmap_bundle ⇒ Wx::BitmapBundle Also known as: bitmap_bundle
Trivial implementations of the base class pure virtual functions.
783 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 783 def get_bitmap_bundle; end |
#get_flags ⇒ Integer Also known as: flags
Trivial implementations of the base class pure virtual functions.
827 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 827 def get_flags; end |
#get_min_width ⇒ Integer Also known as: min_width
Trivial implementations of the base class pure virtual functions.
805 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 805 def get_min_width; end |
#get_title ⇒ String Also known as: title
Trivial implementations of the base class pure virtual functions.
767 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 767 def get_title; end |
#get_width ⇒ Integer Also known as: width
Trivial implementations of the base class pure virtual functions.
794 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 794 def get_width; end |
#is_sort_key ⇒ Boolean Also known as: sort_key?
Trivial implementations of the base class pure virtual functions.
832 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 832 def is_sort_key; end |
#is_sort_order_ascending ⇒ Boolean Also known as: sort_order_ascending?
Trivial implementations of the base class pure virtual functions.
843 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 843 def is_sort_order_ascending; end |
#set_alignment(align) ⇒ void Also known as: alignment=
This method returns an undefined value.
Trivial implementations of the base class pure virtual functions.
811 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 811 def set_alignment(align) end |
#set_bitmap(bitmap) ⇒ void Also known as: bitmap=
This method returns an undefined value.
Trivial implementations of the base class pure virtual functions.
773 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 773 def set_bitmap(bitmap) end |
#set_flags(flags) ⇒ void Also known as: flags=
This method returns an undefined value.
Trivial implementations of the base class pure virtual functions.
822 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 822 def set_flags(flags) end |
#set_min_width(minWidth) ⇒ void Also known as: min_width=
This method returns an undefined value.
Trivial implementations of the base class pure virtual functions.
800 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 800 def set_min_width(minWidth) end |
#set_sort_order(ascending) ⇒ void Also known as: sort_order=
This method returns an undefined value.
Trivial implementations of the base class pure virtual functions.
838 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 838 def set_sort_order(ascending) end |
#set_title(title) ⇒ void Also known as: title=
This method returns an undefined value.
Trivial implementations of the base class pure virtual functions.
762 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 762 def set_title(title) end |
#set_width(width) ⇒ void Also known as: width=
This method returns an undefined value.
Trivial implementations of the base class pure virtual functions.
789 |
# File 'lib/wx/doc/gen/header_ctrl.rb', line 789 def set_width(width) end |