~ubuntu-branches/ubuntu/wily/libkscreen/wily-proposed

« back to all changes in this revision

Viewing changes to backends/fake/parser.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2014-10-01 15:47:21 UTC
  • Revision ID: package-import@ubuntu.com-20141001154721-96ng88bgtxpj8sjv
Tags: upstream-5.1.0.1
ImportĀ upstreamĀ versionĀ 5.1.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*************************************************************************************
 
2
 *  Copyright (C) 2012 by Alejandro Fiestas Olivares <afiestas@kde.org>              *
 
3
 *                                                                                   *
 
4
 *  This library is free software; you can redistribute it and/or                    *
 
5
 *  modify it under the terms of the GNU Lesser General Public                       *
 
6
 *  License as published by the Free Software Foundation; either                     *
 
7
 *  version 2.1 of the License, or (at your option) any later version.               *
 
8
 *                                                                                   *
 
9
 *  This library is distributed in the hope that it will be useful,                  *
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of                   *
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                *
 
12
 *  Lesser General Public License for more details.                                  *
 
13
 *                                                                                   *
 
14
 *  You should have received a copy of the GNU Lesser General Public                 *
 
15
 *  License along with this library; if not, write to the Free Software              *
 
16
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA       *
 
17
 *************************************************************************************/
 
18
 
 
19
#ifndef PARSER_H
 
20
#define PARSER_H
 
21
 
 
22
#include <QtCore/QByteArray>
 
23
#include <QtCore/QString>
 
24
#include <QtCore/QVariant>
 
25
#include <QtCore/QSize>
 
26
#include <QtCore/QRect>
 
27
#include <QtCore/QPoint>
 
28
 
 
29
namespace KScreen {
 
30
    class Config;
 
31
    class Screen;
 
32
    class Output;
 
33
    class Mode;
 
34
}
 
35
class Parser
 
36
{
 
37
    public:
 
38
        static KScreen::Config* fromJson(const QByteArray &data);
 
39
        static KScreen::Config* fromJson(const QString &path);
 
40
        static bool validate(const QByteArray &data);
 
41
        static bool validate(const QString &data);
 
42
 
 
43
    private:
 
44
        static void qvariant2qobject(const QVariantMap& variant, QObject* object);
 
45
        static KScreen::Screen* screenFromJson(const QMap<QString, QVariant>& data);
 
46
        static KScreen::Output* outputFromJson(QMap<QString, QVariant> data);
 
47
        static KScreen::Mode* modeFromJson(const QVariant& data);
 
48
        static QSize sizeFromJson(const QVariant& data);
 
49
        static QRect rectFromJson(const QVariant& data);
 
50
        static QPoint pointFromJson(const QVariant& data);
 
51
};
 
52
 
 
53
#endif //PARSER_H