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.

verticalscrollarea.h 406B

123456789101112131415161718192021
  1. #ifndef VERTICALSCROLLAREA_H
  2. #define VERTICALSCROLLAREA_H
  3. #include <QScrollArea>
  4. #include <QEvent>
  5. #include <QScrollBar>
  6. class VerticalScrollArea : public QScrollArea
  7. {
  8. Q_OBJECT
  9. public:
  10. explicit VerticalScrollArea(QWidget *parent = 0);
  11. void setWidget(QWidget *widget);
  12. protected:
  13. bool eventFilter(QObject *o, QEvent *e);
  14. };
  15. #endif // VERTICALSCROLLAREA_H