blob: b69e3fe01fdabec434c0e2ee9061898fac1c23b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef __ICON_FIELD_STATE_H__
# define __ICON_FIELD_STATE_H__
#include "IconField.h"
#include "FieldState.h"
class IconFieldState : public FieldState
{
public:
virtual ~IconFieldState();
virtual IconField * getField() const;
virtual Size getPreferedSize() const;
virtual HICON getIcon() const;
virtual bool isEmpty() const;
private:
IconFieldState(DialogState *dialog, IconField *field);
friend class IconField;
};
#endif // __ICON_FIELD_STATE_H__
|