#include <OptDisplayDlgImpl.h>
Inheritance diagram for OptDisplayDlgImpl::
Public Slots | |
void | chooseGridColor () |
Lets you choose a color used to draw the grid. | |
void | tooltipsClicked () |
Called when the tooltips checkbox is clicked. | |
void | startDescChanged () |
Called when the start transition descriptor is changed. | |
Public Methods | |
OptDisplayDlgImpl (QWidget *parent=0, const char *name=0, bool modal=FALSE, WFlags fl=0) | |
Constructs a OptDisplayDlgImpl which is a child of 'parent', with the name 'name' and widget flags set to 'f'. More... | |
~OptDisplayDlgImpl () | |
Destroys the object and frees any allocated resources. | |
QColor | getGridColor () |
Returns the color used to draw the grid. | |
void | setGridColor (QColor c) |
Sets the grid color. | |
int | getGridSize () |
Returns the distance between the grid points. | |
void | setGridSize (int s) |
Sets the distance between the grid points. | |
bool | getToolTips () |
Returns TRUE if tooltips shall be shown, otherwise FALSE. | |
void | setToolTips (bool t) |
Sets/clears the 'show tooltips' flag. | |
QString | getStartDescriptor () |
Returns the start transition descriptor. | |
void | setStartDescriptor (QString sd) |
Sets the start transition decsriptor to sd. | |
void | init (Options *) |
Initialises the dialog according to the current options opt. | |
Private Attributes | |
QString | start_descriptor |
Start transition descriptor. | |
QColor | gridcolor |
Grid color. | |
bool | btooltips |
If TRUE, tooltips are shown. |
|
Constructs a OptDisplayDlgImpl 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. |