summaryrefslogtreecommitdiff
path: root/plugins/TopToolBar/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/TopToolBar/common.h')
-rw-r--r--plugins/TopToolBar/common.h150
1 files changed, 150 insertions, 0 deletions
diff --git a/plugins/TopToolBar/common.h b/plugins/TopToolBar/common.h
new file mode 100644
index 0000000000..3150ca3a23
--- /dev/null
+++ b/plugins/TopToolBar/common.h
@@ -0,0 +1,150 @@
+#ifndef TTB_COMMON_H
+#define TTB_COMMON_H
+
+
+#define _CRT_SECURE_NO_WARNINGS
+
+#include <windows.h>
+#include <commctrl.h>
+#include <time.h>
+#include <stddef.h>
+#include <process.h>
+#include <math.h>
+#include <vsstyle.h>
+
+#include "win2k.h"
+#include "newpluginapi.h"
+#include "m_system.h"
+#include "m_database.h"
+#include "m_clist.h"
+#include "m_skin.h"
+#include "m_utils.h"
+#include "m_cluiframes.h"
+#include "m_clui.h"
+#include "m_clc.h"
+#include "m_langpack.h"
+#include "m_options.h"
+#include "resource.h"
+#include "m_toptoolbar.h"
+#include "m_button.h"
+#include "m_icolib.h"
+#include "BkgrCfg.h"
+
+#define TTB_OPTDIR "TopToolBar"
+#define TTBDEFAULT_BKBMPUSE CLB_STRETCH
+
+
+#define TTBDEFAULT_BKCOLOUR GetSysColor(COLOR_3DFACE)
+#define TTBDEFAULT_USEBITMAP 0
+#define TTBDEFAULT_SELBKCOLOUR GetSysColor(COLOR_HIGHLIGHT)
+
+int TTBOptInit(WPARAM wParam,LPARAM lParam);
+//append string
+char __inline *AS(char *str,const char *setting,char *addstr);
+
+int ttbOptionsChanged();
+
+int ArrangeButtons();
+int RecreateWindows();
+
+typedef struct {
+ HWND hwnd;
+ HWND hwndTip;
+ int id;
+ BOOL bPushed;
+ int dwFlags;
+ int x,y;
+ HBITMAP hbBitmapUp,hbBitmapDown;
+ HBITMAP hbDefBitmapUp,hbDefBitmapDown;
+ HBITMAP hbWBordBitmapUp,hbWBordBitmapDown;
+ HICON hIconUp,hIconDn;
+
+ char *pszServiceUp,*pszServiceDown;
+ char *tooltip;
+ char *name;
+
+ LPARAM lParamUp;
+ WPARAM wParamUp;
+ LPARAM lParamDown;
+ WPARAM wParamDown;
+ WORD arrangedpos;
+ char *UserDefinedbmUp;
+ char *UserDefinedbmDown;
+
+
+}TopButtonInt;
+
+typedef struct tagSortData {
+ int oldpos;
+ int arrangeval;
+} SortData;
+
+#define MAX_BUTTONS 64
+//#define BUTTWIDTH 20
+
+//#define BUTTHEIGHT 16
+#define SEPWIDTH 3
+
+typedef struct tagButtonOptData {
+ char *name;
+ int pos;
+ boolean show;
+} ButtonOptData;
+
+boolean OptionsOpened;
+HWND OptionshWnd;
+int OptionsPageRebuild();
+void lockbut();
+void ulockbut();
+
+//return - 0 success, -1 on error
+#define TTB_ADDSEPARATOR "TTB/AddSeparator"
+//wparam sepid
+#define TTB_REMOVESEPARATOR "TTB/RemoveSeparator"
+
+
+//append string
+char *AS(char *str,const char *setting,char *addstr)
+{
+ if(str!=NULL) {
+ strcpy(str,setting);
+ strcat(str,addstr);
+ }
+ return str;
+};
+
+
+char *DBGetString(HANDLE hContact,const char *szModule,const char *szSetting);
+
+
+#define TTB_LAUNCHSERVICE "TTB/LaunchSerice"
+//wparam -id
+//lparam &LBTOPT
+#define TTB_MODIFYLBUTTON "TTB/ModifyLButton"
+
+//wparam -id
+//lparam &LBTOPT
+#define TTB_GETLBUTTON "TTB/GetLButton"
+
+#define TTB_ADDLBUTTON "TTB/AddLButton"
+#define TTB_REMOVELBUTTON "TTB/RemoveLButton"
+#define MYMIRANDABUTTONCLASS "MyMIRANDABUTTONCLASS"
+
+
+int InitLBut();
+int UnInitLBut();
+
+typedef struct
+{
+int hframe;
+char *lpath;
+char *name;
+}LBUTOPT;
+
+int LoadCLCButtonModule(void);
+#define BM_SETPRIVATEICON (WM_USER + 6)
+#define BM_SETIMLICON (WM_USER + 7)
+#define UseIcoLibDefaultValue 0
+#define UseMirandaButtonClassDefaultValue 1
+
+#endif \ No newline at end of file