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++

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
*
* @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