Add onscreenapp
[apps/onscreenapp.git] / app / onscreenmodel.h
1 /*
2  * Copyright (c) 2019 TOYOTA MOTOR CORPORATION
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef ONSCREENMODEL_H
18 #define ONSCREENMODEL_H
19
20 #include <QObject>
21 #include <QVariant>
22 #include <QStringList>
23
24
25 class OnScreenModel : public QObject
26 {
27     Q_OBJECT
28 public:
29     explicit OnScreenModel(QObject *parent = nullptr){}
30     ~OnScreenModel() = default;
31
32     Q_INVOKABLE QString getTitle(void) const {return m_title;}
33     Q_INVOKABLE QString getType(void) const {return m_type;}
34     Q_INVOKABLE QString getContents(void) const {return m_contents;}
35     Q_INVOKABLE int buttonNum(void) const {return m_buttons.size();}
36     Q_INVOKABLE QString buttonName(int index) const;
37     Q_INVOKABLE void setModel(QVariant data);
38
39 private:
40     void clearModel(void);
41
42     QString m_title;
43     QString m_type;
44     QString m_contents;
45     QStringList m_buttons;
46 };
47
48 #endif // ONSCREENMODEL_H