]> git.saurik.com Git - wxWidgets.git/blame - include/wx/univ/frame.h
corrected wxICON for Mac OS (Classic and X)
[wxWidgets.git] / include / wx / univ / frame.h
CommitLineData
1e6feb95
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/univ/frame.h
3// Purpose: wxFrame class for wxUniversal
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 19.05.01
7// RCS-ID: $Id$
8// Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_UNIV_FRAME_H_
13#define _WX_UNIV_FRAME_H_
14
15#ifdef __GNUG__
16 #pragma interface "univframe.h"
17#endif
18
19// ----------------------------------------------------------------------------
20// wxFrame
21// ----------------------------------------------------------------------------
22
23class wxFrame : public wxFrameNative
24{
25public:
26 wxFrame();
27 wxFrame(wxWindow *parent,
28 wxWindowID id,
29 const wxString& title,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 long style = wxDEFAULT_FRAME_STYLE,
33 const wxString& name = wxFrameNameStr);
34
35 virtual wxPoint GetClientAreaOrigin() const;
36
37protected:
38 void OnSize(wxSizeEvent& event);
39
40#if wxUSE_MENUS
41 // override to update menu bar position when the frame size changes
42 virtual void PositionMenuBar();
43#endif // wxUSE_MENUS
44
45 DECLARE_EVENT_TABLE()
46 DECLARE_DYNAMIC_CLASS(wxFrame)
47};
48
49#endif // _WX_UNIV_FRAME_H_