3
* Copyright (c) 2000, 2001 Conectiva S/A
4
* 2002 Michael Vogt <mvo@debian.org>
6
* Author: Alfredo K. Kojima <kojima@conectiva.com.br>
7
* Michael Vogt <mvo@debian.org>
9
* This program is free software; you can redistribute it and/or
10
* modify it under the terms of the GNU General Public License as
11
* published by the Free Software Foundation; either version 2 of the
12
* License, or (at your option) any later version.
14
* This program is distributed in the hope that it will be useful,
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
* GNU General Public License for more details.
19
* You should have received a copy of the GNU General Public License
20
* along with this program; if not, write to the Free Software
21
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
29
#include <WINGs/WINGs.h>
40
static void windowCloseAction(WMWidget *win, void *data);
44
inline virtual WMWindow *window() { return _win; };
46
virtual void setTitle(string title);
48
inline virtual void hide() { WMCloseWindow(_win); };
49
inline virtual void show() { WMMapWidget(_win); };
51
RWWindow(WMScreen *scr, string name, bool makeBox = true);
52
RWWindow(RWWindow *parent, string name, bool makeBox = true,
53
bool closable = true);