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.
AppFlow/FITK_Component/FITKWidget/FITKComboBox.h

42 lines
866 B
C

/**
*
* @file FITKComboBox.h
* @brief qcomboboxListView
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-06-20
*
*/
#ifndef __FITK__COMBO_BOX_H___
#define __FITK__COMBO_BOX_H___
#include <QComboBox>
#include "FITKWidgetAPI.h"
/**
* @brief qcomboboxListView
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-06-20
*/
class FITKWidgetAPI FITKComboBox : public QComboBox
{
Q_OBJECT
public:
/**
* @brief Construct a new FITKComboBox object
* @param[i] parent
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-06-20
*/
explicit FITKComboBox(QWidget* parent = nullptr);
/**
* @brief Destroy the FITKComboBox object
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-06-20
*/
virtual ~FITKComboBox();
};
#endif