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_HEADLESS_SVPFRAME_HXX
21 #define INCLUDED_VCL_INC_HEADLESS_SVPFRAME_HXX
23 #include <vcl/sysdata.hxx>
25 #include <salframe.hxx>
30 #define SvpSalInstance AquaSalInstance
31 #define SvpSalGraphics AquaSalGraphics
37 class SvpSalFrame
: public SalFrame
39 SvpSalInstance
* m_pInstance
;
40 SvpSalFrame
* m_pParent
; // pointer to parent frame
41 std::vector
< SvpSalFrame
* > m_aChildren
; // Vector of child frames
42 SalFrameStyleFlags m_nStyle
;
45 cairo_surface_t
* m_pSurface
;
47 tools::Long m_nMinWidth
;
48 tools::Long m_nMinHeight
;
49 tools::Long m_nMaxWidth
;
50 tools::Long m_nMaxHeight
;
52 SystemEnvData m_aSystemChildData
;
54 std::vector
< SvpSalGraphics
* > m_aGraphics
;
56 static SvpSalFrame
* s_pFocusFrame
;
58 SvpSalFrame( SvpSalInstance
* pInstance
,
60 SalFrameStyleFlags nSalFrameStyle
);
61 virtual ~SvpSalFrame() override
;
65 void PostPaint() const;
68 virtual SalGraphics
* AcquireGraphics() override
;
69 virtual void ReleaseGraphics( SalGraphics
* pGraphics
) override
;
71 virtual bool PostEvent(std::unique_ptr
<ImplSVEvent
> pData
) override
;
73 virtual void SetTitle( const OUString
& rTitle
) override
;
74 virtual void SetIcon( sal_uInt16 nIcon
) override
;
75 virtual void SetMenu( SalMenu
* pMenu
) override
;
76 virtual void DrawMenuBar() override
;
78 virtual void SetExtendedFrameStyle( SalExtStyle nExtStyle
) override
;
79 virtual void Show( bool bVisible
, bool bNoActivate
= false ) override
;
80 virtual void SetMinClientSize( tools::Long nWidth
, tools::Long nHeight
) override
;
81 virtual void SetMaxClientSize( tools::Long nWidth
, tools::Long nHeight
) override
;
82 virtual void SetPosSize( tools::Long nX
, tools::Long nY
, tools::Long nWidth
, tools::Long nHeight
, sal_uInt16 nFlags
) override
;
83 virtual void GetClientSize( tools::Long
& rWidth
, tools::Long
& rHeight
) override
;
84 virtual void GetWorkArea( tools::Rectangle
& rRect
) override
;
85 virtual SalFrame
* GetParent() const override
;
86 virtual void SetWindowState( const SalFrameState
* pState
) override
;
87 virtual bool GetWindowState( SalFrameState
* pState
) override
;
88 virtual void ShowFullScreen( bool bFullScreen
, sal_Int32 nDisplay
) override
;
89 virtual void StartPresentation( bool bStart
) override
;
90 virtual void SetAlwaysOnTop( bool bOnTop
) override
;
91 virtual void ToTop( SalFrameToTop nFlags
) override
;
92 virtual void SetPointer( PointerStyle ePointerStyle
) override
;
93 virtual void CaptureMouse( bool bMouse
) override
;
94 virtual void SetPointerPos( tools::Long nX
, tools::Long nY
) override
;
95 using SalFrame::Flush
;
96 virtual void Flush() override
;
97 virtual void SetInputContext( SalInputContext
* pContext
) override
;
98 virtual void EndExtTextInput( EndExtTextInputFlags nFlags
) override
;
99 virtual OUString
GetKeyName( sal_uInt16 nKeyCode
) override
;
100 virtual bool MapUnicodeToKeyCode( sal_Unicode aUnicode
, LanguageType aLangType
, vcl::KeyCode
& rKeyCode
) override
;
101 virtual LanguageType
GetInputLanguage() override
;
102 virtual void UpdateSettings( AllSettings
& rSettings
) override
;
103 virtual void Beep() override
;
104 virtual const SystemEnvData
* GetSystemData() const override
;
105 virtual SalPointerState
GetPointerState() override
;
106 virtual KeyIndicatorState
GetIndicatorState() override
;
107 virtual void SimulateKeyPress( sal_uInt16 nKeyCode
) override
;
108 virtual void SetParent( SalFrame
* pNewParent
) override
;
109 virtual void SetPluginParent( SystemParentData
* pNewParent
) override
;
110 virtual void ResetClipRegion() override
;
111 virtual void BeginSetClipRegion( sal_uInt32 nRects
) override
;
112 virtual void UnionClipRegion( tools::Long nX
, tools::Long nY
, tools::Long nWidth
, tools::Long nHeight
) override
;
113 virtual void EndSetClipRegion() override
;
115 /*TODO: functional implementation */
116 virtual void SetScreenNumber( unsigned int ) override
{}
117 virtual void SetApplicationID(const OUString
&) override
{}
120 basegfx::B2IVector
GetSurfaceFrameSize() const;
123 #endif // INCLUDED_VCL_INC_HEADLESS_SVPFRAME_HXX
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */