CuteHMI - Services (CuteHMI.Services.3)
ServiceGroupRule.hpp
1#ifndef H_EXTENSIONS_CUTEHMI_SERVICES_3_INCLUDE_CUTEHMI_SERVICES_SERVICEGROUPRULE_HPP
2#define H_EXTENSIONS_CUTEHMI_SERVICES_3_INCLUDE_CUTEHMI_SERVICES_SERVICEGROUPRULE_HPP
3
4#include "internal/common.hpp"
5
6#include <QObject>
7#include <QQmlEngine>
8#include <QAbstractTransition>
9
10namespace cutehmi {
11namespace services {
12
13class AbstractService;
14
24class CUTEHMI_SERVICES_API ServiceGroupRule:
25 public QObject
26{
27 Q_OBJECT
28 QML_NAMED_ELEMENT(ServiceGroupRule)
29 QML_UNCREATABLE("ServiceGroupRule is an abstract class")
30
31 public:
32 enum SlotType {
35 SERVICE_ACTIVATE
36 };
37
51
52 protected:
53 explicit ServiceGroupRule(QObject * parent = nullptr);
54};
55
56}
57}
58
59#endif
60
61//(c)C: Copyright © 2022, Michał Policht <michal@policht.pl>. All rights reserved.
62//(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
63//(c)C: This file is a part of CuteHMI.
64//(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
65//(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
66//(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI. If not, see <https://www.gnu.org/licenses/>.
67//(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
68//(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
69//(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
70//(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Abstract service.
Definition: AbstractService.hpp:49
Service group rule.
Definition: ServiceGroupRule.hpp:26
SlotType
Definition: ServiceGroupRule.hpp:32
@ SERVICE_STOP
Definition: ServiceGroupRule.hpp:34
@ SERVICE_START
Definition: ServiceGroupRule.hpp:33
virtual std::unique_ptr< QAbstractTransition > conditionalTransition(SlotType type, const AbstractService *service)=0
Get conditional transition that should be applied to a particular service and slot type.