mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
253d94a059
I still need to fix some border bug
36 lines
556 B
C++
36 lines
556 B
C++
#ifndef SAVEDWORDS_H
|
|
#define SAVEDWORDS_H
|
|
|
|
#include <QWidget>
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
|
|
using namespace std;
|
|
|
|
namespace Ui {
|
|
class savedwords;
|
|
}
|
|
|
|
class savedwords : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit savedwords(QWidget *parent = nullptr);
|
|
~savedwords();
|
|
QString words;
|
|
void checkwords();
|
|
void save_word_init();
|
|
|
|
private slots:
|
|
void on_backBtn_clicked();
|
|
void on_clearBtn_clicked();
|
|
|
|
private:
|
|
Ui::savedwords *ui;
|
|
};
|
|
|
|
#endif // SAVEDWORDS_H
|