~neon/project-neon/kscreen

« back to all changes in this revision

Viewing changes to kcm/src/qmloutputview.h

  • Committer: Dan Vrátil
  • Date: 2012-11-13 11:22:10 UTC
  • mfrom: (0.1.48)
  • Revision ID: git-v1:14fdbb224dc8a85b623b394662458a62675e977c
Merge branch 'kcm_import'

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (C) 2012  Dan Vratil <dvratil@redhat.com>
 
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 Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
*/
 
18
 
 
19
 
 
20
#ifndef MONITORVIEW_H
 
21
#define MONITORVIEW_H
 
22
 
 
23
#include <QDeclarativeItem>
 
24
 
 
25
#define QML_PATH "kcm_displayconfiguration/qml/"
 
26
 
 
27
namespace KScreen {
 
28
class Output;
 
29
}
 
30
class QMLOutput;
 
31
class QDeclarativeContext;
 
32
 
 
33
class QMLOutputView : public QDeclarativeItem
 
34
{
 
35
    Q_OBJECT
 
36
 
 
37
    Q_PROPERTY(QList<QMLOutput*> outputs READ outputs NOTIFY outputsChanged);
 
38
    Q_PROPERTY(QMLOutput* activeOutput READ activeOutput NOTIFY activeOutputChanged);
 
39
public:
 
40
    QMLOutputView();
 
41
    virtual ~QMLOutputView();
 
42
 
 
43
    void addOutput(QDeclarativeEngine* engine, KScreen::Output* output);
 
44
 
 
45
    QList<QMLOutput*> outputs() const;
 
46
    QMLOutput * activeOutput() const;
 
47
 
 
48
    Q_INVOKABLE QMLOutput* getPrimaryOutput() const;
 
49
 
 
50
Q_SIGNALS:
 
51
    void changed();
 
52
 
 
53
    /* Property notifications */
 
54
    void outputsChanged();
 
55
    void activeOutputChanged(QMLOutput *output);
 
56
 
 
57
private Q_SLOTS:
 
58
    void outputMoved(bool snap);
 
59
    void outputClicked();
 
60
    void primaryTriggered();
 
61
    void viewSizeChanged();
 
62
    void viewSizeChanged(bool initialPlacement);
 
63
 
 
64
private:
 
65
    QDeclarativeContext * context() const;
 
66
 
 
67
    QList<QMLOutput*> m_outputs;
 
68
    QMLOutput *m_activeOutput;
 
69
 
 
70
};
 
71
 
 
72
#endif // MONITORVIEW_H