#include <ndk++.h>
Inheritance diagram for NDK_XX::RadioButton:
Public Methods | |
RadioButton (Control *parent, int id, const string &title,int lines, int cols, int y, int x,int style=tabstop|notify) | |
RadioButton (Control *parent, int id, const string &title,int y, int x) | |
Protected Methods | |
void | show_state (bool ref=false) |
specialized on children | |
int | state_size () const |
specialized on children |
|
RadioButton Constructor See parameters for class Control Definition at line 562 of file ndk++.cc. References NDK_XX::Control::enable_notify(), NDK_XX::ListItem::set_text(), and NDK_XX::Label::text.
00566 :ListItem(parent,id,title,lines,cols,y,x,style) 00567 { 00568 enable_notify(false); 00569 set_text(text); 00570 enable_notify(); 00571 } |
|
RadioButton Constructor See parameters for class Control Definition at line 575 of file ndk++.cc. References NDK_XX::Control::enable_notify(), NDK_XX::ListItem::set_text(), and NDK_XX::Label::text.
00578 :ListItem(parent,id,title,1,title.size()+4,y,x,tabstop|notify) 00579 { 00580 enable_notify(false); 00581 set_text(text); 00582 enable_notify(); 00583 } |
|
specialized on children
Reimplemented from NDK_XX::ListItem. Definition at line 945 of file ndk++.h.
00945 : public MenuItem 00946 //{ 00947 //protected: 00948 //public: 00949 // ClosingMarkItem() : MenuItem() { } 00950 // ~ClosingMarkItem(){ 00951 // } |
|
specialized on children
Reimplemented from NDK_XX::ListItem. Definition at line 953 of file ndk++.h.
00959 : public MenuItemData {
|