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.

48 lines
1.3 KiB
C

/**********************************************************************
* @file GUIComboBox.h
* @brief ComboBoxComboBox
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*********************************************************************/
#ifndef _GUIComboBox_H_
#define _GUIComboBox_H_
#include <QComboBox>
#include "GUIWidgetAPI.h"
namespace GUI
{
/**
* @brief ComboBoxComboBox
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
class GUIWidgetAPI GUIComboBox : public QComboBox
{
Q_OBJECT;
public:
/**
* @brief
* @param[i] parent
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
explicit GUIComboBox(QWidget* parent = nullptr);
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
virtual ~GUIComboBox();
protected:
/**
* @brief
* @param[i] e
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
void wheelEvent(QWheelEvent *e) override;
};
}
#endif