Added ede-bell-conf, a tool to configure system bell (that annoying beep thing)

Rest are changes so can nicely be compiled on freebsd
Also, some changes are in coding style
This commit is contained in:
Sanel Zukan
2009-02-26 11:15:27 +00:00
parent e051472475
commit c7c8fc92ea
13 changed files with 280 additions and 129 deletions

View File

@@ -18,22 +18,22 @@
/*
* Class responsible for displaying images at background
* their scaling (TODO), caching(TODO) and making coffee at the spear time.
* their scaling (TODO), caching(TODO) and making coffee at the spare time.
*/
class Wallpaper : public Fl_Box {
private:
Pixmap rootpmap_pixmap;
bool tiled;
void set_rootpmap(void);
private:
Pixmap rootpmap_pixmap;
bool tiled;
void set_rootpmap(void);
public:
Wallpaper(int X, int Y, int W, int H);
~Wallpaper();
public:
Wallpaper(int X, int Y, int W, int H);
~Wallpaper();
bool set(const char* path);
bool set_tiled(const char* path);
virtual void draw(void);
virtual int handle(int event);
bool set(const char* path);
bool set_tiled(const char* path);
virtual void draw(void);
virtual int handle(int event);
};
#endif