DlgActivateWindowImp.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "PreCompiled.h"
00025 #ifndef _PreComp_
00026 # include <QHeaderView>
00027 #endif
00028
00029 #include "DlgActivateWindowImp.h"
00030 #include "MainWindow.h"
00031 #include "MDIView.h"
00032
00033 using namespace Gui::Dialog;
00034
00035
00036
00044 DlgActivateWindowImp::DlgActivateWindowImp( QWidget* parent, Qt::WFlags fl )
00045 : QDialog( parent, fl )
00046 {
00047
00048 setupUi(this);
00049 QTreeWidgetItem* active=0;
00050 QStringList labels; labels << tr("Windows");
00051 treeWidget->setHeaderLabels(labels);
00052 treeWidget->header()->hide();
00053
00054 QList<QWidget*> windows = getMainWindow()->windows();
00055 if (windows.isEmpty())
00056 {
00057 this->buttonOk->setDisabled(true);
00058 return;
00059 }
00060
00061 QWidget* activeWnd = getMainWindow()->activeWindow();
00062
00063 for (QList<QWidget*>::ConstIterator it = windows.begin(); it != windows.end(); ++it) {
00064 QTreeWidgetItem* item = new QTreeWidgetItem(treeWidget);
00065 item->setText(0, (*it)->windowTitle());
00066 if ( *it == activeWnd )
00067 active = item;
00068 }
00069
00070 if (active)
00071 treeWidget->setCurrentItem( active );
00072 treeWidget->setFocus();
00073 }
00074
00076 DlgActivateWindowImp::~DlgActivateWindowImp()
00077 {
00078 }
00079
00083 void DlgActivateWindowImp::accept()
00084 {
00085 QTreeWidgetItem* item = treeWidget->currentItem();
00086 QList<QWidget*> windows = getMainWindow()->windows();
00087
00088 if (item) {
00089 int index = treeWidget->indexOfTopLevelItem(item);
00090 getMainWindow()->setActiveWindow((MDIView*)windows.at(index));
00091 }
00092
00093 QDialog::accept();
00094 }
00095
00096 #include "moc_DlgActivateWindowImp.cpp"