AudibleT 0.0.1
A real-time A/B/X audio testing tool for subjective assessment of various audio parameters, compatible for general purpose computer as well as embedded systems.
Loading...
Searching...
No Matches
CustomComboBox.h
Go to the documentation of this file.
1//=======================================================================
25//=======================================================================
26
27#ifndef CUSTOMCOMBOBOX_H
28#define CUSTOMCOMBOBOX_H
29
30#include <QComboBox>
31
40class CustomComboBox : public QComboBox {
41 Q_OBJECT
42
43public:
48 explicit CustomComboBox(QWidget *parent = nullptr);
49
50protected:
54 void showPopup() override;
55
59 void hidePopup() override;
60};
61
62#endif // CUSTOMCOMBOBOX_H
A custom QComboBox with modified popup behavior.
Definition: CustomComboBox.h:40
void showPopup() override
Overrides the QComboBox's showPopup() function to customize the popup behavior.
Definition: CustomComboBox.cpp:33
void hidePopup() override
Overrides the QComboBox's hidePopup() function to customize the popup behavior.
Definition: CustomComboBox.cpp:37