2002-02-05 11:34:33 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-10-19 10:39:53 -04:00
|
|
|
// Name: wx/x11/app.h
|
2002-02-05 11:34:33 -05:00
|
|
|
// Purpose: wxApp class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2002-02-05 11:34:33 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-10-19 10:39:53 -04:00
|
|
|
#ifndef _WX_X11_APP_H_
|
|
|
|
#define _WX_X11_APP_H_
|
2002-02-05 11:34:33 -05:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
#include "wx/event.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// forward declarations
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxFrame;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxWindow;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxApp;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxKeyEvent;
|
2007-11-23 09:13:50 -05:00
|
|
|
class WXDLLIMPEXP_FWD_BASE wxLog;
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxXVisualInfo;
|
2002-02-05 11:34:33 -05:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2002-02-15 06:14:42 -05:00
|
|
|
// the wxApp class for wxX11 - see wxAppBase for more details
|
2002-02-05 11:34:33 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxApp : public wxAppBase
|
2002-02-05 11:34:33 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxApp();
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxApp();
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
// override base class (pure) virtuals
|
|
|
|
// -----------------------------------
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2003-06-23 20:56:19 -04:00
|
|
|
virtual void Exit();
|
|
|
|
|
|
|
|
virtual void WakeUpIdle();
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
virtual bool OnInitGui();
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
// implementation from now on
|
|
|
|
// --------------------------
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
// Processes an X event.
|
2002-03-08 07:06:12 -05:00
|
|
|
virtual bool ProcessXEvent(WXEvent* event);
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
public:
|
|
|
|
// Implementation
|
2003-06-30 16:02:05 -04:00
|
|
|
virtual bool Initialize(int& argc, wxChar **argv);
|
2003-06-30 14:43:09 -04:00
|
|
|
virtual void CleanUp();
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 13:13:03 -05:00
|
|
|
WXWindow GetTopLevelWidget() const { return m_topLevelWidget; }
|
2002-02-05 11:34:33 -05:00
|
|
|
WXColormap GetMainColormap(WXDisplay* display);
|
|
|
|
long GetMaxRequestSize() const { return m_maxRequestSize; }
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
// This handler is called when a property change event occurs
|
2002-03-08 07:06:12 -05:00
|
|
|
virtual bool HandlePropertyChange(WXEvent *event);
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-15 06:14:42 -05:00
|
|
|
// Values that can be passed on the command line.
|
|
|
|
// Returns -1, -1 if none specified.
|
|
|
|
const wxSize& GetInitialSize() const { return m_initialSize; }
|
|
|
|
bool GetShowIconic() const { return m_showIconic; }
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-12-04 09:11:26 -05:00
|
|
|
#if wxUSE_UNICODE
|
|
|
|
// Global context for Pango layout. Either use X11
|
|
|
|
// or use Xft rendering according to GDK_USE_XFT
|
|
|
|
// environment variable
|
|
|
|
PangoContext* GetPangoContext();
|
2003-09-15 15:48:16 -04:00
|
|
|
#endif
|
2003-04-07 13:15:11 -04:00
|
|
|
|
2007-11-05 17:29:16 -05:00
|
|
|
wxXVisualInfo* GetVisualInfo(WXDisplay* WXUNUSED(display))
|
2003-04-07 13:15:11 -04:00
|
|
|
{
|
|
|
|
// this should be implemented correctly for wxBitmap to work
|
|
|
|
// with multiple display
|
|
|
|
return m_visualInfo;
|
|
|
|
}
|
2017-11-12 12:33:37 -05:00
|
|
|
virtual void* GetXVisualInfo() { return NULL; }
|
2003-04-07 13:15:11 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
public:
|
2002-02-15 06:14:42 -05:00
|
|
|
static long sm_lastMessageTime;
|
2003-09-15 15:48:16 -04:00
|
|
|
bool m_showIconic;
|
2002-02-15 06:14:42 -05:00
|
|
|
wxSize m_initialSize;
|
2002-04-01 09:09:44 -05:00
|
|
|
|
2003-04-07 13:15:11 -04:00
|
|
|
#if !wxUSE_NANOX
|
|
|
|
wxXVisualInfo* m_visualInfo;
|
2002-04-01 09:09:44 -05:00
|
|
|
#endif
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2002-02-05 11:34:33 -05:00
|
|
|
protected:
|
2002-02-05 13:13:03 -05:00
|
|
|
WXWindow m_topLevelWidget;
|
2002-02-05 11:34:33 -05:00
|
|
|
WXColormap m_mainColormap;
|
|
|
|
long m_maxRequestSize;
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxApp);
|
2002-02-05 11:34:33 -05:00
|
|
|
};
|
|
|
|
|
2006-10-19 10:39:53 -04:00
|
|
|
#endif // _WX_X11_APP_H_
|
2002-02-05 11:34:33 -05:00
|
|
|
|