New import

git-svn-id: http://tint2.googlecode.com/svn/trunk@13 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
lorthiois@bbsoft.fr
2008-10-02 18:47:02 +00:00
parent a5f3607239
commit 420dd5d1e2
46 changed files with 5231 additions and 0 deletions

85
src/panel.h Normal file
View File

@@ -0,0 +1,85 @@
/**************************************************************************
* panel :
* - draw panel and all objects according to panel_layout
*
* Check COPYING file for Copyright
*
**************************************************************************/
#ifndef PANEL_H
#define PANEL_H
#include <pango/pangocairo.h>
#include <sys/time.h>
#include "common.h"
#include "clock.h"
#include "task.h"
#include "taskbar.h"
//panel mode
enum { SINGLE_DESKTOP=0, MULTI_DESKTOP, MULTI_MONITOR };
//panel alignment
enum { LEFT=0x01, RIGHT=0x02, CENTER=0X04, TOP=0X08, BOTTOM=0x10 };
typedef struct {
// --------------------------------------------------
// always start with area
Area area;
// --------------------------------------------------
// backward compatibility
int old_config_file;
int old_task_icon;
int old_panel_background;
int old_task_background;
char *old_task_font;
// --------------------------------------------------
// panel
int signal_pending;
int sleep_mode;
int refresh;
int monitor;
int position;
int marginx, marginy;
// --------------------------------------------------
// taskbar point to the first taskbar in panel.area.list. number of tasbar == nb_desktop x nb_monitor.
//Taskbar *taskbar;
int mode;
int nb_desktop;
int nb_monitor;
Task *task_active;
Task *task_drag;
// --------------------------------------------------
// clock
Clock clock;
// --------------------------------------------------
// systray
// --------------------------------------------------
// mouse events
int mouse_middle;
int mouse_right;
int mouse_scroll_up;
int mouse_scroll_down;
} Panel;
Panel panel;
void visual_refresh ();
void set_panel_properties (Window win);
void window_draw_panel ();
void resize_clock();
void resize_taskbar();
#endif