#include "mmsgui/mmswidget.h"
#include "mmsgui/mmsborder.h"
#include "mmsgui/mmsmenuwidget.h"
#include "mmsgui/mmssliderwidget.h"
#include <string.h>
#include <algorithm>
Go to the source code of this file.
Defines | |
#define | GETWIDGET(x, y) |
#define | GETBORDER(x, y) |
#define | GETBORDER_IMAGES(x, p, y) |
Variables | |
string | MMSWidget_inputmode = "" |
#define GETBORDER | ( | x, | |||
y | ) |
Value:
if (!this->da) return false; \ else if (this->da->myWidgetClass.border.is##x()) return this->da->myWidgetClass.border.get##x(y); \ else if ((this->da->widgetClass)&&(this->da->widgetClass->border.is##x())) return this->da->widgetClass->border.get##x(y); \ else return this->da->baseWidgetClass->border.get##x(y);
Definition at line 2874 of file mmswidget.cpp.
#define GETBORDER_IMAGES | ( | x, | |||
p, | |||||
y | ) |
Value:
if (!this->da) return false; \ else if (this->da->myWidgetClass.border.is##x()) return this->da->myWidgetClass.border.get##x(p,y); \ else if ((this->da->widgetClass)&&(this->da->widgetClass->border.is##x())) return this->da->widgetClass->border.get##x(p,y); \ else return this->da->baseWidgetClass->border.get##x(p,y);
Definition at line 2880 of file mmswidget.cpp.
#define GETWIDGET | ( | x, | |||
y | ) |
Value:
if (!this->da) return false; \ else if (this->da->myWidgetClass.is##x()) return this->da->myWidgetClass.get##x(y); \ else if ((this->da->widgetClass)&&(this->da->widgetClass->is##x())) return this->da->widgetClass->get##x(y); \ else if (this->da->baseWidgetClass) return this->da->baseWidgetClass->get##x(y); \ else return this->da->myWidgetClass.get##x(y);
Definition at line 2675 of file mmswidget.cpp.
string MMSWidget_inputmode = "" |
Definition at line 41 of file mmswidget.cpp.