Ref T166, command input uses history line edit

* tooltip handling
* emit commandEntered
This commit is contained in:
Klaus Basan
2017-09-28 04:30:33 +02:00
parent 3ca352a2a1
commit 92bb17364a
3 changed files with 44 additions and 15 deletions

View File

@@ -12,6 +12,7 @@
#ifndef BLACKGUI_LINEEDITHISTORY_H
#define BLACKGUI_LINEEDITHISTORY_H
#include "blackgui/blackguiexport.h"
#include <QLineEdit>
#include <QStringList>
@@ -20,7 +21,7 @@ namespace BlackGui
/*!
* Line edit with history
*/
class CLineEditHistory : public QLineEdit
class BLACKGUI_EXPORT CLineEditHistory : public QLineEdit
{
public:
//! Constructors
@@ -41,4 +42,5 @@ namespace BlackGui
int m_position = 0;
};
} // ns
#endif // guard