myQtApp

class myQtApp: public QWidget, private Ui::myQtAppDLG

Implements a Qt application using the UI.

Inherits from QWidget, Ui::myQtAppDLG.

Summary
myQtAppImplements a Qt application using the UI.
Functions
myQtAppInitializes the object.
ChangeValuesPreviousSlot for changing to the previous data set.
ChangeValuesNextSlot for changing to the next data set.
ChangeSortingOrderSlot for changing the sorting order.
ChangeChartSlot for changing the chart type.
ChangeFilterSlot for changing the filtering behavior.

Functions

myQtApp

myQtApp(QWidget *pParent =  NULL)

Initializes the object.

Parameters

pParentPointer to the parent object.  Default value is NULL.

ChangeValuesPrevious

void ChangeValuesPrevious()

Slot for changing to the previous data set.

ChangeValuesNext

void ChangeValuesNext()

Slot for changing to the next data set.

ChangeSortingOrder

void ChangeSortingOrder(bool bDescending)

Slot for changing the sorting order.

Parameters

bDescendingSorting order, true if descending, else false.

ChangeChart

void ChangeChart(int iCurrentIndex)

Slot for changing the chart type.

Parameters

iCurrentIndexIndex of the chart type.

ChangeFilter

void ChangeFilter(int iCurrentIndex)

Slot for changing the filtering behavior.

Parameters

iCurrentIndexIndex of the filtering behavior.
class myQtApp: public QWidget, private Ui::myQtAppDLG
Implements a Qt application using the UI.
myQtApp(QWidget *pParent =  NULL)
Initializes the object.
void ChangeValuesPrevious()
Slot for changing to the previous data set.
void ChangeValuesNext()
Slot for changing to the next data set.
void ChangeSortingOrder(bool bDescending)
Slot for changing the sorting order.
void ChangeChart(int iCurrentIndex)
Slot for changing the chart type.
void ChangeFilter(int iCurrentIndex)
Slot for changing the filtering behavior.
Close