WXDLLEXPORT_DATA(extern const wxChar*) wxFrameNameStr;
WXDLLEXPORT_DATA(extern const wxChar*) wxStatusLineNameStr;
WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr;
+WXDLLEXPORT_DATA(extern wxWindow*) wxWndHook;
class WXDLLEXPORT wxMenuBar;
class WXDLLEXPORT wxStatusBar;
// Yield to other apps/messages
bool WXDLLEXPORT wxYield(void);
+extern MRESULT EXPENTRY wxWndProc( HWND
+ ,ULONG
+ ,MPARAM
+ ,MPARAM
+ );
+
// Represents the application. Derive OnInit and declare
// a new App object to start application
class WXDLLEXPORT wxApp : public wxAppBase
//
// Accessors
+ //
bool Ok(void) const {return m_bIsInit; }
//
class WXDLLEXPORT wxFrame;
+void wxSetShortCutKey(wxChar* zText);
+
// ----------------------------------------------------------------------------
// Menu
// ----------------------------------------------------------------------------
m_foregroundColour = wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT);
// GRG, changed Mar/2000
-#if 0 // !defined(__WXMAC__) && !defined(__WXGTK__)
+#if defined(__VISAGECPP__) && __IBMCPP__ < 0x400
+ // For now VisualAge 3.0 needs it this way
m_font = *wxSWISS_FONT; // and this?
#else
m_font = settings.GetSystemFont(wxSYS_DEFAULT_GUI_FONT);