added MSW-specific wxTaskBarIcon::ShowBalloon() method; use it in the taskbar sample (and also clean it up significantly)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50402 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-12-01 16:25:30 +00:00
parent 3ecee463f5
commit cdcfde5d20
4 changed files with 150 additions and 48 deletions

View File

@@ -9,7 +9,7 @@
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
class MyTaskBarIcon: public wxTaskBarIcon
class MyTaskBarIcon : public wxTaskBarIcon
{
public:
#if defined(__WXCOCOA__)
@@ -34,7 +34,7 @@ public:
// Define a new application
class MyApp: public wxApp
class MyApp : public wxApp
{
public:
virtual bool OnInit();
@@ -43,13 +43,11 @@ public:
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(const wxString& title);
virtual ~MyDialog();
protected:
void Init();
void OnAbout(wxCommandEvent& event);
void OnOK(wxCommandEvent& event);
void OnExit(wxCommandEvent& event);
void OnCloseWindow(wxCloseEvent& event);