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.
28 lines
386 B
C++
28 lines
386 B
C++
#pragma once
|
|
|
|
#include <QComboBox>
|
|
|
|
#include "ZxDot.h"
|
|
#include "iProperty_global.h"
|
|
|
|
class DotTypeDelegate;
|
|
class I_PROPERTY_EXPORT ZxDotStyleComboBox : public QComboBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ZxDotStyleComboBox(QWidget* parent = 0);
|
|
void setCurDot(ZxDot o);
|
|
|
|
void paintEvent(QPaintEvent* event);
|
|
|
|
protected:
|
|
|
|
DotTypeDelegate* m_pDekegate;
|
|
ZxDot m_oDot;
|
|
};
|
|
|
|
|
|
|
|
|