19 lines
361 B
C
19 lines
361 B
C
![]() |
#ifndef SARIBBONCOMBOBOX_H
|
|||
|
#define SARIBBONCOMBOBOX_H
|
|||
|
#include "SARibbonGlobal.h"
|
|||
|
#include <QComboBox>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @brief QComboBox的Ribbon显示,可以显示QIcon和windowTitle在左侧
|
|||
|
*/
|
|||
|
class SA_RIBBON_EXPORT SARibbonComboBox : public QComboBox
|
|||
|
{
|
|||
|
Q_OBJECT
|
|||
|
public:
|
|||
|
SARibbonComboBox(QWidget *parent = Q_NULLPTR);
|
|||
|
};
|
|||
|
|
|||
|
#endif // SARIBBONCOMBOBOX_H
|