Typica is a free program for professional coffee roasters. https://typica.us
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

draglabel.h 305B

1234567891011121314151617181920
  1. /*1105:*/
  2. #line 13 "./scales.w"
  3. #ifndef TypicaDragLabelInclude
  4. #define TypicaDragLabelInclude
  5. #include <QLabel>
  6. class DragLabel:public QLabel
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit DragLabel(const QString&labelText,QWidget*parent= NULL);
  11. protected:
  12. void mousePressEvent(QMouseEvent*event);
  13. };
  14. #endif
  15. /*:1105*/