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.
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @file FITKComboBox.h
|
|
|
|
|
* @brief 封装qcombobox,添加ListView
|
|
|
|
|
* @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 封装qcombobox,添加ListView
|
|
|
|
|
* @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
|