2025-10-07 11:02:38 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
#ifndef __MWOO_WIDGET_WINDOW_H__
|
|
|
|
|
#define __MWOO_WIDGET_WINDOW_H__
|
|
|
|
|
|
|
|
|
|
#include <MwOO/Base.h>
|
|
|
|
|
|
2025-10-07 14:20:45 +00:00
|
|
|
namespace MwOO {
|
2025-10-08 09:42:51 +00:00
|
|
|
class Window : public MwOO::Base {
|
|
|
|
|
public:
|
|
|
|
|
Window(const char* widget_name, MwOO::Base* parent, int x, int y, int w, int h);
|
2025-10-08 10:09:10 +00:00
|
|
|
void SetTitle(const char* value);
|
|
|
|
|
const char* GetTitle(void);
|
2025-10-08 17:34:14 +00:00
|
|
|
void SetBackground(const char* value);
|
|
|
|
|
const char* GetBackground(void);
|
|
|
|
|
void SetForeground(const char* value);
|
|
|
|
|
const char* GetForeground(void);
|
2025-10-08 09:42:51 +00:00
|
|
|
};
|
|
|
|
|
} // namespace MwOO
|
2025-10-07 11:02:38 +00:00
|
|
|
|
|
|
|
|
#endif
|