~ubuntu-branches/ubuntu/warty/fluxbox/warty

« back to all changes in this revision

Viewing changes to util/bsetroot.hh

  • Committer: Bazaar Package Importer
  • Author(s): Matt Hope
  • Date: 2002-04-12 22:08:52 UTC
  • Revision ID: james.westby@ubuntu.com-20020412220852-0gbqxr57mgu63qdh
Tags: upstream-0.1.7
ImportĀ upstreamĀ versionĀ 0.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef   __bsetroot2_hh
 
2
#define   __bsetroot2_hh
 
3
 
 
4
#include "../src/BaseDisplay.hh"
 
5
#include "../src/Image.hh"
 
6
 
 
7
class bsetroot : public BaseDisplay {
 
8
public:
 
9
        bsetroot(int, char **, char * = 0);
 
10
        ~bsetroot(void);
 
11
 
 
12
        inline virtual Bool handleSignal(int) { return False; }
 
13
 
 
14
        void gradient(void);
 
15
        void modula(int, int);
 
16
        void solid(void);
 
17
        void usage(int = 0);
 
18
        void setRootAtoms(Pixmap pixmap, int screen);
 
19
 
 
20
private:
 
21
        BImageControl **img_ctrl;
 
22
        Pixmap *pixmaps;
 
23
 
 
24
        char *fore, *back, *grad;
 
25
        Display *display;
 
26
        int num_screens;
 
27
protected:
 
28
        inline virtual void process_event(XEvent *) { }
 
29
 
 
30
};
 
31
 
 
32
 
 
33
#endif // __bsetroot2_hh