##// END OF EJS Templates
Forgot to add Version number in Meson build def...
Forgot to add Version number in Meson build def Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1458:4f3cd1c22324
r1459:e48520d92df9 1.0.0
Show More
MainWindow.cpp
395 lines | 14.7 KiB | text/x-c | CppLexer
Initialisation de l'application multithread avec le spimpl....
r21 /*------------------------------------------------------------------------------
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 -- This file is a part of the SciQLop Software
-- Copyright (C) 2017, Plasma Physics Laboratory - CNRS
Initialisation de l'application multithread avec le spimpl....
r21 --
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------*/
/*-- Author : Alexis Jeandet
-- Mail : alexis.jeandet@member.fsf.org
----------------------------------------------------------------------------*/
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 #include "MainWindow.h"
#include "ui_MainWindow.h"
Alexandre Leroux
Connects data source widget to data source controller
r84
Check unsaved data on close
r1239 #include <Catalogue/CatalogueController.h>
Updated Meson build definitions...
r1410 //#include <Catalogue/CatalogueExplorer.h>
Alexandre Leroux
Connects data source widget to data source controller
r84 #include <DataSource/DataSourceController.h>
#include <DataSource/DataSourceWidget.h>
Alexandre Leroux
Creates settings dialog and adds it to a new menu in MainWindow...
r463 #include <Settings/SqpSettingsDialog.h>
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465 #include <Settings/SqpSettingsGeneralWidget.h>
Add button on the SidePane widgets to open left or right inspectors
r101 #include <SidePane/SqpSidePane.h>
Alexandre Leroux
Connects data source widget to data source controller
r84 #include <SqpApplication.h>
add TimeWidget connection
r192 #include <Time/TimeController.h>
Modificaiton of the sidepane :...
r133 #include <TimeWidget/TimeWidget.h>
Alexandre Leroux
Creates the slot to display the created variable in the Visualization widget...
r175 #include <Visualization/VisualizationController.h>
Alexandre Leroux
Connects data source widget to data source controller
r84
Initialisation de l'application multithread avec le spimpl....
r21 #include <QAction>
Check unsaved data on close
r1239 #include <QCloseEvent>
Initialisation de l'application multithread avec le spimpl....
r21 #include <QDate>
#include <QDir>
#include <QFileDialog>
Check unsaved data on close
r1239 #include <QMessageBox>
Add button on the SidePane widgets to open left or right inspectors
r101 #include <QToolBar>
Factorisation of the lambda connected to the side pane button
r138 #include <QToolButton>
Add button on the SidePane widgets to open left or right inspectors
r101 #include <memory.h>
Q_LOGGING_CATEGORY(LOG_MainWindow, "MainWindow")
New Catalogue API WIP, basic models and views implemented...
r1406 namespace
{
PRC: add tr on text...
r102 const auto LEFTMAININSPECTORWIDGETSPLITTERINDEX = 0;
const auto LEFTINSPECTORSIDEPANESPLITTERINDEX = 1;
const auto VIEWPLITTERINDEX = 2;
const auto RIGHTINSPECTORSIDEPANESPLITTERINDEX = 3;
const auto RIGHTMAININSPECTORWIDGETSPLITTERINDEX = 4;
}
New Catalogue API WIP, basic models and views implemented...
r1406 class MainWindow::MainWindowPrivate
{
Add button on the SidePane widgets to open left or right inspectors
r101 public:
New Catalogue API WIP, basic models and views implemented...
r1406 explicit MainWindowPrivate(MainWindow* mainWindow)
: m_LastOpenLeftInspectorSize {}
, m_LastOpenRightInspectorSize {}
, m_GeneralSettingsWidget { new SqpSettingsGeneralWidget { mainWindow } }
, m_SettingsDialog { new SqpSettingsDialog { mainWindow } }
//, m_CatalogExplorer { new CatalogueExplorer { mainWindow } }
Alexandre Leroux
Creates settings dialog and adds it to a new menu in MainWindow...
r463 {
}
Add button on the SidePane widgets to open left or right inspectors
r101 QSize m_LastOpenLeftInspectorSize;
QSize m_LastOpenRightInspectorSize;
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465 /// General settings widget. MainWindow has the ownership
New Catalogue API WIP, basic models and views implemented...
r1406 SqpSettingsGeneralWidget* m_GeneralSettingsWidget;
Alexandre Leroux
Creates settings dialog and adds it to a new menu in MainWindow...
r463 /// Settings dialog. MainWindow has the ownership
New Catalogue API WIP, basic models and views implemented...
r1406 SqpSettingsDialog* m_SettingsDialog;
Add a button in the application toolbar to open the catalogues
r1094 /// Catalogue dialog. MainWindow has the ownership
New Catalogue API WIP, basic models and views implemented...
r1406 // CatalogueExplorer* m_CatalogExplorer;
Check unsaved data on close
r1239
New Catalogue API WIP, basic models and views implemented...
r1406 bool checkDataToSave(QWidget* parentWidget);
Add button on the SidePane widgets to open left or right inspectors
r101 };
New Catalogue API WIP, basic models and views implemented...
r1406 MainWindow::MainWindow(QWidget* parent)
: QMainWindow { parent }
, m_Ui { new Ui::MainWindow }
, impl { spimpl::make_unique_impl<MainWindowPrivate>(this) }
Initialisation de l'application multithread avec le spimpl....
r21 {
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 m_Ui->setupUi(this);
Set SciQLop Version to 1.0.0 🍾...
r1458 setWindowTitle(QString("SciQLop v%1").arg(SCIQLOP_VERSION));
Add skelleton of the gui
r56
PRC: add tr on text...
r102 m_Ui->splitter->setCollapsible(LEFTINSPECTORSIDEPANESPLITTERINDEX, false);
m_Ui->splitter->setCollapsible(RIGHTINSPECTORSIDEPANESPLITTERINDEX, false);
Add button on the SidePane widgets to open left or right inspectors
r101
New Catalogue API WIP, basic models and views implemented...
r1406 // impl->m_CatalogExplorer->setVisualizationWidget(m_Ui->view);
Removed side bars which were too big......
r1375
Modificaiton of the sidepane :...
r133
New Catalogue API WIP, basic models and views implemented...
r1406 auto spacerLeftTop = new QWidget {};
Modificaiton of the sidepane :...
r133 spacerLeftTop->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
New Catalogue API WIP, basic models and views implemented...
r1406 auto spacerLeftBottom = new QWidget {};
Modificaiton of the sidepane :...
r133 spacerLeftBottom->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
New Catalogue API WIP, basic models and views implemented...
r1406 auto spacerRightTop = new QWidget {};
Modificaiton of the sidepane :...
r133 spacerRightTop->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
New Catalogue API WIP, basic models and views implemented...
r1406 auto spacerRightBottom = new QWidget {};
Modificaiton of the sidepane :...
r133 spacerRightBottom->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
Factorisation of the lambda connected to the side pane button
r138 auto openInspector = [this](bool checked, bool right, auto action) {
New Catalogue API WIP, basic models and views implemented...
r1406 action->setIcon(
QIcon { (checked ^ right) ? ":/icones/next.png" : ":/icones/previous.png" });
Modificaiton of the sidepane :...
r133
New Catalogue API WIP, basic models and views implemented...
r1406 auto& lastInspectorSize
Factorisation of the lambda connected to the side pane button
r138 = right ? impl->m_LastOpenRightInspectorSize : impl->m_LastOpenLeftInspectorSize;
auto nextInspectorSize = right ? m_Ui->rightMainInspectorWidget->size()
: m_Ui->leftMainInspectorWidget->size();
Add button on the SidePane widgets to open left or right inspectors
r101
// Update of the last opened geometry
New Catalogue API WIP, basic models and views implemented...
r1406 if (checked)
{
Factorisation of the lambda connected to the side pane button
r138 lastInspectorSize = nextInspectorSize;
Add button on the SidePane widgets to open left or right inspectors
r101 }
Factorisation of the lambda connected to the side pane button
r138 auto startSize = lastInspectorSize;
Add button on the SidePane widgets to open left or right inspectors
r101 auto endSize = startSize;
endSize.setWidth(0);
Factorisation of the lambda connected to the side pane button
r138 auto splitterInspectorIndex
= right ? RIGHTMAININSPECTORWIDGETSPLITTERINDEX : LEFTMAININSPECTORWIDGETSPLITTERINDEX;
PRC: add tr on text...
r102 auto currentSizes = m_Ui->splitter->sizes();
New Catalogue API WIP, basic models and views implemented...
r1406 if (checked)
{
Add button on the SidePane widgets to open left or right inspectors
r101 // adjust sizes individually here, e.g.
Factorisation of the lambda connected to the side pane button
r138 currentSizes[splitterInspectorIndex] -= lastInspectorSize.width();
currentSizes[VIEWPLITTERINDEX] += lastInspectorSize.width();
Add button on the SidePane widgets to open left or right inspectors
r101 m_Ui->splitter->setSizes(currentSizes);
}
New Catalogue API WIP, basic models and views implemented...
r1406 else
{
Add button on the SidePane widgets to open left or right inspectors
r101 // adjust sizes individually here, e.g.
Factorisation of the lambda connected to the side pane button
r138 currentSizes[splitterInspectorIndex] += lastInspectorSize.width();
currentSizes[VIEWPLITTERINDEX] -= lastInspectorSize.width();
Add button on the SidePane widgets to open left or right inspectors
r101 m_Ui->splitter->setSizes(currentSizes);
}
};
Modificaiton of the sidepane :...
r133
Toolbar for interactions modes
r957 // //////////////// //
// Menu and Toolbar //
// //////////////// //
PRC: add tr on text...
r102 this->menuBar()->addAction(tr("File"));
Alexandre Leroux
Creates settings dialog and adds it to a new menu in MainWindow...
r463 auto toolsMenu = this->menuBar()->addMenu(tr("Tools"));
toolsMenu->addAction(tr("Settings..."), [this]() {
Alexandre Leroux
Settings binding (4)...
r469 // Loads settings
impl->m_SettingsDialog->loadSettings();
// Open settings dialog and save settings if the dialog is accepted
New Catalogue API WIP, basic models and views implemented...
r1406 if (impl->m_SettingsDialog->exec() == QDialog::Accepted)
{
Alexandre Leroux
Settings binding (4)...
r469 impl->m_SettingsDialog->saveSettings();
}
Alexandre Leroux
Creates settings dialog and adds it to a new menu in MainWindow...
r463 });
PRC: add tr on text...
r102 auto mainToolBar = this->addToolBar(QStringLiteral("MainToolBar"));
Modificaiton of the sidepane :...
r133
New Catalogue API WIP, basic models and views implemented...
r1406 auto timeWidget = new TimeWidget {};
add TimeWidget connection
r192 mainToolBar->addWidget(timeWidget);
Alexandre Leroux
Connects data source widget to data source controller
r84
Add a button in the application toolbar to open the catalogues
r1094 // Interaction modes
New Catalogue API WIP, basic models and views implemented...
r1406 auto actionPointerMode = new QAction { QIcon(":/icones/pointer.png"), "Move", this };
Toolbar for interactions modes
r957 actionPointerMode->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 actionPointerMode->setChecked(
sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::None);
Toolbar for interactions modes
r957 connect(actionPointerMode, &QAction::triggered,
New Catalogue API WIP, basic models and views implemented...
r1406 []() { sqpApp->setPlotsInteractionMode(SqpApplication::PlotsInteractionMode::None); });
Toolbar for interactions modes
r957
New Catalogue API WIP, basic models and views implemented...
r1406 auto actionZoomMode = new QAction { QIcon(":/icones/zoom.png"), "Zoom", this };
Toolbar for interactions modes
r957 actionZoomMode->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 actionZoomMode->setChecked(
sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::ZoomBox);
connect(actionZoomMode, &QAction::triggered,
[]() { sqpApp->setPlotsInteractionMode(SqpApplication::PlotsInteractionMode::ZoomBox); });
Toolbar for interactions modes
r957
New Catalogue API WIP, basic models and views implemented...
r1406 auto actionOrganisationMode = new QAction { QIcon(":/icones/drag.png"), "Organize", this };
Toolbar for interactions modes
r957 actionOrganisationMode->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 actionOrganisationMode->setChecked(
sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::DragAndDrop);
Toolbar for interactions modes
r957 connect(actionOrganisationMode, &QAction::triggered, []() {
sqpApp->setPlotsInteractionMode(SqpApplication::PlotsInteractionMode::DragAndDrop);
});
New Catalogue API WIP, basic models and views implemented...
r1406 auto actionZonesMode = new QAction { QIcon(":/icones/rectangle.png"), "Zones", this };
Toolbar for interactions modes
r957 actionZonesMode->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 actionZonesMode->setChecked(
sqpApp->plotsInteractionMode() == SqpApplication::PlotsInteractionMode::SelectionZones);
Toolbar for interactions modes
r957 connect(actionZonesMode, &QAction::triggered, []() {
sqpApp->setPlotsInteractionMode(SqpApplication::PlotsInteractionMode::SelectionZones);
});
New Catalogue API WIP, basic models and views implemented...
r1406 auto modeActionGroup = new QActionGroup { this };
Toolbar for interactions modes
r957 modeActionGroup->addAction(actionZoomMode);
modeActionGroup->addAction(actionZonesMode);
modeActionGroup->addAction(actionOrganisationMode);
modeActionGroup->addAction(actionPointerMode);
modeActionGroup->setExclusive(true);
mainToolBar->addSeparator();
mainToolBar->addAction(actionPointerMode);
mainToolBar->addAction(actionZoomMode);
mainToolBar->addAction(actionOrganisationMode);
mainToolBar->addAction(actionZonesMode);
mainToolBar->addSeparator();
Add a button in the application toolbar to open the catalogues
r1094 // Cursors
New Catalogue API WIP, basic models and views implemented...
r1406 auto btnCursor = new QToolButton { this };
Toolbar for interactions modes
r957 btnCursor->setIcon(QIcon(":/icones/cursor.png"));
btnCursor->setText("Cursor");
btnCursor->setToolTip("Cursor");
btnCursor->setPopupMode(QToolButton::InstantPopup);
auto cursorMenu = new QMenu("CursorMenu", this);
btnCursor->setMenu(cursorMenu);
auto noCursorAction = cursorMenu->addAction("No Cursor");
noCursorAction->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 noCursorAction->setChecked(
sqpApp->plotsCursorMode() == SqpApplication::PlotsCursorMode::NoCursor);
Toolbar for interactions modes
r957 connect(noCursorAction, &QAction::triggered,
New Catalogue API WIP, basic models and views implemented...
r1406 []() { sqpApp->setPlotsCursorMode(SqpApplication::PlotsCursorMode::NoCursor); });
Toolbar for interactions modes
r957
cursorMenu->addSeparator();
auto verticalCursorAction = cursorMenu->addAction("Vertical Cursor");
verticalCursorAction->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 verticalCursorAction->setChecked(
sqpApp->plotsCursorMode() == SqpApplication::PlotsCursorMode::Vertical);
Toolbar for interactions modes
r957 connect(verticalCursorAction, &QAction::triggered,
New Catalogue API WIP, basic models and views implemented...
r1406 []() { sqpApp->setPlotsCursorMode(SqpApplication::PlotsCursorMode::Vertical); });
Toolbar for interactions modes
r957
auto temporalCursorAction = cursorMenu->addAction("Temporal Cursor");
temporalCursorAction->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 temporalCursorAction->setChecked(
sqpApp->plotsCursorMode() == SqpApplication::PlotsCursorMode::Temporal);
Toolbar for interactions modes
r957 connect(temporalCursorAction, &QAction::triggered,
New Catalogue API WIP, basic models and views implemented...
r1406 []() { sqpApp->setPlotsCursorMode(SqpApplication::PlotsCursorMode::Temporal); });
Toolbar for interactions modes
r957
auto horizontalCursorAction = cursorMenu->addAction("Horizontal Cursor");
horizontalCursorAction->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 horizontalCursorAction->setChecked(
sqpApp->plotsCursorMode() == SqpApplication::PlotsCursorMode::Horizontal);
Toolbar for interactions modes
r957 connect(horizontalCursorAction, &QAction::triggered,
New Catalogue API WIP, basic models and views implemented...
r1406 []() { sqpApp->setPlotsCursorMode(SqpApplication::PlotsCursorMode::Horizontal); });
Toolbar for interactions modes
r957
auto crossCursorAction = cursorMenu->addAction("Cross Cursor");
crossCursorAction->setCheckable(true);
New Catalogue API WIP, basic models and views implemented...
r1406 crossCursorAction->setChecked(
sqpApp->plotsCursorMode() == SqpApplication::PlotsCursorMode::Cross);
Toolbar for interactions modes
r957 connect(crossCursorAction, &QAction::triggered,
New Catalogue API WIP, basic models and views implemented...
r1406 []() { sqpApp->setPlotsCursorMode(SqpApplication::PlotsCursorMode::Cross); });
Toolbar for interactions modes
r957
mainToolBar->addWidget(btnCursor);
New Catalogue API WIP, basic models and views implemented...
r1406 auto cursorModeActionGroup = new QActionGroup { this };
Toolbar for interactions modes
r957 cursorModeActionGroup->setExclusive(true);
cursorModeActionGroup->addAction(noCursorAction);
cursorModeActionGroup->addAction(verticalCursorAction);
cursorModeActionGroup->addAction(temporalCursorAction);
cursorModeActionGroup->addAction(horizontalCursorAction);
cursorModeActionGroup->addAction(crossCursorAction);
Add a button in the application toolbar to open the catalogues
r1094 // Catalog
mainToolBar->addSeparator();
New Catalogue API WIP, basic models and views implemented...
r1406 // mainToolBar->addAction(QIcon(":/icones/catalogue.png"), "Catalogues",
// [this]() { impl->m_CatalogExplorer->show(); });
Add a button in the application toolbar to open the catalogues
r1094
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465 // //////// //
// Settings //
// //////// //
// Registers "general settings" widget to the settings dialog
New Catalogue API WIP, basic models and views implemented...
r1406 impl->m_SettingsDialog->registerWidget(
QStringLiteral("General"), impl->m_GeneralSettingsWidget);
Alexandre Leroux
Creates widget for "general settings" and registers it to the dialog
r465
Alexandre Leroux
Creates settings dialog and adds it to a new menu in MainWindow...
r463 // /////////// //
// Connections //
// /////////// //
Alexandre Leroux
Variable deletion (7)...
r336 // Controllers / controllers connections
New Catalogue API WIP, basic models and views implemented...
r1406 // connect(&sqpApp->timeController(), SIGNAL(timeUpdated(DateTimeRange)),
// &sqpApp->variableController(),
// SLOT(onDateTimeOnSelection(DateTimeRange)));
Alexandre Leroux
Variable deletion (7)...
r336
Alexandre Leroux
Connects data source widget to data source controller
r84 // Widgets / controllers connections
add TimeWidget connection
r192
// DataSource
New Catalogue API WIP, basic models and views implemented...
r1406 connect(&sqpApp->dataSourceController(), SIGNAL(dataSourceItemSet(DataSourceItem*)),
m_Ui->dataSourceWidget, SLOT(addDataSource(DataSourceItem*)));
Alexandre Leroux
Connects data source widget to data source controller
r84
add TimeWidget connection
r192 // Time
Renamed SqpRange to DateTimeRange, introduced VariableController2 to...
r1346 connect(timeWidget, SIGNAL(timeUpdated(DateTimeRange)), &sqpApp->timeController(),
New Catalogue API WIP, basic models and views implemented...
r1406 SLOT(onTimeToUpdate(DateTimeRange)));
add TimeWidget connection
r192
Alexandre Leroux
Variable deletion (7)...
r336 // Visualization
connect(&sqpApp->visualizationController(),
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 SIGNAL(variableAboutToBeDeleted(std::shared_ptr<Variable2>)), m_Ui->view,
SLOT(onVariableAboutToBeDeleted(std::shared_ptr<Variable2>)));
Temporal parameters of the selected variables can be updated using the...
r304
Add connection logical for the rescale operation
r437 connect(&sqpApp->visualizationController(),
Ported MockPlugin to new Variable2 impl and added dummy python plugin...
r1423 SIGNAL(rangeChanged(std::shared_ptr<Variable2>, const DateTimeRange&)), m_Ui->view,
SLOT(onRangeChanged(std::shared_ptr<Variable2>, const DateTimeRange&)));
Add connection logical for the rescale operation
r437
Alexandre Leroux
Connects variable widget to visualization widget...
r249 // Widgets / widgets connections
// For the following connections, we use DirectConnection to allow each widget that can
// potentially attach a menu to the variable's menu to do so before this menu is displayed.
// The order of connections is also important, since it determines the order in which each
// widget will attach its menu
New Catalogue API WIP, basic models and views implemented...
r1406 connect(m_Ui->variableInspectorWidget,
SIGNAL(tableMenuAboutToBeDisplayed(QMenu*, const QVector<std::shared_ptr<Variable>>&)),
m_Ui->view, SLOT(attachVariableMenu(QMenu*, const QVector<std::shared_ptr<Variable>>&)),
Alexandre Leroux
Changes signal to pass a list of variables...
r288 Qt::DirectConnection);
Initialisation de l'application multithread avec le spimpl....
r21 }
New Catalogue API WIP, basic models and views implemented...
r1406 MainWindow::~MainWindow() {}
Initialisation de l'application multithread avec le spimpl....
r21
New Catalogue API WIP, basic models and views implemented...
r1406 void MainWindow::changeEvent(QEvent* e)
Initialisation de l'application multithread avec le spimpl....
r21 {
QMainWindow::changeEvent(e);
New Catalogue API WIP, basic models and views implemented...
r1406 switch (e->type())
{
Initialisation de l'application multithread avec le spimpl....
r21 case QEvent::LanguageChange:
Refactoring of app module to avoir vera++ warning and to dispatch sources files in the corrects paths
r54 m_Ui->retranslateUi(this);
Initialisation de l'application multithread avec le spimpl....
r21 break;
default:
break;
}
}
Check unsaved data on close
r1239
New Catalogue API WIP, basic models and views implemented...
r1406 void MainWindow::closeEvent(QCloseEvent* event)
Check unsaved data on close
r1239 {
New Catalogue API WIP, basic models and views implemented...
r1406 if (!impl->checkDataToSave(this))
{
Check unsaved data on close
r1239 event->ignore();
}
New Catalogue API WIP, basic models and views implemented...
r1406 else
{
Check unsaved data on close
r1239 event->accept();
}
}
New Catalogue API WIP, basic models and views implemented...
r1406 void MainWindow::keyPressEvent(QKeyEvent* event)
Restored graph D&D and added full screen mode (F11)...
r1376 {
switch (event->key())
{
New Catalogue API WIP, basic models and views implemented...
r1406 case Qt::Key_F11:
if (this->isFullScreen())
{
this->showNormal();
}
else
{
this->showFullScreen();
}
break;
default:
break;
Restored graph D&D and added full screen mode (F11)...
r1376 }
}
New Catalogue API WIP, basic models and views implemented...
r1406 bool MainWindow::MainWindowPrivate::checkDataToSave(QWidget* parentWidget)
Check unsaved data on close
r1239 {
New Catalogue API WIP, basic models and views implemented...
r1406 // auto hasChanges = sqpApp->catalogueController().hasChanges();
// if (hasChanges)
// {
// // There are some unsaved changes
// switch (QMessageBox::question(parentWidget, tr("Save changes"),
// tr("The catalogue controller has unsaved changes.\nDo you want to save them ?"),
// QMessageBox::SaveAll | QMessageBox::Discard | QMessageBox::Cancel,
// QMessageBox::SaveAll))
// {
// case QMessageBox::SaveAll:
// sqpApp->catalogueController().saveAll();
// break;
// case QMessageBox::Discard:
// break;
// case QMessageBox::Cancel:
// default:
// return false;
// }
// }
Check unsaved data on close
r1239
return true;
}