cutter/src/widgets/Omnibar.h
Paul I bebc2ec36d More c++11 (#478)
* Replace 0 and Q_NULLPTR with nullptr
* Use c++11 foreach
2018-05-04 09:58:32 +02:00

32 lines
491 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 = nullptr);
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