X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fpenwidget.h;h=4fe0d4749f0f2dc9b8f55b36cc7d5d8075a6c745;hb=cdde036d71eb0ea9b450345bd297c8730591b26b;hp=11dcdcf44b67097a3f5436c8ba1e14ab5f08cdb2;hpb=acd27aa62a4c78b6aeee523e3145a8aa53f4bcde;p=architektonas diff --git a/src/penwidget.h b/src/penwidget.h index 11dcdcf..4fe0d47 100644 --- a/src/penwidget.h +++ b/src/penwidget.h @@ -4,7 +4,6 @@ #include #include "structs.h" - class PenWidget: public QWidget { Q_OBJECT @@ -24,9 +23,8 @@ class PenWidget: public QWidget void HandleBlueSelected(QString); signals: - void WidthSelected(float); - void StyleSelected(int); - void ColorSelected(uint32_t); + void StampSelected(void); + void DropperSelected(void); private: QLineEdit * width; @@ -36,7 +34,12 @@ class PenWidget: public QWidget QComboBox * style; int r, g, b; bool programChange; + + public: + QAction * stampAction; + QAction * dropperAction; + QToolButton * tbStamp; + QToolButton * tbDropper; }; #endif // __PENWIDGET_H__ -