notecontent.h
来自「我用QT写的记事本程序」· C头文件 代码 · 共 32 行
H
32 行
#ifndef NOTECONTENT_H
#define NOTECONTENT_H
#include <QtGui/QWidget>
#include <QtGui/QVBoxLayout>
#include <QtGui/QTextEdit>
#include <QtGui/QFile>
#include <QtGui/QMessageBox>
#include <QtGui/QApplication>
class noteContent : public QTextEdit//QWidget
{
Q_OBJECT
public:
noteContent(QWidget *parent = 0);
~noteContent();
bool isModified();
bool writeFile(const QString &fileName);
bool readFile(const QString &fileName);
public slots: void del();
private:
};
#endif // NOTECONTENT_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?