You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
517 B
C++
21 lines
517 B
C++
#ifndef NMGUICOMPONENTCOMBOBOX_H
|
|
#define NMGUICOMPONENTCOMBOBOX_H
|
|
|
|
#include <QWidget>
|
|
#include <QVariant>
|
|
#include "nmGUIDefine.h"
|
|
#include "nmGUI_global.h"
|
|
#include "nmGUIComponentBase.h"
|
|
|
|
class NM_GUI_EXPORT nmGUIComponentComboBox : public nmGUIComponentBase {
|
|
Q_OBJECT
|
|
public:
|
|
explicit nmGUIComponentComboBox(nmDataAttribute* pOriginValue,
|
|
bool enable = true, QWidget *parent = nullptr);
|
|
|
|
private:
|
|
void init() override;
|
|
};
|
|
|
|
#endif // NMGUICOMPONENTCOMBOBOX_H
|