]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/taskbar/tbtest.h
With wxTE_PROCESS_TAB, tabs are now inserted in the text control
[wxWidgets.git] / samples / taskbar / tbtest.h
index a3ce1b2940e9f1aba33db24202a9a33fb5ce34f5..b4862386b6ea87257990f5168d9ccd828ec58f7a 100644 (file)
@@ -14,12 +14,13 @@ class MyTaskBarIcon: public wxTaskBarIcon
 public:
     MyTaskBarIcon() {};
 
-    void OnRButtonUp(wxEvent&);
-    void OnLButtonDClick(wxEvent&);
+    void OnLButtonDClick(wxTaskBarIconEvent&);
     void OnMenuRestore(wxCommandEvent&);
     void OnMenuExit(wxCommandEvent&);
     void OnMenuSetNewIcon(wxCommandEvent&);
 
+    virtual wxMenu *CreatePopupMenu();
+
 DECLARE_EVENT_TABLE()
 };
 
@@ -29,8 +30,6 @@ class MyApp: public wxApp
 {
 public:
     bool OnInit(void);
-protected:
-    MyTaskBarIcon   m_taskBarIcon;
 };
 
 class MyDialog: public wxDialog
@@ -38,12 +37,16 @@ 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()
 };