Merging new panel in the trunk.

This commit is contained in:
Sanel Zukan
2009-10-03 07:33:08 +00:00
parent 0b3662910f
commit 1f96f833d9
146 changed files with 7482 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#ifndef __TASKBUTTON_H__
#define __TASKBUTTON_H__
#include <FL/Fl_Button.H>
#include <FL/x.H>
class TaskButton : public Fl_Button {
private:
/* window ID this button handles */
Window xid;
public:
TaskButton(int X, int Y, int W, int H, const char *l = 0);
void draw(void);
void display_menu(void);
void set_window_xid(Window win) { xid = win; }
Window get_window_xid(void) { return xid; }
void update_title_from_xid(void);
};
#endif