diff -r a180113055cb -r 83d6a149c755 Tests/DemoGUI/mainwindow.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Tests/DemoGUI/mainwindow.cpp Mon Oct 11 21:59:54 2010 +0530 @@ -0,0 +1,33 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + //ui->setupUi(this); + setStyleSheet("selection-color: Black;"); + + Ptr2HomeView = new HomeView("SMF"); + //Ptr2HomeView->getFriends(this); + Ptr2HomeView->SetupUI(this); +} + +MainWindow::~MainWindow() +{ + //delete ui; + delete Ptr2HomeView; + +} + +void MainWindow::changeEvent(QEvent *e) +{ + QMainWindow::changeEvent(e); + switch (e->type()) { + case QEvent::LanguageChange: + ui->retranslateUi(this); + break; + default: + break; + } +}