2007-05-22 18:53:17 +04:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Eiconman, desktop and icon manager
|
|
|
|
* Part of Equinox Desktop Environment (EDE).
|
|
|
|
* Copyright (c) 2000-2007 EDE Authors.
|
|
|
|
*
|
|
|
|
* This program is licensed under terms of the
|
|
|
|
* GNU General Public License version 2 or newer.
|
|
|
|
* See COPYING for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTILS_H__
|
|
|
|
#define __UTILS_H__
|
|
|
|
|
2007-06-18 18:18:35 +04:00
|
|
|
#include <FL/Fl_Window.h>
|
|
|
|
#include <FL/Fl_Image.h>
|
|
|
|
|
|
|
|
#include <X11/Xlib.h> // Pixmap
|
2007-05-22 18:53:17 +04:00
|
|
|
|
2007-06-19 13:59:15 +04:00
|
|
|
extern Atom _XA_NET_WORKAREA;
|
|
|
|
extern Atom _XA_NET_WM_WINDOW_TYPE;
|
|
|
|
extern Atom _XA_NET_WM_WINDOW_TYPE_DESKTOP;
|
|
|
|
extern Atom _XA_NET_NUMBER_OF_DESKTOPS;
|
|
|
|
extern Atom _XA_NET_CURRENT_DESKTOP;
|
|
|
|
extern Atom _XA_NET_DESKTOP_NAMES;
|
2007-06-20 14:58:07 +04:00
|
|
|
extern Atom _XA_XROOTPMAP_ID;
|
2007-06-19 13:59:15 +04:00
|
|
|
|
|
|
|
// via XGetTextProperty/XSetTextProperty
|
|
|
|
extern Atom _XA_EDE_DESKTOP_NOTIFY;
|
|
|
|
// via XChangeProperty (prop = Fl_Color, sizeof(int))
|
|
|
|
extern Atom _XA_EDE_DESKTOP_NOTIFY_COLOR;
|
|
|
|
|
|
|
|
void init_atoms(void);
|
|
|
|
|
2007-05-22 18:53:17 +04:00
|
|
|
int net_get_workspace_count(void);
|
|
|
|
int net_get_current_desktop(void);
|
|
|
|
bool net_get_workarea(int& x, int& y, int& w, int &h);
|
2007-06-18 18:18:35 +04:00
|
|
|
void net_make_me_desktop(Fl_Window* w);
|
2007-05-22 18:53:17 +04:00
|
|
|
int net_get_workspace_names(char**& names);
|
|
|
|
|
2007-06-19 13:59:15 +04:00
|
|
|
bool ede_get_desktop_notify(char* txt, int txt_len);
|
|
|
|
Fl_Color ede_get_desktop_notify_color(void);
|
|
|
|
|
2007-05-22 20:27:33 +04:00
|
|
|
void draw_xoverlay(int x, int y, int w, int h);
|
|
|
|
void clear_xoverlay(void);
|
2007-06-18 18:18:35 +04:00
|
|
|
void set_xoverlay_drawable(Fl_Window* win);
|
|
|
|
|
2007-06-20 14:58:07 +04:00
|
|
|
Pixmap create_mask(Fl_Image* img);
|
2007-06-18 18:18:35 +04:00
|
|
|
|
|
|
|
char* get_basename(const char* path);
|
2007-05-22 20:27:33 +04:00
|
|
|
|
2007-05-22 18:53:17 +04:00
|
|
|
#endif
|