bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / toolkit / controls / roadmapentry.hxx
blob7695ecffdcbae32281ed7876856bb80c15abfa56
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 .
19 #ifndef INCLUDED_TOOLKIT_CONTROLS_ROADMAPENTRY_HXX
20 #define INCLUDED_TOOLKIT_CONTROLS_ROADMAPENTRY_HXX
22 #include <comphelper/uno3.hxx>
23 #include <comphelper/broadcasthelper.hxx>
24 #include <comphelper/propertycontainer.hxx>
25 #include <comphelper/proparrhlp.hxx>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <cppuhelper/implbase.hxx>
30 #define RM_PROPERTY_ID_LABEL 1
31 #define RM_PROPERTY_ID_ID 2
32 #define RM_PROPERTY_ID_ENABLED 4
33 #define RM_PROPERTY_ID_INTERACTIVE 5
35 typedef cppu::WeakImplHelper< css::lang::XServiceInfo > ORoadmapEntry_Base;
37 class ORoadmapEntry final : public ORoadmapEntry_Base
38 ,public ::comphelper::OMutexAndBroadcastHelper
39 ,public ::comphelper::OPropertyContainer
40 ,public ::comphelper::OPropertyArrayUsageHelper< ORoadmapEntry >
43 public:
44 ORoadmapEntry();
46 private:
47 DECLARE_XINTERFACE() // merge XInterface implementations
48 DECLARE_XTYPEPROVIDER() // merge XTypeProvider implementations
50 /// @see css::beans::XPropertySet
51 virtual css::uno::Reference< css::beans::XPropertySetInfo >
52 SAL_CALL getPropertySetInfo() override;
54 // OPropertySetHelper
55 virtual ::cppu::IPropertyArrayHelper& SAL_CALL getInfoHelper() override;
57 // OPropertyArrayUsageHelper
58 virtual ::cppu::IPropertyArrayHelper* createArrayHelper() const override;
60 virtual OUString SAL_CALL getImplementationName( ) override;
61 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
62 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
64 OUString m_sLabel;
65 sal_Int32 m_nID;
66 bool m_bEnabled;
67 bool m_bInteractive;
70 #endif
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */