summaryrefslogtreecommitdiffstats
path: root/RadioTuner/build/mainwindow.h
blob: 8e92912656eb80668e77c98ac81755f709151da8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QDeclarativeView>

class MainWindow : public QDeclarativeView
{
    Q_OBJECT

public:
    MainWindow();

protected slots:
#ifdef Q_OS_SYMBIAN
    void lockViewMode();
#endif

private:
    bool m_isPortrait;
};

#endif