2001-08-05 22:40:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/toplevel.h
|
|
|
|
// Purpose: declares wxTopLevelWindow class, the base class for all
|
|
|
|
// top level windows (such as frames and dialogs)
|
2001-09-15 22:13:08 +00:00
|
|
|
// Author: Vadim Zeitlin, Vaclav Slavik
|
2001-08-05 22:40:41 +00:00
|
|
|
// Modified by:
|
|
|
|
// Created: 06.08.01
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2004-05-23 14:56:36 +00:00
|
|
|
// Vaclav Slavik <vaclav@wxwidgets.org>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-08-05 22:40:41 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
#ifndef _WX_TOPLEVEL_BASE_H_
|
|
|
|
#define _WX_TOPLEVEL_BASE_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-08-31 11:29:13 +00:00
|
|
|
#pragma interface "toplevelbase.h"
|
|
|
|
#endif
|
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-08-05 22:40:41 +00:00
|
|
|
#include "wx/window.h"
|
2002-03-26 21:54:23 +00:00
|
|
|
#include "wx/iconbndl.h"
|
2001-09-15 22:13:08 +00:00
|
|
|
|
|
|
|
// the default names for various classs
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxFrameNameStr;
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxTopLevelWindowBase;
|
|
|
|
|
2001-09-30 23:09:24 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// constants
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-04-13 12:22:34 +00:00
|
|
|
// style common to both wxFrame and wxDialog
|
|
|
|
#define wxSTAY_ON_TOP 0x8000
|
|
|
|
#define wxICONIZE 0x4000
|
|
|
|
#define wxMINIMIZE wxICONIZE
|
|
|
|
#define wxMAXIMIZE 0x2000
|
|
|
|
#define wxCLOSE_BOX 0x1000
|
|
|
|
|
|
|
|
#define wxSYSTEM_MENU 0x0800
|
|
|
|
#define wxMINIMIZE_BOX 0x0400
|
|
|
|
#define wxMAXIMIZE_BOX 0x0200
|
|
|
|
#define wxTINY_CAPTION_HORIZ 0x0100
|
|
|
|
#define wxTINY_CAPTION_VERT 0x0080
|
|
|
|
#define wxRESIZE_BORDER 0x0040
|
|
|
|
|
|
|
|
// deprecated versions defined for compatibility reasons
|
|
|
|
#define wxRESIZE_BOX wxMAXIMIZE_BOX
|
|
|
|
#define wxTHICK_FRAME wxRESIZE_BORDER
|
|
|
|
|
|
|
|
// obsolete styles, unused any more
|
|
|
|
#define wxDIALOG_MODAL 0
|
|
|
|
#define wxDIALOG_MODELESS 0
|
|
|
|
#define wxNO_3D 0
|
|
|
|
#define wxUSER_COLOURS 0
|
|
|
|
|
|
|
|
// default style
|
|
|
|
//
|
|
|
|
// under Windows CE (at least when compiling with eVC 4) we should create
|
|
|
|
// top level windows without any styles at all for them to appear
|
|
|
|
// "correctly", i.e. as full screen windows with a "hide" button (same as
|
|
|
|
// "close" but round instead of squared and just hides the applications
|
|
|
|
// instead of closing it) in the title bar
|
2004-05-27 11:31:12 +00:00
|
|
|
#if defined(__WXWINCE__)
|
2004-09-23 18:20:56 +00:00
|
|
|
#if defined(__SMARTPHONE__)
|
|
|
|
#define wxDEFAULT_FRAME_STYLE (wxMAXIMIZE)
|
2004-05-27 11:31:12 +00:00
|
|
|
#elif defined(__WINCE_STANDARDSDK__)
|
2004-09-23 18:20:56 +00:00
|
|
|
#define wxDEFAULT_FRAME_STYLE (wxMAXIMIZE|wxCLOSE_BOX)
|
|
|
|
#else
|
|
|
|
#define wxDEFAULT_FRAME_STYLE (0)
|
|
|
|
#endif
|
2004-04-13 12:22:34 +00:00
|
|
|
#else // !__WXWINCE__
|
|
|
|
#define wxDEFAULT_FRAME_STYLE \
|
|
|
|
(wxSYSTEM_MENU | \
|
|
|
|
wxRESIZE_BORDER | \
|
|
|
|
wxMINIMIZE_BOX | \
|
|
|
|
wxMAXIMIZE_BOX | \
|
|
|
|
wxCLOSE_BOX | \
|
|
|
|
wxCAPTION | \
|
|
|
|
wxCLIP_CHILDREN)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
// Dialogs are created in a special way
|
2001-09-22 22:39:03 +00:00
|
|
|
#define wxTOPLEVEL_EX_DIALOG 0x00000008
|
2001-09-15 22:13:08 +00:00
|
|
|
|
|
|
|
// Styles for ShowFullScreen
|
|
|
|
// (note that wxTopLevelWindow only handles wxFULLSCREEN_NOBORDER and
|
|
|
|
// wxFULLSCREEN_NOCAPTION; the rest is handled by wxTopLevelWindow)
|
2001-09-30 23:09:24 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
wxFULLSCREEN_NOMENUBAR = 0x0001,
|
|
|
|
wxFULLSCREEN_NOTOOLBAR = 0x0002,
|
|
|
|
wxFULLSCREEN_NOSTATUSBAR = 0x0004,
|
|
|
|
wxFULLSCREEN_NOBORDER = 0x0008,
|
|
|
|
wxFULLSCREEN_NOCAPTION = 0x0010,
|
2001-12-08 23:13:27 +00:00
|
|
|
|
|
|
|
wxFULLSCREEN_ALL = wxFULLSCREEN_NOMENUBAR | wxFULLSCREEN_NOTOOLBAR |
|
|
|
|
wxFULLSCREEN_NOSTATUSBAR | wxFULLSCREEN_NOBORDER |
|
2001-09-30 23:09:24 +00:00
|
|
|
wxFULLSCREEN_NOCAPTION
|
|
|
|
};
|
|
|
|
|
2004-09-07 21:02:55 +00:00
|
|
|
// Styles for RequestUserAttention
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
wxUSER_ATTENTION_INFO = 1,
|
|
|
|
wxUSER_ATTENTION_ERROR = 2
|
|
|
|
};
|
|
|
|
|
2001-08-05 22:40:41 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxTopLevelWindow: a top level (as opposed to child) window
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
class WXDLLEXPORT wxTopLevelWindowBase : public wxWindow
|
2001-08-05 22:40:41 +00:00
|
|
|
{
|
|
|
|
public:
|
2001-09-15 22:13:08 +00:00
|
|
|
// construction
|
|
|
|
wxTopLevelWindowBase();
|
2002-01-07 21:52:28 +00:00
|
|
|
virtual ~wxTopLevelWindowBase();
|
2001-09-30 23:09:24 +00:00
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
// top level wnd state
|
|
|
|
// --------------------
|
|
|
|
|
2004-09-23 18:20:56 +00:00
|
|
|
// maximize = true => maximize, otherwise - restore
|
|
|
|
virtual void Maximize(bool maximize = true) = 0;
|
2001-09-15 22:13:08 +00:00
|
|
|
|
|
|
|
// undo Maximize() or Iconize()
|
|
|
|
virtual void Restore() = 0;
|
|
|
|
|
2004-09-23 18:20:56 +00:00
|
|
|
// iconize = true => iconize, otherwise - restore
|
|
|
|
virtual void Iconize(bool iconize = true) = 0;
|
2001-09-15 22:13:08 +00:00
|
|
|
|
2004-09-23 18:20:56 +00:00
|
|
|
// return true if the frame is maximized
|
2001-09-15 22:13:08 +00:00
|
|
|
virtual bool IsMaximized() const = 0;
|
|
|
|
|
2004-09-23 18:20:56 +00:00
|
|
|
// return true if the frame is iconized
|
2001-09-15 22:13:08 +00:00
|
|
|
virtual bool IsIconized() const = 0;
|
|
|
|
|
|
|
|
// get the frame icon
|
2002-03-26 21:54:23 +00:00
|
|
|
const wxIcon& GetIcon() const { return m_icons.GetIcon( -1 ); }
|
|
|
|
|
|
|
|
// get the frame icons
|
|
|
|
const wxIconBundle& GetIcons() const { return m_icons; }
|
2001-09-15 22:13:08 +00:00
|
|
|
|
|
|
|
// set the frame icon
|
2002-03-26 21:54:23 +00:00
|
|
|
virtual void SetIcon(const wxIcon& icon) { m_icons = wxIconBundle( icon ); }
|
|
|
|
|
|
|
|
// set the frame icons
|
|
|
|
virtual void SetIcons(const wxIconBundle& icons ) { m_icons = icons; }
|
2001-09-15 22:13:08 +00:00
|
|
|
|
2001-09-26 22:10:42 +00:00
|
|
|
// maximize the window to cover entire screen
|
|
|
|
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) = 0;
|
2001-12-08 23:13:27 +00:00
|
|
|
|
2004-09-23 18:20:56 +00:00
|
|
|
// return true if the frame is in fullscreen mode
|
2001-09-26 22:10:42 +00:00
|
|
|
virtual bool IsFullScreen() const = 0;
|
|
|
|
|
2001-08-05 22:40:41 +00:00
|
|
|
/*
|
|
|
|
for now we already have them in wxWindow, but this is wrong: these
|
|
|
|
methods really only make sense for wxTopLevelWindow!
|
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
virtual void SetTitle(const wxString& title) = 0;
|
2001-08-05 22:40:41 +00:00
|
|
|
virtual wxString GetTitle() const = 0;
|
|
|
|
*/
|
2001-09-15 22:13:08 +00:00
|
|
|
|
2003-03-28 23:05:05 +00:00
|
|
|
// Set the shape of the window to the given region.
|
2004-09-23 18:20:56 +00:00
|
|
|
// Returns true if the platform supports this feature (and the
|
2003-03-28 23:05:05 +00:00
|
|
|
// operation is successful.)
|
2004-09-23 18:20:56 +00:00
|
|
|
virtual bool SetShape(const wxRegion& WXUNUSED(region)) { return false; }
|
2003-03-28 23:05:05 +00:00
|
|
|
|
2004-09-07 21:02:55 +00:00
|
|
|
// Attracts the users attention to this window if the application is
|
|
|
|
// inactive (should be called when a background event occurs)
|
|
|
|
virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
|
2004-09-26 14:17:23 +00:00
|
|
|
|
|
|
|
// Is this the active frame (highlighted in the taskbar)?
|
2004-09-26 14:32:09 +00:00
|
|
|
virtual bool IsActive()
|
2004-09-26 14:17:23 +00:00
|
|
|
{ return (wxGetTopLevelParent(FindFocus()) == this); }
|
2004-09-07 21:02:55 +00:00
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
// override some base class virtuals
|
|
|
|
virtual bool Destroy();
|
2004-09-23 18:20:56 +00:00
|
|
|
virtual bool IsTopLevel() const { return true; }
|
2002-03-09 02:58:13 +00:00
|
|
|
virtual wxSize GetMaxSize() const;
|
2001-09-15 22:13:08 +00:00
|
|
|
|
|
|
|
// event handlers
|
|
|
|
void OnCloseWindow(wxCloseEvent& event);
|
|
|
|
void OnSize(wxSizeEvent& event);
|
|
|
|
|
|
|
|
// this should go away, but for now it's called from docview.cpp,
|
|
|
|
// so should be there for all platforms
|
|
|
|
void OnActivate(wxActivateEvent &WXUNUSED(event)) { }
|
|
|
|
|
2003-07-09 10:15:21 +00:00
|
|
|
// do the window-specific processing after processing the update event
|
|
|
|
virtual void DoUpdateWindowUI(wxUpdateUIEvent& event) ;
|
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
protected:
|
|
|
|
// the frame client to screen translation should take account of the
|
|
|
|
// toolbar which may shift the origin of the client area
|
|
|
|
virtual void DoClientToScreen(int *x, int *y) const;
|
|
|
|
virtual void DoScreenToClient(int *x, int *y) const;
|
|
|
|
|
2002-08-15 20:42:07 +00:00
|
|
|
// test whether this window makes part of the frame
|
|
|
|
// (menubar, toolbar and statusbar are excluded from automatic layout)
|
|
|
|
virtual bool IsOneOfBars(const wxWindow *WXUNUSED(win)) const
|
2004-09-23 18:20:56 +00:00
|
|
|
{ return false; }
|
2002-08-15 20:42:07 +00:00
|
|
|
|
2002-08-16 00:44:03 +00:00
|
|
|
// check if we should exit the program after deleting this top level
|
2002-08-15 20:42:07 +00:00
|
|
|
// window (this is used in common dtor and wxMSW code)
|
2002-08-16 00:44:03 +00:00
|
|
|
bool IsLastBeforeExit() const;
|
2002-08-15 20:42:07 +00:00
|
|
|
|
2004-09-23 18:20:56 +00:00
|
|
|
// send the iconize event, return true if processed
|
|
|
|
bool SendIconizeEvent(bool iconized = true);
|
2001-09-15 22:13:08 +00:00
|
|
|
|
2004-03-13 20:41:09 +00:00
|
|
|
// Get the default size for the new window if no explicit size given. If
|
|
|
|
// there are better default sizes then these can be changed, just as long
|
2004-04-04 17:26:56 +00:00
|
|
|
// as they are not too small for TLWs (and not larger than screen).
|
|
|
|
static wxSize GetDefaultSize();
|
2004-09-23 18:20:56 +00:00
|
|
|
static int WidthDefault(int w) { return w == wxDefaultCoord ? GetDefaultSize().x : w; }
|
|
|
|
static int HeightDefault(int h) { return h == wxDefaultCoord ? GetDefaultSize().y : h; }
|
2004-03-13 20:41:09 +00:00
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
// the frame icon
|
2002-03-26 21:54:23 +00:00
|
|
|
wxIconBundle m_icons;
|
2001-09-15 22:13:08 +00:00
|
|
|
|
2003-07-22 00:24:07 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxTopLevelWindowBase)
|
2001-09-15 22:13:08 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2001-08-05 22:40:41 +00:00
|
|
|
};
|
|
|
|
|
2001-09-15 22:13:08 +00:00
|
|
|
|
|
|
|
// include the real class declaration
|
2001-09-24 00:34:14 +00:00
|
|
|
#if defined(__WXMSW__)
|
|
|
|
#include "wx/msw/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowMSW
|
|
|
|
#elif defined(__WXGTK__)
|
2001-09-15 22:13:08 +00:00
|
|
|
#include "wx/gtk/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowGTK
|
2002-02-05 16:34:33 +00:00
|
|
|
#elif defined(__WXX11__)
|
|
|
|
#include "wx/x11/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowX11
|
2001-09-15 22:13:08 +00:00
|
|
|
#elif defined(__WXMGL__)
|
|
|
|
#include "wx/mgl/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowMGL
|
2001-09-30 09:12:14 +00:00
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
#include "wx/mac/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowMac
|
2003-03-22 06:18:36 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowCocoa
|
2002-01-07 00:43:02 +00:00
|
|
|
#elif defined(__WXPM__)
|
|
|
|
#include "wx/os2/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowOS2
|
2003-01-06 16:36:23 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
|
|
|
#include "wx/motif/toplevel.h"
|
|
|
|
#define wxTopLevelWindowNative wxTopLevelWindowMotif
|
2001-09-15 22:13:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __WXUNIVERSAL__
|
|
|
|
#include "wx/univ/toplevel.h"
|
|
|
|
#else // !__WXUNIVERSAL__
|
|
|
|
#ifdef wxTopLevelWindowNative
|
|
|
|
class WXDLLEXPORT wxTopLevelWindow : public wxTopLevelWindowNative
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// construction
|
|
|
|
wxTopLevelWindow() { Init(); }
|
|
|
|
wxTopLevelWindow(wxWindow *parent,
|
2003-03-21 02:58:55 +00:00
|
|
|
wxWindowID winid,
|
2001-09-15 22:13:08 +00:00
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
|
|
|
const wxString& name = wxFrameNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
2003-03-21 02:58:55 +00:00
|
|
|
Create(parent, winid, title, pos, size, style, name);
|
2001-09-15 22:13:08 +00:00
|
|
|
}
|
|
|
|
|
2003-07-22 00:24:07 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxTopLevelWindow)
|
2001-09-15 22:13:08 +00:00
|
|
|
};
|
|
|
|
#endif // wxTopLevelWindowNative
|
|
|
|
#endif // __WXUNIVERSAL__/!__WXUNIVERSAL__
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _WX_TOPLEVEL_BASE_H_
|