git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27361
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool MyApp::OnInit(void)
{
// Create the main frame window
bool MyApp::OnInit(void)
{
// Create the main frame window
- dialog = new MyDialog(NULL, -1, wxT("wxTaskBarIcon Test Dialog"), wxPoint(-1, -1), wxSize(365, 290), wxDIALOG_MODELESS|wxDEFAULT_DIALOG_STYLE);
+ dialog = new MyDialog(NULL, wxID_ANY, wxT("wxTaskBarIcon Test Dialog"), wxDefaultPosition, wxSize(365, 290), wxDIALOG_MODELESS|wxDEFAULT_DIALOG_STYLE);
void MyDialog::OnOK(wxCommandEvent& WXUNUSED(event))
{
void MyDialog::OnOK(wxCommandEvent& WXUNUSED(event))
{
}
void MyDialog::OnExit(wxCommandEvent& WXUNUSED(event))
{
}
void MyDialog::OnExit(wxCommandEvent& WXUNUSED(event))
{
}
void MyDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
}
void MyDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
void MyDialog::Init(void)
{
void MyDialog::Init(void)
{
- (void)new wxStaticText(this, -1, _T("Press OK to hide me, Exit to quit."),
+ (void)new wxStaticText(this, wxID_ANY, _T("Press OK to hide me, Exit to quit."),
- (void)new wxStaticText(this, -1, _T("Double-click on the taskbar icon to show me again."),
+ (void)new wxStaticText(this, wxID_ANY, _T("Double-click on the taskbar icon to show me again."),
wxPoint(10, 40));
(void)new wxButton(this, wxID_EXIT, _T("Exit"), wxPoint(185, 230), wxSize(80, 25));
wxPoint(10, 40));
(void)new wxButton(this, wxID_EXIT, _T("Exit"), wxPoint(185, 230), wxSize(80, 25));
void MyTaskBarIcon::OnMenuRestore(wxCommandEvent& )
{
void MyTaskBarIcon::OnMenuRestore(wxCommandEvent& )
{
}
void MyTaskBarIcon::OnMenuExit(wxCommandEvent& )
{
}
void MyTaskBarIcon::OnMenuExit(wxCommandEvent& )
{
// Nudge wxWindows into destroying the dialog, since
// with a hidden window no messages will get sent to put
// Nudge wxWindows into destroying the dialog, since
// with a hidden window no messages will get sent to put
void MyTaskBarIcon::OnLButtonDClick(wxEvent&)
{
void MyTaskBarIcon::OnLButtonDClick(wxEvent&)
{