mirror of
https://github.com/Quill-OS/quill.git
synced 2024-11-01 05:43:21 -07:00
41 lines
805 B
C
41 lines
805 B
C
|
#ifndef DICTIONARYWIDGET_H
|
||
|
#define DICTIONARYWIDGET_H
|
||
|
|
||
|
#include "functions.h"
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class dictionaryWidget;
|
||
|
}
|
||
|
|
||
|
class dictionaryWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit dictionaryWidget(QWidget *parent = nullptr);
|
||
|
~dictionaryWidget();
|
||
|
void dictionaryLookup(std::string word, QString first_letter, int position);
|
||
|
QString wordQstr;
|
||
|
QString definition;
|
||
|
QString letter;
|
||
|
std::string searchedWord;
|
||
|
bool nextdefinition_lock = false;
|
||
|
int dictionaryPosition;
|
||
|
|
||
|
private slots:
|
||
|
void on_backBtn_clicked();
|
||
|
void on_nextDefinitionBtn_clicked();
|
||
|
void on_previousDefinitionBtn_clicked();
|
||
|
void refreshScreenNative();
|
||
|
|
||
|
private:
|
||
|
Ui::dictionaryWidget *ui;
|
||
|
|
||
|
signals:
|
||
|
void refreshScreen();
|
||
|
};
|
||
|
|
||
|
#endif // DICTIONARYWIDGET_H
|