diff options
author | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-03-09 23:40:05 +0000 |
---|---|---|
committer | Rozhuk Ivan <rozhuk.im@gmail.com> | 2014-03-09 23:40:05 +0000 |
commit | 5958b2064712c58ac650f15a91812edc9259d7e2 (patch) | |
tree | 93069db8357566b652234c547f0af56447466781 /plugins/TipperYM/src/options.h | |
parent | 0173277372e2962b8f5703a0ebad7892dda15e6c (diff) |
Tipper
Add: "Show title" option to control the title regardless of icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@8535 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TipperYM/src/options.h')
-rw-r--r-- | plugins/TipperYM/src/options.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/TipperYM/src/options.h b/plugins/TipperYM/src/options.h index 98caec2063..ac61325b85 100644 --- a/plugins/TipperYM/src/options.h +++ b/plugins/TipperYM/src/options.h @@ -125,13 +125,14 @@ typedef struct { } ICONSTATE;
typedef enum {PAV_NONE=0, PAV_LEFT=1, PAV_RIGHT=2} PopupAvLayout;
-typedef enum {PTL_LEFTICON=0, PTL_RIGHTICON=1, PTL_NOICON=2, PTL_NOTITLE=3} PopupTitleLayout;
+typedef enum {PTL_NOICON=0, PTL_LEFTICON=1, PTL_RIGHTICON=2} PopupIconTitleLayout;
typedef enum {PP_BOTTOMRIGHT=0, PP_BOTTOMLEFT=1, PP_TOPRIGHT=2, PP_TOPLEFT=3} PopupPosition;
typedef enum {PSE_NONE=0, PSE_ANIMATE=1, PSE_FADE=2} PopupShowEffect;
typedef struct {
int iWinWidth, iWinMaxHeight, iAvatarSize; //tweety
- PopupTitleLayout titleLayout;
+ PopupIconTitleLayout titleIconLayout;
+ bool bShowTitle;
PopupAvLayout avatarLayout;
int iTextIndent, iTitleIndent, iValueIndent;
bool bShowNoFocus;
|