mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
38 lines
665 B
C++
38 lines
665 B
C++
#ifndef __TRAY_H__
|
|
#define __TRAY_H__
|
|
|
|
#include <FL/Fl_Group.H>
|
|
#include <FL/x.H>
|
|
#include <edelib/List.h>
|
|
|
|
EDELIB_NS_USING(list)
|
|
|
|
struct WinInfo {
|
|
Window id;
|
|
Fl_Window *win;
|
|
};
|
|
|
|
typedef list<WinInfo> WinList;
|
|
typedef list<WinInfo>::iterator WinListIt;
|
|
|
|
class Tray : public Fl_Group {
|
|
private:
|
|
Atom opcode, message_data;
|
|
WinList win_list;
|
|
void distribute_children(void);
|
|
public:
|
|
Tray();
|
|
~Tray();
|
|
void register_notification_area(void);
|
|
Atom get_opcode(void) const { return opcode; }
|
|
void embed_window(Window id);
|
|
void unembed_window(Window id);
|
|
|
|
void add_to_tray(Fl_Widget *w);
|
|
void remove_from_tray(Fl_Widget *w);
|
|
|
|
int handle(int e);
|
|
};
|
|
|
|
#endif
|