summaryrefslogtreecommitdiff
path: root/plugins/yapp/options.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-05-18 22:02:50 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-05-18 22:02:50 +0000
commitf920ef497f3299ae24fe783ce03bdd93b419f764 (patch)
treebdaa9197c08d29ab141a6adfdd6cc0a68ddd3996 /plugins/yapp/options.h
parent6c3b0571f0678da0512069869afaa284c054377e (diff)
plugins folders renaming
git-svn-id: http://svn.miranda-ng.org/main/trunk@60 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/yapp/options.h')
-rw-r--r--plugins/yapp/options.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/plugins/yapp/options.h b/plugins/yapp/options.h
deleted file mode 100644
index 55b94d17db..0000000000
--- a/plugins/yapp/options.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef _OPTIONS_INC
-#define _OPTIONS_INC
-
-typedef enum {PL_BOTTOMRIGHT=0, PL_BOTTOMLEFT=1, PL_TOPRIGHT=2, PL_TOPLEFT=3} PopupLocation;
-typedef enum {PAV_NONE=0, PAV_LEFT=1, PAV_RIGHT=2} PopupAvLayout;
-typedef enum {PT_NONE=0, PT_LEFT=1, PT_RIGHT=2, PT_WITHAV=3} PopupTimeLayout;
-typedef struct {
- int win_width, win_max_height, av_size; //tweety
- int default_timeout;
- PopupLocation location;
- int opacity;
- bool border;
- bool round, av_round;
- bool animate;
- bool trans_bg;
- bool use_mim_monitor;
- bool right_icon;
- PopupAvLayout av_layout;
- bool disable_status[10];
- int text_indent;
- bool global_hover;
- PopupTimeLayout time_layout;
- bool disable_full_screen;
- bool drop_shadow;
- int sb_width;
- int padding, av_padding;
-} Options;
-
-extern Options options;
-
-void InitOptions();
-void LoadOptions();
-void LoadModuleDependentOptions();
-void DeinitOptions();
-
-#endif