~dandrader/qtmir/surfaceDrawn

« back to all changes in this revision

Viewing changes to src/modules/Unity/Screens/qquickscreenwindow.h

  • Committer: CI Train Bot
  • Author(s): Gerry Boland, Michał Sawicz, Nick Dedekind
  • Date: 2016-04-29 20:04:51 UTC
  • mfrom: (434.5.64 set-display-config)
  • Revision ID: ci-train-bot@canonical.com-20160429200451-v0bjc4pcypynt83b
Enhance ScreenController & the DisplayConfigurationPolicy to implement dynamic grid units.

- Rename ScreenController to ScreenModel, as it just reflects current screen state, does not offer means to configure it
- ScreenController can update state of existing Screens, based on Mir DisplayConfiguration changes.
- Expand Screen to include scale & form factor properties, with getter/notifier in NativeInterface. This enables the dynamic grid units in the shell
- Add a Unity.Screens qml module to give QML better information about connected screens, and allow basic reconfiguring.
- Implement a basic display configuration policy to set suitable scale and form factor on an external display (needed for dynamic grid units) Fixes: #1573532
Approved by: Unity8 CI Bot, Daniel d'Andrada

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#ifndef QQUICKSCREENWINDOW_H
 
18
#define QQUICKSCREENWINDOW_H
 
19
 
 
20
#include <QQuickWindow>
 
21
#include "screens.h"
 
22
 
 
23
namespace qtmir {
 
24
 
 
25
class QQuickScreenWindow : public QQuickWindow
 
26
{
 
27
    Q_OBJECT
 
28
 
 
29
    Q_PROPERTY(QScreen *screen READ screen WRITE setScreen NOTIFY screenChanged)
 
30
    Q_PROPERTY(float scale READ scale NOTIFY scaleChanged)
 
31
    Q_PROPERTY(Screens::FormFactor formFactor READ formFactor NOTIFY formFactorChanged)
 
32
 
 
33
public:
 
34
    explicit QQuickScreenWindow(QQuickWindow *parent = 0);
 
35
 
 
36
    QScreen *screen() const;
 
37
    void setScreen(QScreen *screen);
 
38
 
 
39
    qreal scale();
 
40
    Screens::FormFactor formFactor();
 
41
    Q_INVOKABLE bool setScaleAndFormFactor(const float scale, const Screens::FormFactor formFactor);
 
42
 
 
43
Q_SIGNALS:
 
44
    void screenChanged(QScreen *screen);
 
45
    void scaleChanged(qreal scale);
 
46
    void formFactorChanged(Screens::FormFactor arg);
 
47
 
 
48
private Q_SLOTS:
 
49
    void nativePropertyChanged(QPlatformWindow *window, const QString &propertyName);
 
50
 
 
51
private:
 
52
    float getScaleNativeProperty() const;
 
53
    float m_scale;
 
54
    Screens::FormFactor getFormFactorNativeProperty() const;
 
55
    Screens::FormFactor m_formFactor;
 
56
};
 
57
 
 
58
} //namespace qtmir
 
59
 
 
60
#endif // QQUICKSCREENWINDOW_H