summaryrefslogtreecommitdiff
path: root/plugins/Skins/SkinLib/ImageField.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Skins/SkinLib/ImageField.cpp')
-rw-r--r--plugins/Skins/SkinLib/ImageField.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/plugins/Skins/SkinLib/ImageField.cpp b/plugins/Skins/SkinLib/ImageField.cpp
deleted file mode 100644
index c65cf99a0f..0000000000
--- a/plugins/Skins/SkinLib/ImageField.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-#include "globals.h"
-#include "ImageField.h"
-#include "ImageFieldState.h"
-
-
-ImageField::ImageField(Dialog *dlg, const char *name)
- : Field(dlg, name), hBmp(NULL)
-{
-
-}
-
-ImageField::~ImageField()
-{
-}
-
-FieldType ImageField::getType() const
-{
- return SIMPLE_IMAGE;
-}
-
-HBITMAP ImageField::getImage() const
-{
- return hBmp;
-}
-
-void ImageField::setImage(HBITMAP hBmp)
-{
- if (this->hBmp == hBmp)
- return;
-
- this->hBmp = hBmp;
- fireOnChange();
-}
-
-FieldState * ImageField::createState(DialogState *dialogState)
-{
- return new ImageFieldState(dialogState, this);
-} \ No newline at end of file