2009-01-17 05:43:43 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-19 20:14:35 -04:00
|
|
|
// Name: wx/osx/frame.h
|
2009-01-17 05:43:43 -05:00
|
|
|
// Purpose: wxFrame class
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created: 1998-01-01
|
|
|
|
// Copyright: (c) Stefan Csomor
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_FRAME_H_
|
|
|
|
#define _WX_FRAME_H_
|
|
|
|
|
|
|
|
#include "wx/toolbar.h"
|
|
|
|
#include "wx/accel.h"
|
|
|
|
#include "wx/icon.h"
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxMacToolTip ;
|
|
|
|
|
2009-08-21 06:41:26 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxFrame: public wxFrameBase
|
2009-01-17 05:43:43 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// construction
|
2018-01-18 13:42:08 -05:00
|
|
|
wxFrame() { }
|
2009-01-17 05:43:43 -05:00
|
|
|
wxFrame(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxFrameNameStr))
|
2009-01-17 05:43:43 -05:00
|
|
|
{
|
|
|
|
Create(parent, id, title, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxFrameNameStr));
|
2009-01-17 05:43:43 -05:00
|
|
|
|
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
|
|
|
|
|
|
|
// get the origin of the client area (which may be different from (0, 0)
|
|
|
|
// if the frame has a toolbar) in client coordinates
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual wxPoint GetClientAreaOrigin() const wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
|
|
|
|
// override some more virtuals
|
2016-02-21 13:55:46 -05:00
|
|
|
virtual bool Show(bool show = true) wxOVERRIDE;
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual bool Enable(bool enable = true) wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
|
|
|
|
// event handlers
|
|
|
|
void OnActivate(wxActivateEvent& event);
|
|
|
|
void OnSysColourChanged(wxSysColourChangedEvent& event);
|
|
|
|
|
|
|
|
// Toolbar
|
|
|
|
#if wxUSE_TOOLBAR
|
|
|
|
virtual wxToolBar* CreateToolBar(long style = -1,
|
|
|
|
wxWindowID id = -1,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxToolBarNameStr)) wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual void SetToolBar(wxToolBar *toolbar) wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
#endif // wxUSE_TOOLBAR
|
|
|
|
|
|
|
|
// Status bar
|
|
|
|
#if wxUSE_STATUSBAR
|
|
|
|
virtual wxStatusBar* OnCreateStatusBar(int number = 1,
|
2009-04-25 08:59:09 -04:00
|
|
|
long style = wxSTB_DEFAULT_STYLE,
|
2009-01-17 05:43:43 -05:00
|
|
|
wxWindowID id = 0,
|
2019-10-22 06:34:29 -04:00
|
|
|
const wxString& name = wxASCII_STR(wxStatusLineNameStr)) wxOVERRIDE;
|
2020-12-31 12:51:46 -05:00
|
|
|
|
|
|
|
virtual void SetStatusBar(wxStatusBar *statbar) wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
#endif // wxUSE_STATUSBAR
|
|
|
|
|
|
|
|
void PositionBars();
|
|
|
|
|
2012-03-01 10:04:42 -05:00
|
|
|
// internal response to size events
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual void MacOnInternalSize() wxOVERRIDE { PositionBars(); }
|
2009-12-03 12:20:15 -05:00
|
|
|
|
2009-01-17 05:43:43 -05:00
|
|
|
protected:
|
|
|
|
#if wxUSE_TOOLBAR
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual void PositionToolBar() wxOVERRIDE;
|
2008-06-11 12:30:48 -04:00
|
|
|
#endif
|
2009-01-17 05:43:43 -05:00
|
|
|
#if wxUSE_STATUSBAR
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual void PositionStatusBar() wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// override base class virtuals
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual void DoGetClientSize(int *width, int *height) const wxOVERRIDE;
|
|
|
|
virtual void DoSetClientSize(int width, int height) wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
|
2020-07-14 11:58:15 -04:00
|
|
|
#if wxUSE_MENUBAR
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual void DetachMenuBar() wxOVERRIDE;
|
|
|
|
virtual void AttachMenuBar(wxMenuBar *menubar) wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
#endif
|
|
|
|
|
2015-11-22 03:36:45 -05:00
|
|
|
virtual bool MacIsChildOfClientArea( const wxWindow* child ) const wxOVERRIDE;
|
2009-01-17 05:43:43 -05:00
|
|
|
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxFrame);
|
2009-01-17 05:43:43 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_FRAME_H_
|