diff options
Diffstat (limited to 'plugins/HistoryStats/src/bandctrl.h')
-rw-r--r-- | plugins/HistoryStats/src/bandctrl.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/plugins/HistoryStats/src/bandctrl.h b/plugins/HistoryStats/src/bandctrl.h new file mode 100644 index 0000000000..db3c5c81f7 --- /dev/null +++ b/plugins/HistoryStats/src/bandctrl.h @@ -0,0 +1,40 @@ +#if !defined(HISTORYSTATS_GUARD_BANDCTRL_H)
+#define HISTORYSTATS_GUARD_BANDCTRL_H
+
+#include "_globals.h"
+#include "bandctrldefs.h"
+
+/*
+ * BandCtrl
+ */
+
+class BandCtrl
+ : public BandCtrlDefs
+ , private pattern::NotCopyable<BandCtrl>
+{
+private:
+ HWND m_hBandWnd;
+
+public:
+ explicit BandCtrl(HWND hBandWnd = NULL) : m_hBandWnd(hBandWnd) { }
+ ~BandCtrl() { }
+
+public:
+ const BandCtrl& operator <<(HWND hBandWnd) { m_hBandWnd = hBandWnd; return *this; }
+ operator HWND() { return m_hBandWnd; }
+
+public:
+ void setLayout(int nLayout);
+ HANDLE addButton(DWORD dwFlags, HICON hIcon, DWORD dwData, const mu_text* szTooltip = NULL, const mu_text* szText = NULL);
+ bool isButtonChecked(HANDLE hButton);
+ void checkButton(HANDLE hButton, bool bCheck);
+ DWORD getButtonData(HANDLE hButton);
+ void setButtonData(HANDLE hButton, DWORD dwData);
+ bool isButtonVisisble(HANDLE hButton);
+ void showButton(HANDLE hButton, bool bShow);
+ RECT getButtonRect(HANDLE hButton);
+ bool isButtonEnabled(HANDLE hButton);
+ void enableButton(HANDLE hButton, bool bEnable);
+};
+
+#endif // HISTORYSTATS_GUARD_BANDCTRL_H
|