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.
nmWATI/Include/iBase/iPlugin/ZxTableHeaderViewCbxViewM.h

26 lines
615 B
C++

#pragma once
#include "ZxTableHeaderViewCbxView.h"
class I_PLUGIN_EXPORT ZxTableHeaderViewCbxViewM : public ZxTableHeaderViewCbxView
{
Q_OBJECT
public:
ZxTableHeaderViewCbxViewM(QWidget* parent, \
QComboBox* pComboBox, \
QStringList* listItemAlls, \
QStringList* listItemCheckeds);
// 返回用户选择项的用户自定义数据(如果单选,只返回一项)
virtual bool getSelectItems(QStringList& listItems);
protected slots:
void slotCheckBoxChanged(int state);
protected:
};