diff options
Diffstat (limited to 'plugins/SendScreenshotPlus/src/UAboutForm.h')
-rw-r--r-- | plugins/SendScreenshotPlus/src/UAboutForm.h | 46 |
1 files changed, 22 insertions, 24 deletions
diff --git a/plugins/SendScreenshotPlus/src/UAboutForm.h b/plugins/SendScreenshotPlus/src/UAboutForm.h index 19c6743d7c..8236094b49 100644 --- a/plugins/SendScreenshotPlus/src/UAboutForm.h +++ b/plugins/SendScreenshotPlus/src/UAboutForm.h @@ -29,37 +29,35 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef UAboutFormH #define UAboutFormH -//--------------------------------------------------------------------------- -class TfrmAbout{ +class TfrmAbout +{ - public: - // Deklaration Standardkonstruktor/Standarddestructor - TfrmAbout(HWND Owner); - ~TfrmAbout(); +public: + // Deklaration Standardkonstruktor/Standarddestructor + TfrmAbout(HWND Owner); + ~TfrmAbout(); - HWND m_hWndOwner; + HWND m_hWndOwner; - static void Unload(); - void Show(){ShowWindow(m_hWnd,SW_SHOW);} - void Hide(){ShowWindow(m_hWnd,SW_HIDE);} - void Close(){SendMessage(m_hWnd,WM_CLOSE,0,0);} + static void Unload(); + void Show(){ ShowWindow(m_hWnd, SW_SHOW); } + void Hide(){ ShowWindow(m_hWnd, SW_HIDE); } + void Close(){ SendMessage(m_hWnd, WM_CLOSE, 0, 0); } - private: - HWND m_hWnd; +private: + HWND m_hWnd; - protected: - UINT m_Page; - typedef std::map<HWND, TfrmAbout *> CHandleMapping; - static CHandleMapping _HandleMapping; - static INT_PTR CALLBACK DlgTfrmAbout(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); +protected: + UINT m_Page; + typedef std::map<HWND, TfrmAbout *> CHandleMapping; + static CHandleMapping _HandleMapping; + static INT_PTR CALLBACK DlgTfrmAbout(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam); - LRESULT wmInitdialog(WPARAM wParam, LPARAM lParam); - LRESULT wmCommand(WPARAM wParam, LPARAM lParam); - LRESULT wmClose(WPARAM wParam, LPARAM lParam); - - void btnPageClick(); + LRESULT wmInitdialog(WPARAM wParam, LPARAM lParam); + LRESULT wmCommand(WPARAM wParam, LPARAM lParam); + LRESULT wmClose(WPARAM wParam, LPARAM lParam); + void btnPageClick(); }; -//--------------------------------------------------------------------------- #endif |