mmsinputwidget.cpp File Reference

#include "mmsgui/mmsinputwidget.h"
#include "mmsgui/mmsinputwidgetthread.h"
#include "mmsgui/mmstextbase.h"

Include dependency graph for mmsinputwidget.cpp:

Go to the source code of this file.


Defines

#define GETINPUT(x)
#define GETINPUT2(x, y)
#define GETINPUTFONT(lang)
#define GETINPUTSHADOW(x)
#define GETINPUTSHADOWSEL(x)

Define Documentation

#define GETINPUT (  ) 

Value:

if (this->myInputWidgetClass.is##x()) return myInputWidgetClass.get##x(); \
    else if ((inputWidgetClass)&&(inputWidgetClass->is##x())) return inputWidgetClass->get##x(); \
    else return this->da->theme->inputWidgetClass.get##x();

Definition at line 766 of file mmsinputwidget.cpp.

#define GETINPUT2 ( x,
 ) 

Value:

if (this->myInputWidgetClass.is##x()) y=myInputWidgetClass.get##x(); \
    else if ((inputWidgetClass)&&(inputWidgetClass->is##x())) y=inputWidgetClass->get##x(); \
    else y=this->da->theme->inputWidgetClass.get##x();

Definition at line 771 of file mmsinputwidget.cpp.

#define GETINPUTFONT ( lang   ) 

Value:

if (this->myInputWidgetClass.isFontName(lang)) return myInputWidgetClass.getFontName(lang); \
    else if (this->myInputWidgetClass.isFontName(MMSLANG_NONE)) return myInputWidgetClass.getFontName(MMSLANG_NONE); \
    else if ((inputWidgetClass)&&(inputWidgetClass->isFontName(lang))) return inputWidgetClass->getFontName(lang); \
    else if ((inputWidgetClass)&&(inputWidgetClass->isFontName(MMSLANG_NONE))) return inputWidgetClass->getFontName(MMSLANG_NONE); \
    else return this->da->theme->inputWidgetClass.getFontName();

Definition at line 776 of file mmsinputwidget.cpp.

#define GETINPUTSHADOW (  ) 

Value:

if (this->myInputWidgetClass.isShadowColor(x)) return myInputWidgetClass.getShadowColor(x); \
    else if ((inputWidgetClass)&&(inputWidgetClass->isShadowColor(x))) return inputWidgetClass->getShadowColor(x); \
    else return this->da->theme->inputWidgetClass.getShadowColor(x);

Definition at line 783 of file mmsinputwidget.cpp.

#define GETINPUTSHADOWSEL (  ) 

Value:

if (this->myInputWidgetClass.isSelShadowColor(x)) return myInputWidgetClass.getSelShadowColor(x); \
    else if ((inputWidgetClass)&&(inputWidgetClass->isSelShadowColor(x))) return inputWidgetClass->getSelShadowColor(x); \
    else return this->da->theme->inputWidgetClass.getSelShadowColor(x);

Definition at line 788 of file mmsinputwidget.cpp.