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

46
src/util/window.h Normal file
View File

@@ -0,0 +1,46 @@
/**************************************************************************
* window :
* -
*
* Check COPYING file for Copyright
*
**************************************************************************/
#ifndef WINDOW_H
#define WINDOW_H
#include <cairo.h>
#include <cairo-xlib.h>
#include <pango/pangocairo.h>
typedef struct window_global
{
Window main_win;
} window_global;
window_global window;
void set_active (Window win);
void set_desktop (int desktop);
void set_close (Window win);
int server_get_current_desktop ();
int server_get_number_of_desktop ();
int window_is_iconified (Window win);
int window_is_hidden (Window win);
int window_is_active (Window win);
int get_icon_count (long *data, int num);
long *get_best_icon (long *data, int icon_count, int num, int *iw, int *ih, int best_icon_size);
void window_toggle_shade (Window win);
int window_get_desktop (Window win);
void windows_set_desktop (Window win, int desktop);
int window_get_monitor (Window win);
Window window_get_active ();
// draw rounded rectangle
void draw_rect(cairo_t *c, double x, double y, double w, double h, double r);
void get_text_size(PangoFontDescription *font, int *height_ink, int *height, int panel_height, char *text, int len);
#endif