]>
Commit | Line | Data |
---|---|---|
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 JS |
26 | #include "wx/minifram.h" |
27 | #define wxFloatingPaneBaseClass wxMiniFrame | |
28 | #else | |
29 | #define wxFloatingPaneBaseClass wxFrame | |
30 | #endif | |
31 | ||
32 | class WXDLLIMPEXP_AUI wxFloatingPane : public wxFloatingPaneBaseClass | |
33 | { | |
34 | public: | |
35 | wxFloatingPane(wxWindow* parent, | |
36 | wxFrameManager* owner_mgr, | |
e5ab82d3 | 37 | const wxPaneInfo& 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 | ); |
d3c7fc99 | 43 | virtual ~wxFloatingPane(); |
50acee04 | 44 | void SetPaneWindow(const wxPaneInfo& pane); |
bc429ce0 RR |
45 | |
46 | protected: | |
47 | virtual void OnMoveStart(); | |
48 | virtual void OnMoving(const wxRect& window_rect, wxDirection dir); | |
49 | virtual void OnMoveFinished(); | |
50 | ||
50acee04 JS |
51 | private: |
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(); | |
58 | private: | |
59 | wxWindow* m_pane_window; // pane window being managed | |
60 | bool m_moving; | |
61 | wxRect m_last_rect; | |
322c5ec4 RR |
62 | wxRect m_last2_rect; |
63 | wxRect m_last3_rect; | |
50acee04 | 64 | wxSize m_last_size; |
322c5ec4 | 65 | wxDirection m_lastDirection; |
50acee04 JS |
66 | |
67 | wxFrameManager* m_owner_mgr; | |
68 | wxFrameManager m_mgr; | |
69 | ||
06d4c4d6 | 70 | #ifndef SWIG |
50acee04 | 71 | DECLARE_EVENT_TABLE() |
e5ab82d3 | 72 | DECLARE_CLASS(wxFloatingPaneBaseClass) |
06d4c4d6 | 73 | #endif // SWIG |
50acee04 JS |
74 | }; |
75 | ||
76 | #endif // wxUSE_AUI | |
77 | #endif //_WX_FLOATPANE_H_ | |
78 |