mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
32 lines
485 B
C++
32 lines
485 B
C++
#ifndef OMNIBAR_H
|
|
#define OMNIBAR_H
|
|
|
|
#include <QLineEdit>
|
|
|
|
class MainWindow;
|
|
|
|
class Omnibar : public QLineEdit
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Omnibar(MainWindow *main, QWidget *parent = 0);
|
|
|
|
void refresh(const QStringList &flagList);
|
|
|
|
private slots:
|
|
void on_gotoEntry_returnPressed();
|
|
|
|
void restoreCompleter();
|
|
|
|
public slots:
|
|
void clear();
|
|
|
|
private:
|
|
void setupCompleter();
|
|
|
|
MainWindow *main;
|
|
QStringList flags;
|
|
};
|
|
|
|
#endif // OMNIBAR_H
|