QTfrontend/vertScrollArea.h
author unc0rr
Tue, 11 Jul 2006 21:23:00 +0000
changeset 77 51eb4c197ec3
parent 63 27e2b5bb6d4b
child 85 44d9045b26ff
permissions -rw-r--r--
Delete two more deprecated files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     1
#ifndef _VERT_SCROLL_AREA_INCLUDED
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     2
#define _VERT_SCROLL_AREA_INCLUDED
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     3
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     4
#include <QScrollArea>
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     5
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     6
class VertScrArea : public QScrollArea
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     7
{
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     8
  Q_OBJECT
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     9
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    10
 public:
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    11
  VertScrArea(QColor frameColor, QWidget * parent = 0);
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    12
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    13
 protected:
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    14
  virtual void resizeEvent(QResizeEvent * event);
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    15
};
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    16
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    17
#endif // _VERT_SCROLL_AREA_INCLUDED