summaryrefslogtreecommitdiff
path: root/include/m_button_int.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-21 18:03:23 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-21 18:03:23 +0000
commit798a7bc2ee5f488d67831c11778f209bdadcba02 (patch)
tree7110885daa35701e74363b03064534fd70f317af /include/m_button_int.h
parentb6eeba0ad88a0eef9218e95cd07ef3cd867ff431 (diff)
patch for the core Mbutton class customization, to use the themes defined by plugins
git-svn-id: http://svn.miranda-ng.org/main/trunk@514 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_button_int.h')
-rw-r--r--include/m_button_int.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/include/m_button_int.h b/include/m_button_int.h
new file mode 100644
index 0000000000..0b6f9556d2
--- /dev/null
+++ b/include/m_button_int.h
@@ -0,0 +1,72 @@
+/*
+
+Miranda IM: the free IM client for Microsoft* Windows*
+
+Copyright 2000-2008 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
+listed in contributors.txt.
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+// Added in 0.3.0.0+
+
+#ifndef M_BUTTON_INT_H__
+#define M_BUTTON_INT_H__ 1
+
+#include <m_button.h>
+
+interface IAccPropServices;
+
+typedef void (__cdecl *pfnPainterFunc)(struct MButtonCtrl*, HDC);
+
+struct MButtonCtrl
+{
+ HWND hwnd;
+ int stateId; // button state
+ int focus; // has focus (1 or 0)
+ HFONT hFont; // font
+ HICON arrow; // uses down arrow
+ HICON hIcon;
+ HBITMAP hBitmap;
+ HTHEME hThemeButton;
+ HTHEME hThemeToolbar;
+ TCHAR cHot;
+ HWND hwndToolTips;
+
+ bool bIsPushBtn, // button has two states
+ bIsPushed, // is button pushed or not
+ bIsDefault, // default button
+ bIsFlat, // flat button
+ bIsThemed, // themed button
+ bIsSkinned; // skinned button
+
+ WNDPROC fnWindowProc; // custom window proc
+ pfnPainterFunc fnPainter; // custom button painter
+
+ IAccPropServices* pAccPropServices;
+};
+
+/////////////////////////////////////////////////////////////////
+
+typedef void (__cdecl *pfnPainterFunc)(MButtonCtrl*, HDC);
+
+struct MButtonCustomize
+{
+ size_t cbLen; // total length of the internal data structure
+ WNDPROC fnWindowProc; // subclassed windows procedure for the custom button
+ pfnPainterFunc fnPainter; // custom button painter
+};
+
+#endif // M_BUTTON_INT_H__