NotifyBox added. Still needs work.

This commit is contained in:
Sanel Zukan
2007-06-18 16:46:27 +00:00
parent 202b4ffb29
commit 6529e02a7d
5 changed files with 170 additions and 3 deletions

View File

@@ -66,6 +66,7 @@ struct IconSettings {
class Wallpaper;
class DesktopIcon;
class NotifyBox;
typedef edelib::vector<DesktopIcon*> DesktopIconList;
@@ -80,6 +81,7 @@ class Desktop : public Fl_Window {
DesktopSettings* dsett;
Wallpaper* wallpaper;
NotifyBox* notify;
DesktopIconList icons;
DesktopIconList selectionbuff;
@@ -116,6 +118,8 @@ class Desktop : public Fl_Window {
void update_workarea(void);
void set_bg_color(int c, bool do_redraw = true);
void notify_box(const char* msg);
Fl_Window* desktop_window(void) { return this; }
};