~ubuntu-branches/ubuntu/wily/aliki/wily

« back to all changes in this revision

Viewing changes to source/splashwin.h

  • Committer: Bazaar Package Importer
  • Author(s): Jaromír Mikeš
  • Date: 2011-07-26 21:12:17 UTC
  • Revision ID: james.westby@ubuntu.com-20110726211217-v948cgyyjokiq3sl
Tags: upstream-0.1.0
Import upstream version 0.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -------------------------------------------------------------------------
 
2
//
 
3
//    Copyright (C) 2006-2007 Fons Adriaensen <fons@kokkinizita.net>
 
4
//    
 
5
//    This program is free software; you can redistribute it and/or modify
 
6
//    it under the terms of the GNU General Public License as published by
 
7
//    the Free Software Foundation; either version 2 of the License, or
 
8
//    (at your option) any later version.
 
9
//
 
10
//    This program is distributed in the hope that it will be useful,
 
11
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
//    GNU General Public License for more details.
 
14
//
 
15
//    You should have received a copy of the GNU General Public License
 
16
//    along with this program; if not, write to the Free Software
 
17
//    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
//
 
19
// -------------------------------------------------------------------------
 
20
 
 
21
 
 
22
#ifndef __SPLASHWIN_H
 
23
#define __SPLASHWIN_H
 
24
 
 
25
 
 
26
#include <clxclient.h>
 
27
 
 
28
 
 
29
class Splashwin : public X_window
 
30
{
 
31
public:
 
32
 
 
33
    Splashwin (X_window *parent, int xp, int yp, int xs, int ys);
 
34
    ~Splashwin (void);
 
35
 
 
36
private:
 
37
 
 
38
    virtual void handle_event (XEvent *);
 
39
    void expose (XExposeEvent *);
 
40
 
 
41
    int _xs;
 
42
    int _ys;
 
43
};
 
44
 
 
45
 
 
46
#endif