QTfrontend/vertScrollArea.cpp
author unc0rr
Tue, 11 Jul 2006 21:04:05 +0000
changeset 75 d2b737858ff7
parent 63 27e2b5bb6d4b
child 85 44d9045b26ff
permissions -rw-r--r--
- New First Aid powerup - New power progressbar - Less powerful Desert Eagle - Bots can use Desert Eagle - Set TurnTimeLeft to 0 when hh damaged - Bots can handle situation when ammo is over - Bots can go in different directions to reach good position, not just only go left or right - Small fixes for FillLand (use all the array) - Fixes for world geometry, get rid of one variable - Added missed in previous commit files - New test map
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     1
#include "vertScrollArea.h"
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     2
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     3
#include <QResizeEvent>
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     4
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     5
VertScrArea::VertScrArea(QColor frameColor, QWidget * parent) :
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     6
  QScrollArea(parent)
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     7
{
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     8
  QPalette newPalette = palette();
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
     9
  newPalette.setColor(QPalette::Background, frameColor);
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    10
  setPalette(newPalette);
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    11
}
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    12
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    13
void VertScrArea::resizeEvent(QResizeEvent * event)
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    14
{
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    15
  widget()->resize(event->size().width(), widget()->sizeHint().height());
27e2b5bb6d4b Scroll added to team control widget
displacer
parents:
diff changeset
    16
}