/** * @file SdiWindow/sdiwindow.cpp * @brief SdiWindow module's implementation * @author Enar Vaikene * * Copyright (c) 2011 Enar Vaikene * * This file is part of the eVaf C++ cross-platform application development framework. * * This file can be used under the terms of the GNU General Public License * version 3.0 as published by the Free Software Foundation and appearing in * the file LICENSE included in the packaging of this file. Please review the * the following information to ensure the GNU General Public License version * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. * * Alternatively, this file may be used in accordance with the Commercial License * Agreement provided with the Software. */ #include "sdiwindow.h" #include "version.h" #include #include #include #include namespace eVaf { namespace SdiWindow { namespace Internal { /// iSdiWindow interface instance singleton static iSdiWindow * mSdiWindow = 0; } // namespace eVaf::SdiWindow::Internal } // namespace eVaf::SdiWindow } // namespace eVaf using namespace eVaf; //------------------------------------------------------------------- using namespace eVaf::SdiWindow; iSdiWindow * iSdiWindow::instance() { return Internal::mSdiWindow; } //------------------------------------------------------------------- using namespace eVaf::SdiWindow::Internal; MainWindow::MainWindow(QWidget * parent, Qt::WindowFlags flags) : QWidget(parent, flags) , mReady(false) { setObjectName(QString("%1-%2").arg(VER_MODULE_NAME_STR).arg(__FUNCTION__)); // Restore geometry restoreSettings(); // Apply the size specified in a) properties; or b) on the command line setWindowSize(); // Create the default layout mLayout = new QVBoxLayout; setLayout(mLayout); mSdiWindow = this; EVAF_INFO("%s created", qPrintable(objectName())); } MainWindow::~MainWindow() { mSdiWindow = 0; // Save geometry saveSettings(); EVAF_INFO("%s destroyed", qPrintable(objectName())); } bool MainWindow::init(QString const & args) { Q_UNUSED(args); Common::iRegistry::instance()->registerInterface("iSdiWindow", this); setWindowTitle(Common::iApp::instance()->name()); show(); mReady = true; EVAF_INFO("%s initialized", qPrintable(objectName())); return true; } void MainWindow::done() { mReady = false; close(); // Delete all the items added to the main window while (mItemsAdded.count() > 0) { QWeakPointer item = mItemsAdded.takeAt(0); if (!item.isNull()) delete item.data(); } EVAF_INFO("%s finalized", qPrintable(objectName())); } void MainWindow::addWidget(QWidget * widget) { mLayout->addWidget(widget); mItemsAdded.append(widget); } void MainWindow::addLayout(QLayout * layout) { mLayout->addLayout(layout); mItemsAdded.append(layout); } void MainWindow::saveSettings() { static int ver[4] = {VER_FILE_VERSION}; QSettings settings(VER_COMPANY_NAME_STR, Common::iApp::instance()->name()); settings.setValue(QString("%1/version/major").arg(objectName()), ver[0]); settings.setValue(QString("%1/version/minor").arg(objectName()), ver[1]); settings.setValue(QString("%1/geometry").arg(objectName()), saveGeometry()); } void MainWindow::restoreSettings() { static int ver[4] = {VER_FILE_VERSION}; QSettings settings(VER_COMPANY_NAME_STR, Common::iApp::instance()->name()); // Ignore saved settings if the version number is not the same // More intelligent checks can be implemented to allow upgrading from previous versions QVariant v = settings.value(QString("%1/version/major").arg(objectName())); if (!v.isValid() || v.toInt() != ver[0]) return; v = settings.value(QString("%1/version/minor").arg(objectName())); if (!v.isValid() || v.toInt() != ver[1]) return; // Restore the geometry restoreGeometry(settings.value(QString("%1/geometry").arg(objectName())).toByteArray()); } void MainWindow::setWindowSize() { // a) Get window size from properties int w = 0; int h = 0; // b) Use command line arguments QStringList args = QApplication::arguments(); for (int i = 1; i < args.size(); ++i) { QStringList arg = args.at(i).simplified().split('='); if (QRegExp("-[-]?w[idth]?").exactMatch(arg.at(0)) && arg.size() > 1) { bool ok; int v = arg.at(1).toInt(&ok); if (ok) w = v; } if (QRegExp("-[-]?h[eight]?").exactMatch(arg.at(0)) && arg.size() > 1) { bool ok; int v = arg.at(1).toInt(&ok); if (ok) h = v; } } // Resize the window if (w > 0 || h > 0) { QSize sz = sizeHint(); if (w > 0) sz.setWidth(w); if (h > 0) sz.setHeight(h); resize(sz); } } //------------------------------------------------------------------- SdiWindowPlugin::SdiWindowPlugin() : Plugins::iPlugin() { setObjectName(VER_MODULE_NAME_STR); mWindow = new MainWindow; EVAF_INFO("%s created", qPrintable(objectName())); } SdiWindowPlugin::~SdiWindowPlugin() { delete mWindow; EVAF_INFO("%s destroyed", qPrintable(objectName())); } bool SdiWindowPlugin::init(const QString & args) { if (!mWindow->init(args)) return false; EVAF_INFO("%s initialized", qPrintable(objectName())); return true; } void SdiWindowPlugin::done() { mWindow->done(); EVAF_INFO("%s finalized", qPrintable(objectName())); }