]> git.saurik.com Git - wxWidgets.git/blame - include/wx/aui/floatpane.h
Header listed twice removed.
[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
50acee04
JS
25#if defined( __WXMSW__ ) || defined( __WXMAC__ )
26#include "wx/minifram.h"
27#define wxFloatingPaneBaseClass wxMiniFrame
28#else
29#define wxFloatingPaneBaseClass wxFrame
30#endif
31
32class WXDLLIMPEXP_AUI wxFloatingPane : public wxFloatingPaneBaseClass
33{
34public:
35 wxFloatingPane(wxWindow* parent,
36 wxFrameManager* owner_mgr,
be66f18e 37 wxWindowID id = wxID_ANY,
50acee04
JS
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize);
40 ~wxFloatingPane();
41 void SetPaneWindow(const wxPaneInfo& pane);
42private:
43 void OnSize(wxSizeEvent& event);
44 void OnClose(wxCloseEvent& event);
45 void OnMoveEvent(wxMoveEvent& event);
46 void OnIdle(wxIdleEvent& event);
47 void OnMoveStart();
48 void OnMoving(const wxRect& window_rect);
49 void OnMoveFinished();
50 void OnActivate(wxActivateEvent& event);
51 static bool isMouseDown();
52private:
53 wxWindow* m_pane_window; // pane window being managed
54 bool m_moving;
55 wxRect m_last_rect;
56 wxSize m_last_size;
57
58 wxFrameManager* m_owner_mgr;
59 wxFrameManager m_mgr;
60
61 DECLARE_EVENT_TABLE()
62};
63
64#endif // wxUSE_AUI
65#endif //_WX_FLOATPANE_H_
66