enlarged table

This commit is contained in:
brukie 2009-07-01 15:37:21 +02:00
parent ae82996c0e
commit be3bd4ae6c
2 changed files with 5 additions and 5 deletions

View file

@ -4,7 +4,7 @@
#include "client.h" #include "client.h"
TableZone::TableZone(Player *_p, QGraphicsItem *parent) TableZone::TableZone(Player *_p, QGraphicsItem *parent)
: CardZone(_p, "table", true, false, parent), width(720), height(510) : CardZone(_p, "table", true, false, parent), width(864), height(510)
{ {
cards = new CardList(true); cards = new CardList(true);
} }

View file

@ -139,8 +139,8 @@ void MainWindow::updateSceneSize()
{ {
QRectF sr = scene->sceneRect(); QRectF sr = scene->sceneRect();
QSizeF zoneSize = zoneLayout->size(); QSizeF zoneSize = zoneLayout->size();
qDebug(QString("updateSceneSize: width=%1").arg(952 + zoneSize.width()).toLatin1()); qDebug(QString("updateSceneSize: width=%1").arg(1096 + zoneSize.width()).toLatin1());
scene->setSceneRect(sr.x(), sr.y(), 952 + zoneSize.width(), sr.height()); scene->setSceneRect(sr.x(), sr.y(), 1096 + zoneSize.width(), sr.height());
view->fitInView(scene->sceneRect(), Qt::KeepAspectRatio); view->fitInView(scene->sceneRect(), Qt::KeepAspectRatio);
} }
@ -232,13 +232,13 @@ MainWindow::MainWindow(QWidget *parent)
// db->importOracleDir(); // db->importOracleDir();
// db->saveToFile("../cards.dat"); // db->saveToFile("../cards.dat");
scene = new QGraphicsScene(0, 0, 952, 1024, this); scene = new QGraphicsScene(0, 0, 1096, 1024, this);
view = new GameView(scene); view = new GameView(scene);
// view->setViewport(new QGLWidget(QGLFormat(QGL::SampleBuffers))); // view->setViewport(new QGLWidget(QGLFormat(QGL::SampleBuffers)));
zoneLayout = new ZoneViewLayout(db); zoneLayout = new ZoneViewLayout(db);
zoneLayout->setPos(952, 0); zoneLayout->setPos(1096, 0);
scene->addItem(zoneLayout); scene->addItem(zoneLayout);
connect(zoneLayout, SIGNAL(sizeChanged()), this, SLOT(updateSceneSize())); connect(zoneLayout, SIGNAL(sizeChanged()), this, SLOT(updateSceneSize()));