~neon/project-neon/kscreen

« back to all changes in this revision

Viewing changes to kcm/src/modeselectionwidget.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
#ifndef MODESELECTIONWIDGET_H
 
20
#define MODESELECTIONWIDGET_H
 
21
 
 
22
#include <QGraphicsProxyWidget>
 
23
#include <QModelIndex>
 
24
 
 
25
class QListView;
 
26
class QMLOutput;
 
27
class ModesProxyModel;
 
28
class ResolutionSortModel;
 
29
 
 
30
class ModeSelectionWidget : public QGraphicsProxyWidget
 
31
{
 
32
    Q_OBJECT
 
33
    Q_PROPERTY(QMLOutput *output READ output WRITE setOutput);
 
34
public:
 
35
    ModeSelectionWidget(QGraphicsItem *parent = 0, Qt::WindowFlags wFlags = 0);
 
36
    virtual ~ModeSelectionWidget();
 
37
 
 
38
    void setOutput(QMLOutput *output);
 
39
    QMLOutput *output() const;
 
40
 
 
41
private Q_SLOTS:
 
42
    void resolutionChanged(const QModelIndex &index);
 
43
    void refreshRateChanged();
 
44
 
 
45
private:
 
46
    QMLOutput *m_output;
 
47
 
 
48
    QListView *m_resolutionsView;
 
49
    QListView *m_refreshRatesView;
 
50
    ModesProxyModel *m_refreshRatesModel;
 
51
    ResolutionSortModel *m_resolutionsModel;
 
52
 
 
53
};
 
54
 
 
55
#endif // MODESELECTIONWIDGET_H