Method | Description | |
---|---|---|
Button ( int x, int y, string s ) : System |
Public constructor, creates a button based on the given text at the given position. The size of the button is computed based on the text length. This button is not a default button. |
|
Button ( int x, int y, string s, bool is_default ) : System |
Public constructor, creates a button based on the given text at the given position. If the value for is_default is true, a special decoration is used, and the enter key on a dialog would implicitly activate this button. |
|
Button ( string s ) : System |
Public constructor, creates a button based on the given text at position 0,0 The size of the button is computed based on the text length. This button is not a default button. |
|
Button ( string s, bool is_default ) : System |
Public constructor, creates a button based on the given text. If the value for is_default is true, a special decoration is used, and the enter key on a dialog would implicitly activate this button. |
|
PositionCursor ( ) : void | ||
ProcessColdKey ( int key ) : bool | ||
ProcessHotKey ( int key ) : bool | ||
ProcessKey ( int c ) : bool | ||
ProcessMouse ( |
||
Redraw ( ) : void |
Method | Description | |
---|---|---|
CheckKey ( int key ) : bool |
public Button ( int x, int y, string s ) : System | ||
x | int | |
y | int | |
s | string | |
return | System |
public Button ( int x, int y, string s, bool is_default ) : System | ||
x | int | |
y | int | |
s | string | |
is_default | bool | |
return | System |
public Button ( string s, bool is_default ) : System | ||
s | string | |
is_default | bool | |
return | System |