Scribus
Open source desktop publishing at your fingertips
selectionrubberband.h
1 #ifndef SELECTIONRUBBERBAND_H
2 #define SELECTIONRUBBERBAND_H
3 
4 #include <QRubberBand>
5 #include <QPaintEvent>
6 
7 #include "scribusapi.h"
8 
9 class SCRIBUS_API SelectionRubberBand : public QRubberBand
10 {
11  Q_OBJECT
12  public:
13  SelectionRubberBand(QRubberBand::Shape s, QWidget * p = 0);
15 
16  virtual void paintEvent(QPaintEvent *p);
17 
18 };
19 
20 #endif // SELECTIONRUBBERBAND_H
Definition: selectionrubberband.h:9