1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-10-19 14:29:32 -04:00
|
|
|
// Name: wx/gtk/app.h
|
2009-02-04 12:42:28 -05:00
|
|
|
// Purpose: wxApp definition for wxGTK
|
1998-05-20 10:01:55 -04:00
|
|
|
// Author: Robert Roebling
|
1998-10-24 13:12:05 -04:00
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-26 14:36:19 -04:00
|
|
|
#ifndef _WX_GTK_APP_H_
|
|
|
|
#define _WX_GTK_APP_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxApp
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 18:58:06 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxApp: public wxAppBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-07-05 20:44:26 -04:00
|
|
|
public:
|
1999-01-08 15:33:18 -05:00
|
|
|
wxApp();
|
2001-09-28 09:53:55 -04:00
|
|
|
virtual ~wxApp();
|
1998-08-07 11:09:04 -04:00
|
|
|
|
2014-12-14 06:12:31 -05:00
|
|
|
/* override for altering the way wxGTK initializes the GUI
|
1999-07-05 20:44:26 -04:00
|
|
|
* (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(). */
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool SetNativeTheme(const wxString& theme) wxOVERRIDE;
|
|
|
|
virtual bool OnInitGui() wxOVERRIDE;
|
1999-07-05 20:44:26 -04:00
|
|
|
|
|
|
|
// override base class (pure) virtuals
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual void WakeUpIdle() wxOVERRIDE;
|
1998-06-03 15:06:13 -04:00
|
|
|
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool Initialize(int& argc, wxChar **argv) wxOVERRIDE;
|
|
|
|
virtual void CleanUp() wxOVERRIDE;
|
1998-08-07 11:09:04 -04:00
|
|
|
|
2006-08-25 18:48:07 -04:00
|
|
|
virtual void OnAssertFailure(const wxChar *file,
|
|
|
|
int line,
|
|
|
|
const wxChar *func,
|
|
|
|
const wxChar *cond,
|
2014-03-29 20:02:23 -04:00
|
|
|
const wxChar *msg) wxOVERRIDE;
|
1999-07-05 20:44:26 -04:00
|
|
|
|
2007-04-15 19:06:45 -04:00
|
|
|
// GTK-specific methods
|
|
|
|
// -------------------
|
|
|
|
|
|
|
|
// this can be overridden to return a specific visual to be used for GTK+
|
|
|
|
// instead of the default one (it's used by wxGLApp)
|
|
|
|
//
|
|
|
|
// must return XVisualInfo pointer (it is not freed by caller)
|
|
|
|
virtual void *GetXVisualInfo() { return NULL; }
|
|
|
|
|
2012-11-24 19:15:26 -05:00
|
|
|
// Check if we're using a global menu. Currently this is only true when
|
|
|
|
// running under Ubuntu Unity and global menu is not disabled.
|
|
|
|
//
|
|
|
|
// This is mostly used in the implementation in order to work around
|
|
|
|
// various bugs arising due to this.
|
|
|
|
static bool GTKIsUsingGlobalMenu();
|
|
|
|
|
2007-04-15 19:06:45 -04:00
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
2007-04-19 12:58:07 -04:00
|
|
|
// check for pending events, without interference from our idle source
|
|
|
|
bool EventsPending();
|
|
|
|
bool DoIdle();
|
|
|
|
|
1999-07-05 20:44:26 -04:00
|
|
|
private:
|
2001-07-11 11:19:32 -04:00
|
|
|
// true if we're inside an assert modal dialog
|
|
|
|
bool m_isInAssert;
|
2009-03-21 19:36:37 -04:00
|
|
|
|
2007-04-19 12:58:07 -04:00
|
|
|
#if wxUSE_THREADS
|
2009-10-13 11:40:35 -04:00
|
|
|
wxMutex m_idleMutex;
|
2007-04-19 12:58:07 -04:00
|
|
|
#endif
|
2011-09-07 12:56:50 -04:00
|
|
|
unsigned m_idleSourceId;
|
1999-07-05 20:44:26 -04:00
|
|
|
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxApp);
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2006-08-26 14:36:19 -04:00
|
|
|
#endif // _WX_GTK_APP_H_
|