summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials/notepad/notepad.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/tutorials/notepad/notepad.h')
-rw-r--r--examples/widgets/tutorials/notepad/notepad.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/widgets/tutorials/notepad/notepad.h b/examples/widgets/tutorials/notepad/notepad.h
index d4209daf6d9..03daa82a917 100644
--- a/examples/widgets/tutorials/notepad/notepad.h
+++ b/examples/widgets/tutorials/notepad/notepad.h
@@ -51,60 +51,37 @@
#ifndef NOTEPAD_H
#define NOTEPAD_H
-//! [all]
-//! [1]
#include <QMainWindow>
-//! [1]
-//! [2]
QT_BEGIN_NAMESPACE
namespace Ui {
class Notepad;
}
QT_END_NAMESPACE
-//! [2]
-//! [3]
class Notepad : public QMainWindow
{
Q_OBJECT
-//! [3]
-//! [4]
public:
explicit Notepad(QWidget *parent = nullptr);
-//! [4]
-//! [5]
~Notepad();
-//! [5]
private slots:
void newDocument();
-
void open();
-
void save();
-
void saveAs();
-
void print();
-
void selectFont();
-
void setFontBold(bool bold);
-
void setFontUnderline(bool underline);
-
void setFontItalic(bool italic);
-
void about();
-//! [6]
private:
Ui::Notepad *ui;
QString currentFile;
-//! [6]
};
-//! [all]
#endif // NOTEPAD_H