ede/eiconman/eiconman.h

151 lines
3.6 KiB
C
Raw Normal View History

/*
* $Id$
*
2007-05-22 18:53:17 +04:00
* Eiconman, desktop and icon manager
* Part of Equinox Desktop Environment (EDE).
2007-05-22 18:53:17 +04:00
* Copyright (c) 2000-2007 EDE Authors.
*
2007-05-22 18:53:17 +04:00
* This program is licensed under terms of the
* GNU General Public License version 2 or newer.
* See COPYING for details.
*/
2007-05-22 18:53:17 +04:00
#ifndef __EICONMAN_H__
#define __EICONMAN_H__
#include <FL/Fl_Window.h>
#include <FL/Fl_Double_Window.h>
#include <FL/Fl_Image.h>
2007-05-22 18:53:17 +04:00
#include <edelib/String.h>
#include <edelib/Config.h>
#include <edelib/Vector.h>
#define EDAMAGE_CHILD_LABEL 0x10
#define EDAMAGE_OVERLAY 0x20
2007-05-22 18:53:17 +04:00
struct DesktopSettings {
int color; // background color
bool wp_use; // use wallpaper or not
2007-05-22 18:53:17 +04:00
};
2007-05-22 18:53:17 +04:00
struct GlobalIconSettings {
int label_background;
int label_foreground;
int label_fontsize;
int label_maxwidth;
bool label_transparent;
bool label_draw;
bool one_click_exec;
bool auto_arrange;
2007-05-22 18:53:17 +04:00
bool same_size;
};
#define ICON_NORMAL 1 // .desktop file
#define ICON_TRASH 2 // trash.desktop (specific since have two icons for empty/full)
#define ICON_FILE 3 // real file
#define ICON_SYMLINK 4 // symbolic link
/*
* Settings representing related to icon on desktop. To complicate our lives
* (and to, at least, simplify code) it can be:
* - .desktop file content (normal or trash like)
* - real file copied/moved inside ~/Desktop directory
* - symlink in ~/Desktop directory pointing to the real file
*/
2007-05-22 18:53:17 +04:00
struct IconSettings {
int x, y;
int type; // ICON_NORMAL, ICON_TRASH,...
bool cmd_is_url; // interpret cmd as url, like system:/,trash:/,$HOME
2007-05-22 18:53:17 +04:00
edelib::String name;
edelib::String cmd;
edelib::String icon;
edelib::String icon2; // for stateable icons, like trash (empty/full)
edelib::String key_name; // name used as key when storing positions
edelib::String full_path; // for tracking changes
2007-05-22 18:53:17 +04:00
};
// Selection overlay
struct SelectionOverlay {
int x, y, w, h;
bool show;
};
class Wallpaper;
2007-05-22 18:53:17 +04:00
class DesktopIcon;
2007-06-18 20:46:27 +04:00
class NotifyBox;
2007-05-22 18:53:17 +04:00
class Fl_Menu_Button;
typedef edelib::vector<DesktopIcon*> DesktopIconList;
#define DESKTOP_WINDOW Fl_Window
class Desktop : public DESKTOP_WINDOW {
2007-05-22 18:53:17 +04:00
private:
static Desktop* pinstance;
int selection_x, selection_y;
2007-05-22 18:53:17 +04:00
bool moving;
SelectionOverlay* selbox;
2007-05-22 18:53:17 +04:00
GlobalIconSettings gisett;
DesktopSettings* dsett;
Fl_Menu_Button* dmenu;
Wallpaper* wallpaper;
NotifyBox* notify;
DesktopIconList icons;
DesktopIconList selectionbuff;
2007-05-22 18:53:17 +04:00
void init_internals(void);
2007-05-22 18:53:17 +04:00
void load_icons(const char* path, edelib::Config& conf);
bool read_desktop_file(const char* path, IconSettings& is);
2007-05-22 18:53:17 +04:00
void add_icon(DesktopIcon* ic);
2007-05-22 18:53:17 +04:00
void unfocus_all(void);
void select(DesktopIcon* ic, bool do_redraw = true);
2007-05-22 18:53:17 +04:00
void select_only(DesktopIcon* ic);
bool in_selection(const DesktopIcon* ic);
void move_selection(int x, int y, bool apply);
void select_in_area(void);
void drop_source(const char* src, int src_len, int x, int y);
2007-06-23 15:31:36 +04:00
DesktopIcon* below_mouse(int px, int py);
2007-05-23 16:43:50 +04:00
2007-05-22 18:53:17 +04:00
public:
Desktop();
~Desktop();
virtual void show(void);
virtual void hide(void);
virtual void draw(void);
virtual int handle(int event);
static void init(void);
static void shutdown(void);
static Desktop* instance(void);
2007-05-22 18:53:17 +04:00
void read_config(void);
void save_config(void);
void update_workarea(void);
void area(int& X, int& Y, int& W, int& H) { X = x(); Y = y(); W = w(); H = h(); }
void set_bg_color(int c, bool do_redraw = true);
void notify_box(const char* msg, bool copy = false);
void notify_box_color(Fl_Color col);
void notify_desktop_changed(void);
2007-05-22 18:53:17 +04:00
};
#endif