summaryrefslogtreecommitdiffstats
path: root/examples/widgets/richtext/calendar/mainwindow.h
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 13:31:48 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 23:15:01 +0200
commit288c7ef5570f2badf5781a744ab2ba2d6f18b183 (patch)
tree700dee979706fee86726a383ea75edf4f9870f80 /examples/widgets/richtext/calendar/mainwindow.h
parentf3cf1fd760e9960d599be165f5369d305b442d16 (diff)
Move calendar example to manual test
Pick-to: 6.5 6.6 Change-Id: Ie2215ae0feeb322888619aed632e20db9b69e20b Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/widgets/richtext/calendar/mainwindow.h')
-rw-r--r--examples/widgets/richtext/calendar/mainwindow.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/examples/widgets/richtext/calendar/mainwindow.h b/examples/widgets/richtext/calendar/mainwindow.h
deleted file mode 100644
index 76632820d6..0000000000
--- a/examples/widgets/richtext/calendar/mainwindow.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#ifndef MAINWINDOW_H
-#define MAINWINDOW_H
-
-#include <QDate>
-#include <QMainWindow>
-
-QT_BEGIN_NAMESPACE
-class QTextBrowser;
-QT_END_NAMESPACE
-
-//! [0]
-class MainWindow : public QMainWindow
-{
- Q_OBJECT
-
-public:
- MainWindow();
-
-public slots:
- void setFontSize(int size);
- void setMonth(int month);
- void setYear(QDate date);
-
-private:
- void insertCalendar();
-
- int fontSize;
- QDate selectedDate;
- QTextBrowser *editor;
-};
-//! [0]
-
-#endif // MAINWINDOW_H