]> git.saurik.com Git - wxWidgets.git/blame - include/wx/aui/floatpane.h
fixes for the dummy classes (used when wxUSE_GRAPHICS_CONTEXT is 0)
[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"
20
21#if wxUSE_AUI
22
08469b1f
JS
23#include "wx/frame.h"
24
d02d8b4c 25#if defined( __WXMSW__ ) || defined( __WXMAC__ ) || defined( __WXGTK__ )
50acee04 26#include "wx/minifram.h"
00c1c94c 27#define wxAuiFloatingFrameBaseClass wxMiniFrame
50acee04 28#else
00c1c94c 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,
a3a5df9d
BW
36 wxAuiManager* owner_mgr,
37 const wxAuiPaneInfo& pane,
bc429ce0
RR
38 wxWindowID id = wxID_ANY,
39 long style = wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION |
40 wxFRAME_NO_TASKBAR | wxFRAME_FLOAT_ON_PARENT |
41 wxCLIP_CHILDREN
e5ab82d3 42 );
00c1c94c 43 virtual ~wxAuiFloatingFrame();
a3a5df9d 44 void SetPaneWindow(const wxAuiPaneInfo& pane);
bc429ce0
RR
45
46protected:
47 virtual void OnMoveStart();
48 virtual void OnMoving(const wxRect& window_rect, wxDirection dir);
49 virtual void OnMoveFinished();
50
50acee04
JS
51private:
52 void OnSize(wxSizeEvent& event);
53 void OnClose(wxCloseEvent& event);
54 void OnMoveEvent(wxMoveEvent& event);
55 void OnIdle(wxIdleEvent& event);
50acee04
JS
56 void OnActivate(wxActivateEvent& event);
57 static bool isMouseDown();
58private:
59 wxWindow* m_pane_window; // pane window being managed
22fec94a 60 bool m_solid_drag; // true if system uses solid window drag
50acee04
JS
61 bool m_moving;
62 wxRect m_last_rect;
322c5ec4
RR
63 wxRect m_last2_rect;
64 wxRect m_last3_rect;
50acee04 65 wxSize m_last_size;
322c5ec4 66 wxDirection m_lastDirection;
50acee04 67
a3a5df9d
BW
68 wxAuiManager* m_owner_mgr;
69 wxAuiManager m_mgr;
50acee04 70
06d4c4d6 71#ifndef SWIG
50acee04 72 DECLARE_EVENT_TABLE()
00c1c94c 73 DECLARE_CLASS(wxAuiFloatingFrameBaseClass)
06d4c4d6 74#endif // SWIG
50acee04
JS
75};
76
77#endif // wxUSE_AUI
78#endif //_WX_FLOATPANE_H_
79