mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-19 08:04:06 +00:00
671427803a
* fix: replace suggestionList with QCompleter
* 🎨 apply clang-format changes
* fix: code smells
---------
Co-authored-by: xiaoyifang <xiaoyifang@users.noreply.github.com>
42 lines
949 B
C++
42 lines
949 B
C++
/* This file is (c) 2012 Tvangeste <i.4m.l33t@yandex.ru>
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
#ifndef TRANSLATEBOX_HH
|
|
#define TRANSLATEBOX_HH
|
|
|
|
#include <QLineEdit>
|
|
#include <QWidget>
|
|
#include <QListWidget>
|
|
#include <QFocusEvent>
|
|
#include <QCompleter>
|
|
|
|
class TranslateBox : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TranslateBox( QWidget * parent = nullptr );
|
|
QLineEdit * translateLine();
|
|
QWidget * completerWidget();
|
|
void setText( const QString & text, bool showPopup = true );
|
|
void setSizePolicy( QSizePolicy policy );
|
|
void setSizePolicy( QSizePolicy::Policy hor, QSizePolicy::Policy ver );
|
|
|
|
void setModel( QStringList & _words );
|
|
|
|
public slots:
|
|
void setPopupEnabled(bool enable);
|
|
|
|
private slots:
|
|
void showPopup();
|
|
void rightButtonClicked();
|
|
|
|
private:
|
|
QLineEdit * translate_line;
|
|
bool m_popupEnabled;
|
|
QCompleter * completer;
|
|
QStringList words;
|
|
};
|
|
|
|
#endif // TRANSLATEBOX_HH
|