diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-11 17:09:09 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-11 17:09:09 +0000 |
commit | bb22e7b2a0af67cc65ce5179917b20e5977ed4ef (patch) | |
tree | 120e18f5a61144f3f632263e05cb49109f672615 /plugins/Skins/SkinLib/ControlFieldState.h | |
parent | 3b8d44fb4646951be55b3777cbe30d3280867067 (diff) |
MyDetails reverted to older version that doesn't use Skins plugin
git-svn-id: http://svn.miranda-ng.org/main/trunk@905 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Skins/SkinLib/ControlFieldState.h')
-rw-r--r-- | plugins/Skins/SkinLib/ControlFieldState.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/plugins/Skins/SkinLib/ControlFieldState.h b/plugins/Skins/SkinLib/ControlFieldState.h deleted file mode 100644 index 85186c304a..0000000000 --- a/plugins/Skins/SkinLib/ControlFieldState.h +++ /dev/null @@ -1,39 +0,0 @@ -#ifndef __LABEL_CONTROL_FIELD_STATE_H__
-# define __LABEL_CONTROL_FIELD_STATE_H__
-
-#include "ControlField.h"
-#include "FieldState.h"
-#include "FontState.h"
-
-
-class ControlFieldState : public FieldState
-{
-public:
- virtual ~ControlFieldState();
-
- virtual ControlField * getField() const;
-
- virtual Size getPreferedSize() const = 0;
-
- virtual const TCHAR * getText() const;
- virtual void setText(const TCHAR *text);
-
- virtual FontState * getFont();
- virtual const FontState * getFont() const;
-
-protected:
- ControlFieldState(DialogState *dialog, ControlField *field);
-
- virtual Size getTextPreferedSize(unsigned int format) const;
-
-private:
- FontState font;
-
- bool textSet;
- std::tstring text;
-
- friend class ControlField;
-};
-
-
-#endif // __LABEL_CONTROL_FIELD_STATE_H__
\ No newline at end of file |