]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/app.h
fix for Unix compilation
[wxWidgets.git] / include / wx / motif / app.h
index fef30fbcdc3bd896e47055d409361d85a5c2b774..893423b3c08a48b6393a42ad014cd3b58e452828 100644 (file)
@@ -53,13 +53,10 @@ public:
     virtual int MainLoop();
     virtual void ExitMainLoop();
     virtual bool Initialized();
-    virtual bool Pending();
-    virtual void Dispatch();
 
     virtual void Exit();
 
     virtual bool Yield(bool onlyIfNeeded = FALSE);
-    virtual bool ProcessIdle();
     virtual void WakeUpIdle(); // implemented in motif/evtloop.cpp
     
     virtual bool OnInitGui();
@@ -67,16 +64,6 @@ public:
     // implementation from now on
     // --------------------------
     
-    void OnIdle(wxIdleEvent& event);
-    
-    // Send idle event to all top-level windows.
-    // Returns TRUE if more idle time is requested.
-    bool SendIdleEvents();
-    
-    // Send idle event to window and all subwindows
-    // Returns TRUE if more idle time is requested.
-    bool SendIdleEvents(wxWindow* win);
-    
 protected:
     bool                  m_showOnInit;
     
@@ -110,8 +97,6 @@ private:
     DECLARE_EVENT_TABLE()
 };
 
-int WXDLLEXPORT wxEntry( int argc, char *argv[] );
-
 #endif
 // _WX_APP_H_