2021-03-25 05:00:19 -07:00
|
|
|
#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:
|
2022-04-04 21:47:15 -07:00
|
|
|
QString className = this->metaObject()->className();
|
2021-03-25 05:00:19 -07:00
|
|
|
explicit savedwords(QWidget *parent = nullptr);
|
|
|
|
~savedwords();
|
|
|
|
QString words;
|
2021-04-23 05:47:05 -07:00
|
|
|
void checkwords();
|
|
|
|
void save_word_init();
|
2021-03-25 05:00:19 -07:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_backBtn_clicked();
|
|
|
|
void on_clearBtn_clicked();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::savedwords *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SAVEDWORDS_H
|