summaryrefslogtreecommitdiff
path: root/plugins/Skins/SkinLib/TextField.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Skins/SkinLib/TextField.h')
-rw-r--r--plugins/Skins/SkinLib/TextField.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/plugins/Skins/SkinLib/TextField.h b/plugins/Skins/SkinLib/TextField.h
deleted file mode 100644
index 8d2291f876..0000000000
--- a/plugins/Skins/SkinLib/TextField.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef __TEXT_FIELD_H__
-# define __TEXT_FIELD_H__
-
-#include "Field.h"
-
-
-class TextField : public Field
-{
-public:
- TextField(Dialog *dlg, const char *name);
- virtual ~TextField();
-
- virtual FieldType getType() const;
-
- virtual const TCHAR * getText() const;
- virtual void setText(const TCHAR *text);
-
- virtual HFONT getFont() const;
- virtual void setFont(HFONT hFont);
-
- virtual COLORREF getFontColor() const;
- virtual void setFontColor(COLORREF color);
-
- virtual FieldState * createState(DialogState *dialogState);
-
-private:
- std::tstring text;
- HFONT hFont;
- COLORREF fontColor;
-
-};
-
-
-
-#endif // __TEXT_FIELD_H__