16 lines
325 B
C
16 lines
325 B
C
|
|
/* $Id$ */
|
||
|
|
#ifndef __MWOO_WIDGET_CHECKBOX_H__
|
||
|
|
#define __MWOO_WIDGET_CHECKBOX_H__
|
||
|
|
|
||
|
|
#include <MwOO/Base.h>
|
||
|
|
|
||
|
|
namespace MwOO {
|
||
|
|
class CheckBox : public MwOO::Base {
|
||
|
|
public:
|
||
|
|
CheckBox(const char* widget_name, MwOO::Base* parent, int x, int y, int w, int h);
|
||
|
|
void SetPixmap(void* value);
|
||
|
|
void* GetPixmap(void);
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|