#include <TransitionPropertiesDlgImpl.h>
Inheritance diagram for TransitionPropertiesDlgImpl::
Public Slots | |
void | validate () |
Validates the strings entered as the transition inputs and outputs. | |
void | binaryClicked () |
Called when the 'Binary' button is clicked. | |
void | asciiClicked () |
Called when the 'ASCII' button is clicked. | |
Public Methods | |
TransitionPropertiesDlgImpl (QWidget *parent=0, const char *name=0, bool modal=FALSE, WFlags fl=0) | |
Constructs a TransitionPropertiesDlgImpl which is a child of 'parent', with the name 'name' and widget flags set to 'f'. More... | |
~TransitionPropertiesDlgImpl () | |
Destroys the object and frees any allocated resources. | |
QString | getInputs () |
Returns the input condition string. | |
void | setInputs (QString s) |
Sets the input condition string. | |
QString | getOutputs () |
Returns the output condition string. | |
void | setOutputs (QString s) |
Sets the outputs condition string. | |
QString | getDescription () |
Returns the string of the desription field. | |
void | setDescription (QString s) |
Sets the string of the description field. | |
int | getType () |
Returns the type of the transition. | |
void | setType (int t) |
Sets the type of the transition. | |
void | setBinMaxLength (int in, int out) |
Sets the maximum number of bits allowed for the inputs and outputs. | |
void | selectFirst () |
Selects first field in dialog and sets the focus. | |
void | setInputMaxLength (int l) |
Sets the maximum length for the inputs field. | |
void | setOutputMaxLength (int l) |
Sets the maximum length for the outputs field. | |
Private Attributes | |
int | binmax_in |
Maximum length of the inputs (in bits). | |
int | binmax_out |
Maximum length of the outputs (in bits). |
|
Constructs a TransitionPropertiesDlgImpl which is a child of 'parent', with the name 'name' and widget flags set to 'f'. The dialog will by default be modeless, unless you set 'modal' to TRUE to construct a modal dialog. |