8 * A combobox for choosing a line width.
10 class WidthBox: public QComboBox
15 WidthBox(QWidget * parent = 0, const char * name = 0);
16 WidthBox(bool showByLayer, bool showUnchanged, QWidget * parent = 0, const char * name = 0);
19 void init(bool showByLayer, bool showUnchanged);
20 RS2::LineWidth getWidth();
21 void setWidth(RS2::LineWidth w);
22 void setLayerWidth(RS2::LineWidth w);
26 void slotWidthChanged(int index);
29 void widthChanged(RS2::LineWidth);
32 RS2::LineWidth currentWidth;
38 #endif // __WIDTHBOX_H__