Changeset 2 in tspsg-svn for trunk/src/mainwindow.cpp


Ignore:
Timestamp:
Oct 13, 2007, 2:26:06 PM (17 years ago)
Author:
laleppa
Message:

Load English language as default if locale language not available
Center Main Window at application start
Some svn:ignore's

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore set to
      *.vcproj*
      *.ncb
      *.sln
      *.suo
      *.idb
      *.pdb
      ui_*
      moc_*
      qrc_*
      tspsg
      Makefile
      debug
      release
  • trunk/src/mainwindow.cpp

    r1 r2  
    2222#include "mainwindow.h"
    2323
     24// TODO: Saving window state on close
     25
    2426MainWindow::MainWindow(QWidget *parent)
    2527        : QMainWindow(parent)
     
    2729        setupUi(this);
    2830        connect(actionSettingsSettings,SIGNAL(triggered()),this,SLOT(ChangeSettings()));
     31        // Centering MainWindow
     32        // TODO: Loading of saved window state
     33QRect rect = geometry();
     34    rect.moveCenter(QApplication::desktop()->screenGeometry(QApplication::desktop()->primaryScreen()).center());
     35        setGeometry(rect);
     36
    2937}
    3038
Note: See TracChangeset for help on using the changeset viewer.