# include "wx/image.h"
# include "wx/help.h"
+#if wxUSE_TOOLTIPS
+# include "wx/tooltip.h"
+#endif
+
// define this to 1 to use HTML help even under Windows (by default, Windows
// version will use WinHelp).
// Please also see samples/html/helpview.
wxString msg;
msg.Printf(wxT("We should now display help for window %d"), event.GetId());
wxMessageBox(msg);
+ //wxToolTip::Enable(TRUE);
+ //SetToolTip(msg);
}
void MyFrame::OnHtmlHelp(wxCommandEvent& event)
return FALSE;
}
+ if (extendedStyle != 0)
+ {
+ ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, extendedStyle);
+ ::SetWindowPos(GetHwnd(), NULL, 0, 0, 0, 0,
+ SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE);
+ }
// ::SetWindowLong(GWL_EXSTYLE) doesn't work for the dialogs, so try
// to take care of (at least some) extended style flags ourselves