/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #pragma once #include #include #include namespace apitest { class OOO_DLLPUBLIC_TEST XShape { public: XShape() = default; XShape(bool bObjSupportsPosition) : m_bObjSupportsPosition(bObjSupportsPosition) { } virtual css::uno::Reference init() = 0; void testGetSetPosition(); void testGetSetSize(); protected: ~XShape() {} private: bool const m_bObjSupportsPosition{ true }; }; } // namespace apitest /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ eta-24-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-06-22kf5: Drop "5" from VCLPLUG_KF5_{IMPLEMENTATION,PUBLIC} definesMichael Weghorn
2023-06-22kf5: Rename sources + headers according to new class namesMichael Weghorn
2022-05-25tdf#125925 Qt migrate KF5 theme font settings codeJan-Marek Glogowski
2021-12-01gbuild: introduce plugin + loader conceptsJan-Marek Glogowski
2021-09-29Unify how Qt/KF build flags/libs are setMichael Weghorn
2019-07-22Drop undefined QT5_GLIB_*Jan-Marek Glogowski
2019-07-21tdf#125922 rename kde5 to kf5 + plasma5Jan-Marek Glogowski
2017-11-06QT5 rename from KF5Jan-Marek Glogowski
2017-11-06KF5 add initial SalBitmap implementationJan-Marek Glogowski
2017-11-06KF5 add initial SalObject implementationJan-Marek Glogowski
2017-11-06KF5 add FontFace implementationJan-Marek Glogowski
2017-11-06KF5 add QWidget to Kf5FrameJan-Marek Glogowski
2017-11-06KF5 seperate Qt5 detection from KF5Jan-Marek Glogowski
2017-11-06KF5 initial VCL pluginJan-Marek Glogowski