diff options
Diffstat (limited to 'plugins/!NotAdopted/HistoryStats/bandctrl.h')
-rw-r--r-- | plugins/!NotAdopted/HistoryStats/bandctrl.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/plugins/!NotAdopted/HistoryStats/bandctrl.h b/plugins/!NotAdopted/HistoryStats/bandctrl.h deleted file mode 100644 index db3c5c81f7..0000000000 --- a/plugins/!NotAdopted/HistoryStats/bandctrl.h +++ /dev/null @@ -1,40 +0,0 @@ -#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
|