summaryrefslogtreecommitdiffstats
path: root/examples/widgets/orientation/mainwindow.h
blob: 7c2546d4c44754f1f5aac4fb0f3adcf58d289146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QWidget>

#include "ui_landscape.h"
#include "ui_portrait.h"

class QAbstractButton;

//! [0]
class MainWindow : public QWidget
{
    Q_OBJECT

public:
    MainWindow(QWidget *parent = 0);

protected:
    void resizeEvent(QResizeEvent *event);

private slots:
    void onRadioButtonClicked(QAbstractButton *button);

private:
    Ui::LandscapeUI landscape;
    Ui::PortraitUI portrait;
    QWidget *landscapeWidget;
    QWidget *portraitWidget;
};
//! [0]

#endif // MAINWINDOW_H