~ubuntu-core-dev/synaptic/ubuntu

« back to all changes in this revision

Viewing changes to wings/rwwindow.h

  • Committer: Michael Terry
  • Date: 2011-09-26 16:30:35 UTC
  • Revision ID: michael.terry@canonical.com-20110926163035-bck8ol261ksu1gmi
move to lp:ubuntu/synaptic

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* rwindow.h
2
 
 *
3
 
 * Copyright (c) 2000, 2001 Conectiva S/A
4
 
 *               2002 Michael Vogt <mvo@debian.org>
5
 
 *
6
 
 * Author: Alfredo K. Kojima <kojima@conectiva.com.br>
7
 
 *         Michael Vogt <mvo@debian.org>
8
 
 *
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.
13
 
 *
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.
18
 
 *
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
22
 
 * USA
23
 
 */
24
 
 
25
 
#ifndef _RWWINDOW_H_
26
 
#define _RWWINDOW_H_
27
 
 
28
 
 
29
 
#include <WINGs/WINGs.h>
30
 
 
31
 
#include <string>
32
 
 
33
 
using namespace std;
34
 
 
35
 
class RWWindow {   
36
 
protected:
37
 
   WMWindow *_win;
38
 
   WMBox *_topBox;
39
 
   
40
 
   static void windowCloseAction(WMWidget *win, void *data);
41
 
   virtual void close();
42
 
   
43
 
public:
44
 
   inline virtual WMWindow *window() { return _win; };
45
 
   
46
 
   virtual void setTitle(string title);
47
 
   
48
 
   inline virtual void hide() { WMCloseWindow(_win); };
49
 
   inline virtual void show() { WMMapWidget(_win); };
50
 
 
51
 
   RWWindow(WMScreen *scr, string name, bool makeBox = true);
52
 
   RWWindow(RWWindow *parent, string name, bool makeBox = true,
53
 
            bool closable = true);
54
 
   virtual ~RWWindow();
55
 
};
56
 
 
57
 
#endif
58