Demonstrate the use of wxTipWindow in the dialogs sample

As we show wxRichToolTip in this sample, it's only logical to show the
simple wxTipWindow in it too.
This commit is contained in:
Vadim Zeitlin
2020-07-09 14:52:14 +02:00
parent 099ea7176d
commit fd29d86da1
2 changed files with 53 additions and 0 deletions

View File

@@ -543,6 +543,13 @@ private:
SettingsData m_settingsData;
#endif // USE_SETTINGS_DIALOG
#if wxUSE_TIPWINDOW
void OnShowTip(wxCommandEvent& event);
void OnUpdateShowTipUI(wxUpdateUIEvent& event);
wxTipWindow *m_tipWindow;
#endif // wxUSE_TIPWINDOW
wxDECLARE_EVENT_TABLE();
};
@@ -621,6 +628,7 @@ enum
DIALOGS_REPLACE,
DIALOGS_REQUEST,
DIALOGS_NOTIFY_MSG,
DIALOGS_SHOW_TIP,
DIALOGS_RICHTIP_DIALOG,
DIALOGS_PROPERTY_SHEET,
DIALOGS_PROPERTY_SHEET_TOOLBOOK,