]> git.saurik.com Git - wxWidgets.git/blame - include/wx/aui/floatpane.h
Add functor-taking overload of CallAfter().
[wxWidgets.git] / include / wx / aui / floatpane.h
CommitLineData
50acee04 1///////////////////////////////////////////////////////////////////////////////
be66f18e 2// Name: wx/aui/floatpane.h
50acee04
JS
3// Purpose: wxaui: wx advanced user interface - docking window manager
4// Author: Benjamin I. Williams
5// Modified by:
6// Created: 2005-05-17
be66f18e 7// RCS-ID: $Id$
50acee04
JS
8// Copyright: (C) Copyright 2005, Kirix Corporation, All Rights Reserved.
9// Licence: wxWindows Library Licence, Version 3.1
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_FLOATPANE_H_
13#define _WX_FLOATPANE_H_
14
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19#include "wx/defs.h"
1afad0ac 20#include "wx/weakref.h"
50acee04
JS
21
22#if wxUSE_AUI
23
81bed90e
VZ
24#if wxUSE_MINIFRAME
25 #include "wx/minifram.h"
26 #define wxAuiFloatingFrameBaseClass wxMiniFrame
50acee04 27#else
81bed90e
VZ
28 #include "wx/frame.h"
29 #define wxAuiFloatingFrameBaseClass wxFrame
50acee04
JS
30#endif
31
00c1c94c 32class WXDLLIMPEXP_AUI wxAuiFloatingFrame : public wxAuiFloatingFrameBaseClass
50acee04
JS
33{
34public:
00c1c94c 35 wxAuiFloatingFrame(wxWindow* parent,
9a29fe70 36 wxAuiManager* ownerMgr,
a3a5df9d 37 const wxAuiPaneInfo& pane,
bc429ce0
RR
38 wxWindowID id = wxID_ANY,
39 long style = wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION |
03647350 40 wxFRAME_NO_TASKBAR | wxFRAME_FLOAT_ON_PARENT |
bc429ce0 41 wxCLIP_CHILDREN
e5ab82d3 42 );
00c1c94c 43 virtual ~wxAuiFloatingFrame();
a3a5df9d 44 void SetPaneWindow(const wxAuiPaneInfo& pane);
4dc79cfb 45 wxAuiManager* GetOwnerManager() const;
03647350 46
bc429ce0
RR
47protected:
48 virtual void OnMoveStart();
9a29fe70 49 virtual void OnMoving(const wxRect& windowRect, wxDirection dir);
bc429ce0 50 virtual void OnMoveFinished();
03647350 51
50acee04
JS
52private:
53 void OnSize(wxSizeEvent& event);
54 void OnClose(wxCloseEvent& event);
55 void OnMoveEvent(wxMoveEvent& event);
56 void OnIdle(wxIdleEvent& event);
50acee04
JS
57 void OnActivate(wxActivateEvent& event);
58 static bool isMouseDown();
03647350 59
50acee04 60private:
9a29fe70
VZ
61 wxWindow* m_paneWindow; // pane window being managed
62 bool m_solidDrag; // true if system uses solid window drag
50acee04 63 bool m_moving;
9a29fe70
VZ
64 wxRect m_lastRect;
65 wxRect m_last2Rect;
66 wxRect m_last3Rect;
67 wxSize m_lastSize;
322c5ec4 68 wxDirection m_lastDirection;
50acee04 69
9a29fe70 70 wxWeakRef<wxAuiManager> m_ownerMgr;
a3a5df9d 71 wxAuiManager m_mgr;
50acee04 72
06d4c4d6 73#ifndef SWIG
50acee04 74 DECLARE_EVENT_TABLE()
4dc79cfb 75 DECLARE_CLASS(wxAuiFloatingFrame)
06d4c4d6 76#endif // SWIG
50acee04
JS
77};
78
79#endif // wxUSE_AUI
80#endif //_WX_FLOATPANE_H_
81