quill/dictionarywidget.h
Nicolas Mailloux 13803ef333 The search button now does something
And it does what you'd expect it to! Only dictionary search available at
the moment.
2021-07-05 22:21:20 -04:00

40 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