Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / vcl / qt5 / Qt5Object.hxx
blobdf62016aded176d1689e9be9c73124b8a667bc90
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #pragma once
22 #include <salobj.hxx>
23 #include <vcl/sysdata.hxx>
25 #include <memory>
27 #include <QtGui/QRegion>
29 class QWidget;
30 class Qt5Frame;
32 class Qt5Object : public SalObject
34 SystemEnvData m_aSystemData;
35 std::unique_ptr<QWidget> m_pQWidget;
36 Qt5Frame* m_pParent;
37 QRegion m_pRegion;
39 public:
40 Qt5Object(Qt5Frame* pParent, bool bShow);
41 virtual ~Qt5Object() override;
43 virtual void ResetClipRegion() override;
44 virtual void BeginSetClipRegion(sal_uLong nRects) override;
45 virtual void UnionClipRegion(long nX, long nY, long nWidth, long nHeight) override;
46 virtual void EndSetClipRegion() override;
48 virtual void SetPosSize(long nX, long nY, long nWidth, long nHeight) override;
49 virtual void Show(bool bVisible) override;
51 virtual void SetForwardKey(bool bEnable) override;
53 virtual const SystemEnvData* GetSystemData() const override;
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */