mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-25 12:15:54 +01:00
17 lines
235 B
C++
17 lines
235 B
C++
#ifndef STYLECOMBOBOX_H
|
|
#define STYLECOMBOBOX_H
|
|
|
|
#include <QComboBox>
|
|
|
|
class StyleComboBox : public QComboBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
StyleComboBox(QWidget *parent = 0);
|
|
|
|
void setValue(Qt::PenStyle value);
|
|
};
|
|
|
|
#endif // STYLECOMBOBOX_H
|