d48b06bd90
- implements YieldFor() with event filtering for wxMSW and wxGTK, adds TODO markers in other ports; - replaces wxYield() in GTK's clipboard code with a wxTheApp->YieldFor() call, thus fixing possible reentrancies (and modifies clipboard sample to test synchronous IsSupported calls) - replaces wxYieldIfNeeded() calls in wxProgressDialog with wxTheApp->YieldFor() calls, so that it processes only UI/user-input events, thus fixing the race condition visible in the "thread" sample - documents the new functions git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58654 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/mgl/app.h
|
|
// Purpose:
|
|
// Author: Vaclav Slavik
|
|
// Id: $Id$
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __WX_APP_H__
|
|
#define __WX_APP_H__
|
|
|
|
#include "wx/frame.h"
|
|
#include "wx/icon.h"
|
|
#include "wx/vidmode.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// classes
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxApp;
|
|
class WXDLLIMPEXP_FWD_BASE wxLog;
|
|
class WXDLLIMPEXP_FWD_CORE wxEventLoop;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// wxApp
|
|
//-----------------------------------------------------------------------------
|
|
|
|
class WXDLLIMPEXP_CORE wxApp: public wxAppBase
|
|
{
|
|
public:
|
|
wxApp();
|
|
virtual ~wxApp();
|
|
|
|
/* override for altering the way wxGTK intializes the GUI
|
|
* (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by
|
|
* default. when overriding this method, the code in it is likely to be
|
|
* platform dependent, otherwise use OnInit(). */
|
|
virtual bool OnInitGui();
|
|
|
|
// override base class (pure) virtuals
|
|
virtual bool Initialize(int& argc, wxChar **argv);
|
|
virtual void CleanUp();
|
|
|
|
virtual void Exit();
|
|
virtual void WakeUpIdle();
|
|
|
|
virtual wxVideoMode GetDisplayMode() const { return m_displayMode; }
|
|
virtual bool SetDisplayMode(const wxVideoMode& mode);
|
|
|
|
private:
|
|
DECLARE_DYNAMIC_CLASS(wxApp)
|
|
|
|
virtual bool DoYield(bool onlyIfNeeded, long eventsToProcess);
|
|
|
|
wxVideoMode m_displayMode;
|
|
};
|
|
|
|
#endif // __WX_APP_H__
|