add drawer sample
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
68
samples/drawer/drawertest.h
Normal file
68
samples/drawer/drawertest.h
Normal file
@@ -0,0 +1,68 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: tbtest.h
|
||||
// Purpose: wxTaskBarIcon sample
|
||||
// Author: Julian Smart
|
||||
// Modified by: Ryan Norton (OSX 10.2+ Drawer)
|
||||
// Created: 01/02/97
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c)
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
class MyTaskBarIcon: public wxTaskBarIcon
|
||||
{
|
||||
public:
|
||||
MyTaskBarIcon() {};
|
||||
|
||||
void OnLButtonDClick(wxTaskBarIconEvent&);
|
||||
void OnMenuRestore(wxCommandEvent&);
|
||||
void OnMenuExit(wxCommandEvent&);
|
||||
|
||||
void OnMenuSetNewIcon(wxCommandEvent&);
|
||||
void OnMenuSetOldIcon(wxCommandEvent&);
|
||||
|
||||
#if defined( __WXMAC__ ) && TARGET_API_MAC_OSX && ( MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_2 )
|
||||
class MyDrawer* m_pMyDrawer;
|
||||
MyTaskBarIcon(class MyDrawer* p) {m_pMyDrawer = p;}
|
||||
|
||||
void OnMenuOpenDrawer(wxCommandEvent&);
|
||||
void OnMenuCloseDrawer(wxCommandEvent&);
|
||||
|
||||
void OnMenuLeftDrawer(wxCommandEvent&);
|
||||
void OnMenuRightDrawer(wxCommandEvent&);
|
||||
void OnMenuTopDrawer(wxCommandEvent&);
|
||||
void OnMenuBottomDrawer(wxCommandEvent&);
|
||||
#endif //10.2+
|
||||
|
||||
virtual wxMenu *CreatePopupMenu();
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
|
||||
// Define a new application
|
||||
class MyApp: public wxApp
|
||||
{
|
||||
public:
|
||||
bool OnInit(void);
|
||||
};
|
||||
|
||||
class MyDialog: public wxDialog
|
||||
{
|
||||
public:
|
||||
MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title,
|
||||
const wxPoint& pos, const wxSize& size, const long windowStyle = wxDEFAULT_DIALOG_STYLE);
|
||||
~MyDialog();
|
||||
|
||||
void OnOK(wxCommandEvent& event);
|
||||
void OnExit(wxCommandEvent& event);
|
||||
void OnCloseWindow(wxCloseEvent& event);
|
||||
void Init(void);
|
||||
|
||||
protected:
|
||||
MyTaskBarIcon *m_taskBarIcon;
|
||||
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user