tools/drawMapTest/drawmapwidget.cpp
author sheepluva
Tue, 19 Mar 2013 22:19:28 +0100
changeset 8753 1dfc456b7d50
parent 4477 63a21fac8bf7
permissions -rw-r--r--
fix ancient issue with hedgehogs sliding through/into think gaps; fixes issue #542; could and should be optimized (also to make sure that hogs can't slide through little pixel turds) - feel free to do so =P

#include "drawmapwidget.h"

DrawMapWidget::DrawMapWidget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::DrawMapWidget)
{
    ui->setupUi(this);
}

DrawMapWidget::~DrawMapWidget()
{
    delete ui;
}

void DrawMapWidget::changeEvent(QEvent *e)
{
    QWidget::changeEvent(e);
    switch (e->type()) {
    case QEvent::LanguageChange:
        ui->retranslateUi(this);
        break;
    default:
        break;
    }
}

void DrawMapWidget::setScene(DrawMapScene * scene)
{
    ui->graphicsView->setScene(scene);
}

void DrawMapWidget::resizeEvent(QResizeEvent * event)
{
    Q_UNUSED(event);

    if(ui->graphicsView && ui->graphicsView->scene())
        ui->graphicsView->fitInView(ui->graphicsView->scene()->sceneRect(), Qt::KeepAspectRatio);
}