summaryrefslogtreecommitdiff
path: root/plugins/Skins/SkinLib/ControlField.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Skins/SkinLib/ControlField.h')
-rw-r--r--plugins/Skins/SkinLib/ControlField.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/Skins/SkinLib/ControlField.h b/plugins/Skins/SkinLib/ControlField.h
deleted file mode 100644
index 014ee04b9b..0000000000
--- a/plugins/Skins/SkinLib/ControlField.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef __LABEL_CONTROL_FIELD_H__
-# define __LABEL_CONTROL_FIELD_H__
-
-#include "Field.h"
-
-class ControlField : public Field
-{
-public:
- ControlField(Dialog *dlg, const char *name, HWND hwnd);
- virtual ~ControlField();
-
- virtual HWND getHWND();
-
- virtual void setText(const TCHAR *text);
- virtual const TCHAR * getText();
-
- virtual void setFont(HFONT hFont);
- virtual HFONT getFont() const;
-
- virtual COLORREF getFontColor() const;
-
- virtual int getBorderSize() const;
-
- virtual bool isScrollVisible(bool horizontal) const;
-
-private:
- HWND hwnd;
-
- bool textSet;
- std::tstring text;
-
- HFONT hFont;
-};
-
-
-
-#endif // __LABEL_CONTROL_FIELD_H__