tilde~
Puredata Qt-based GUI
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LinkLine.h
Go to the documentation of this file.
1 // (c) 2017 Alex Nadzharov
2 // License: GPL3
3 
4 #ifndef LINKLINE_H
5 #define LINKLINE_H
6 
7 #include "UIItem.h"
8 
9 namespace tilde {
13 class LinkLine : public UIItem {
14 public:
15  LinkLine(){};
16 
17  void paint(QPainter* painter, const QStyleOptionGraphicsItem*, QWidget*);
18 };
19 }
20 
21 #endif // LINKLINE_H
UIItem QGraphicsObject class.
Definition: UIItem.h:15