1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_VCL_INC_BRDWIN_HXX
21 #define INCLUDED_VCL_INC_BRDWIN_HXX
23 #include <vcl/notebookbar.hxx>
24 #include <vcl/window.hxx>
25 #include <o3tl/typed_flags_set.hxx>
26 #include <vcl/NotebookBarAddonsMerger.hxx>
28 #include <com/sun/star/frame/XFrame.hpp>
30 class ImplBorderWindowView
;
31 enum class DrawButtonFlags
;
33 enum class BorderWindowStyle
{
41 template<> struct typed_flags
<BorderWindowStyle
> : is_typed_flags
<BorderWindowStyle
, 0x001d> {};
44 enum class BorderWindowHitTest
{
63 template<> struct typed_flags
<BorderWindowHitTest
> : is_typed_flags
<BorderWindowHitTest
, 0xffff> {};
66 enum class BorderWindowTitleType
{
74 template<> struct typed_flags
<BorderWindowTitleType
> : is_typed_flags
<BorderWindowTitleType
, 0x001f> {};
77 class ImplBorderWindow
: public vcl::Window
79 friend class vcl::Window
;
80 friend class ImplBorderWindowView
;
81 friend class ImplSmallBorderWindowView
;
82 friend class ImplStdBorderWindowView
;
85 std::unique_ptr
<ImplBorderWindowView
> mpBorderView
;
86 VclPtr
<vcl::Window
> mpMenuBarWindow
;
87 VclPtr
<NotebookBar
> mpNotebookBar
;
93 BorderWindowTitleType mnTitleType
;
94 WindowBorderStyle mnBorderStyle
;
96 bool mbSmallOutBorder
;
103 bool mbDisplayActive
;
105 using Window::ImplInit
;
106 void ImplInit( vcl::Window
* pParent
,
107 WinBits nStyle
, BorderWindowStyle nTypeStyle
,
108 SystemParentData
* pParentData
);
110 ImplBorderWindow (const ImplBorderWindow
&) = delete;
111 ImplBorderWindow
& operator= (const ImplBorderWindow
&) = delete;
114 ImplBorderWindow( vcl::Window
* pParent
,
115 SystemParentData
* pParentData
,
117 BorderWindowStyle nTypeStyle
);
118 ImplBorderWindow( vcl::Window
* pParent
, WinBits nStyle
,
119 BorderWindowStyle nTypeStyle
);
120 virtual ~ImplBorderWindow() override
;
121 virtual void dispose() override
;
123 virtual void MouseMove( const MouseEvent
& rMEvt
) override
;
124 virtual void MouseButtonDown( const MouseEvent
& rMEvt
) override
;
125 virtual void Tracking( const TrackingEvent
& rTEvt
) override
;
126 virtual void Paint( vcl::RenderContext
& rRenderContext
, const tools::Rectangle
& rRect
) override
;
127 virtual void Activate() override
;
128 virtual void Deactivate() override
;
129 virtual void Resize() override
;
130 virtual void RequestHelp( const HelpEvent
& rHEvt
) override
;
131 virtual void StateChanged( StateChangedType nType
) override
;
132 virtual void DataChanged( const DataChangedEvent
& rDCEvt
) override
;
133 virtual void queue_resize(StateChangedType eReason
= StateChangedType::Layout
) override
;
136 void UpdateView( bool bNewView
, const Size
& rNewOutSize
);
137 void InvalidateBorder();
140 void Draw( OutputDevice
* pDev
, const Point
& rPos
);
142 void SetDisplayActive( bool bActive
);
143 void SetTitleType( BorderWindowTitleType nTitleType
, const Size
& rSize
);
144 void SetBorderStyle( WindowBorderStyle nStyle
);
145 WindowBorderStyle
GetBorderStyle() const { return mnBorderStyle
; }
146 void SetRollUp( bool bRollUp
, const Size
& rSize
);
147 void SetCloseButton();
148 void SetDockButton( bool bDockButton
);
149 void SetHideButton( bool bHideButton
);
150 void SetMenuButton( bool bMenuButton
);
152 void UpdateMenuHeight();
153 void SetMenuBarWindow( vcl::Window
* pWindow
);
154 void SetMenuBarMode( bool bHide
);
156 void SetNotebookBar(const OUString
& rUIXMLDescription
,
157 const css::uno::Reference
<css::frame::XFrame
>& rFrame
,
158 const NotebookBarAddonsItem
&aNotebookBarAddonsItem
);
159 void CloseNotebookBar();
160 const VclPtr
<NotebookBar
>& GetNotebookBar() const { return mpNotebookBar
; }
162 void SetMinOutputSize( long nWidth
, long nHeight
)
163 { mnMinWidth
= nWidth
; mnMinHeight
= nHeight
; }
164 void SetMaxOutputSize( long nWidth
, long nHeight
)
165 { mnMaxWidth
= nWidth
; mnMaxHeight
= nHeight
; }
167 void GetBorder( sal_Int32
& rLeftBorder
, sal_Int32
& rTopBorder
,
168 sal_Int32
& rRightBorder
, sal_Int32
& rBottomBorder
) const;
169 long CalcTitleWidth() const;
171 tools::Rectangle
GetMenuRect() const;
173 virtual Size
GetOptimalSize() const override
;
176 struct ImplBorderFrameData
178 VclPtr
<ImplBorderWindow
> mpBorderWindow
;
179 VclPtr
<OutputDevice
> mpOutDev
;
180 tools::Rectangle maTitleRect
;
181 tools::Rectangle maCloseRect
;
182 tools::Rectangle maRollRect
;
183 tools::Rectangle maDockRect
;
184 tools::Rectangle maMenuRect
;
185 tools::Rectangle maHideRect
;
186 tools::Rectangle maHelpRect
;
194 sal_Int32 mnLeftBorder
;
195 sal_Int32 mnTopBorder
;
196 sal_Int32 mnRightBorder
;
197 sal_Int32 mnBottomBorder
;
201 BorderWindowHitTest mnHitTest
;
202 DrawButtonFlags mnCloseState
;
203 DrawButtonFlags mnRollState
;
204 DrawButtonFlags mnDockState
;
205 DrawButtonFlags mnMenuState
;
206 DrawButtonFlags mnHideState
;
207 DrawButtonFlags mnHelpState
;
208 BorderWindowTitleType mnTitleType
;
213 class ImplBorderWindowView
216 virtual ~ImplBorderWindowView();
218 virtual bool MouseMove( const MouseEvent
& rMEvt
);
219 virtual bool MouseButtonDown( const MouseEvent
& rMEvt
);
220 virtual bool Tracking( const TrackingEvent
& rTEvt
);
221 virtual OUString
RequestHelp( const Point
& rPos
, tools::Rectangle
& rHelpRect
);
223 virtual void Init( OutputDevice
* pDev
, long nWidth
, long nHeight
) = 0;
224 virtual void GetBorder( sal_Int32
& rLeftBorder
, sal_Int32
& rTopBorder
,
225 sal_Int32
& rRightBorder
, sal_Int32
& rBottomBorder
) const = 0;
226 virtual long CalcTitleWidth() const = 0;
227 virtual void DrawWindow(vcl::RenderContext
& rRenderContext
, const Point
* pOffset
= nullptr) = 0;
228 virtual tools::Rectangle
GetMenuRect() const;
230 static void ImplInitTitle( ImplBorderFrameData
* pData
);
231 static BorderWindowHitTest
ImplHitTest( ImplBorderFrameData
const * pData
, const Point
& rPos
);
232 static void ImplMouseMove( ImplBorderFrameData
* pData
, const MouseEvent
& rMEvt
);
233 static OUString
ImplRequestHelp( ImplBorderFrameData
const * pData
, const Point
& rPos
, tools::Rectangle
& rHelpRect
);
234 static long ImplCalcTitleWidth( const ImplBorderFrameData
* pData
);
237 class ImplNoBorderWindowView
: public ImplBorderWindowView
240 ImplNoBorderWindowView();
242 virtual void Init( OutputDevice
* pDev
, long nWidth
, long nHeight
) override
;
243 virtual void GetBorder( sal_Int32
& rLeftBorder
, sal_Int32
& rTopBorder
,
244 sal_Int32
& rRightBorder
, sal_Int32
& rBottomBorder
) const override
;
245 virtual long CalcTitleWidth() const override
;
246 virtual void DrawWindow(vcl::RenderContext
& rRenderContext
, const Point
* pOffset
= nullptr) override
;
249 class ImplSmallBorderWindowView
: public ImplBorderWindowView
251 VclPtr
<ImplBorderWindow
> mpBorderWindow
;
252 VclPtr
<OutputDevice
> mpOutDev
;
255 sal_Int32 mnLeftBorder
;
256 sal_Int32 mnTopBorder
;
257 sal_Int32 mnRightBorder
;
258 sal_Int32 mnBottomBorder
;
262 ImplSmallBorderWindowView( ImplBorderWindow
* pBorderWindow
);
264 virtual void Init( OutputDevice
* pOutDev
, long nWidth
, long nHeight
) override
;
265 virtual void GetBorder( sal_Int32
& rLeftBorder
, sal_Int32
& rTopBorder
,
266 sal_Int32
& rRightBorder
, sal_Int32
& rBottomBorder
) const override
;
267 virtual long CalcTitleWidth() const override
;
268 virtual void DrawWindow(vcl::RenderContext
& rRenderContext
, const Point
* pOffset
= nullptr) override
;
271 class ImplStdBorderWindowView
: public ImplBorderWindowView
273 ImplBorderFrameData maFrameData
;
276 ImplStdBorderWindowView( ImplBorderWindow
* pBorderWindow
);
277 virtual ~ImplStdBorderWindowView() override
;
279 virtual bool MouseMove( const MouseEvent
& rMEvt
) override
;
280 virtual bool MouseButtonDown( const MouseEvent
& rMEvt
) override
;
281 virtual bool Tracking( const TrackingEvent
& rTEvt
) override
;
282 virtual OUString
RequestHelp( const Point
& rPos
, tools::Rectangle
& rHelpRect
) override
;
283 virtual tools::Rectangle
GetMenuRect() const override
;
285 virtual void Init( OutputDevice
* pDev
, long nWidth
, long nHeight
) override
;
286 virtual void GetBorder( sal_Int32
& rLeftBorder
, sal_Int32
& rTopBorder
,
287 sal_Int32
& rRightBorder
, sal_Int32
& rBottomBorder
) const override
;
288 virtual long CalcTitleWidth() const override
;
289 virtual void DrawWindow(vcl::RenderContext
& rRenderContext
, const Point
* pOffset
= nullptr) override
;
292 #endif // INCLUDED_VCL_INC_BRDWIN_HXX
294 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */