12 lines
257 B
C
12 lines
257 B
C
|
|
/* $Id$ */
|
||
|
|
#ifndef __MWOO_WIDGET_BUTTON_H__
|
||
|
|
#define __MWOO_WIDGET_BUTTON_H__
|
||
|
|
|
||
|
|
#include <MwOO/Base.h>
|
||
|
|
|
||
|
|
class MwOOButtonWidget : public MwOOWidget {
|
||
|
|
public:
|
||
|
|
MwOOButtonWidget(const char* name, MwOOWidget* parent, int x, int y, int w, int h);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|