DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
SearchComboBox.hpp
Go to the documentation of this file.
1#ifndef SEARCHCOMBOBOX_H
2#define SEARCHCOMBOBOX_H
3
5#include <QComboBox>
6
7namespace dbe
8{
9
10class SearchComboBox: public QComboBox
11{
12 Q_OBJECT
13public:
14 explicit SearchComboBox ( QWidget * parent = 0 );
15protected:
16 void focusInEvent ( QFocusEvent * Event );
17 void keyPressEvent ( QKeyEvent * Event );
18private:
19 QString UserText;
20private slots:
21 void ChangeToolTip ( const QString & Text );
22signals:
24 void TextModified ( const QString & );
25};
26
27} // namespace dbe
28
29#endif // SEARCHCOMBOBOX_H
void ChangeToolTip(const QString &Text)
SearchComboBox(QWidget *parent=0)
Including QT Headers.
void TextModified(const QString &)
void keyPressEvent(QKeyEvent *Event)
void focusInEvent(QFocusEvent *Event)
Include QT Headers.