Typica is a free program for professional coffee roasters. https://typica.us
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

draglabel.h 305B

1234567891011121314151617181920
  1. /*1053:*/
  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. /*:1053*/