VICI
0.11.815
Visual Chart Interpreter
|
Defines an abstract base class for widget adaptors. More...
#include <vici/libgth.h>
Public Member Functions | |
Adaptor (csr name, GTHTest *gth) | |
Constructor. | |
virtual | ~Adaptor () |
Destructor. | |
virtual std::string | action (csr tcname, csr cmnd, const ParamList ¶ms)=0 |
Interpreter function. More... | |
virtual VICI::gth::WidgetType | getType ()=0 |
Get the type of the adaptor. More... | |
csr | getWidgetName () |
Get the name of the widget. | |
Protected Member Functions | |
void | mouseDoubleClick (QWidget *widget, Qt::MouseButton button, Qt::KeyboardModifiers stateKey=0, QPoint pos=QPoint(), int delay=-1) |
Utility functions. | |
Protected Attributes | |
GTHTest * | gthTest |
Reference to the owner. | |
std::string | widgetName |
The name of the widget as set when it was registered. | |
Defines an abstract base class for widget adaptors.
The adaptor objects contain simple command interpreters that modify or access the contained widget (or other object)
|
pure virtual |
Interpreter function.
tcname | The name of the test case. |
cmnd | The type of action to perform |
params | Any additional parameters for the command |
Implemented in VICI::gth::AdaptorT< wt, T >.
|
pure virtual |