void tst_QUndoGroup::commandTextFormat() { QString binDir = QLibraryInfo::location(QLibraryInfo::BinariesPath); if (QProcess::execute(binDir + "/lrelease -version") != 0) QSKIP("lrelease is missing or broken"); const QString tsFile = QFINDTESTDATA("testdata/qundogroup.ts"); QVERIFY(!tsFile.isEmpty()); QVERIFY(!QProcess::execute(binDir + "/lrelease " + tsFile)); QTranslator translator; const QString qmFile = QFINDTESTDATA("testdata/qundogroup.qm"); QVERIFY(!qmFile.isEmpty()); QVERIFY(translator.load(qmFile)); qApp->installTranslator(&translator); QUndoGroup group; QAction *undo_action = group.createUndoAction(0); QAction *redo_action = group.createRedoAction(0); QCOMPARE(undo_action->text(), QString("Undo-default-text")); QCOMPARE(redo_action->text(), QString("Redo-default-text")); QUndoStack stack(&group); stack.setActive(); QString str; stack.push(new AppendCommand(&str, "foo")); QCOMPARE(undo_action->text(), QString("undo-prefix append undo-suffix")); QCOMPARE(redo_action->text(), QString("Redo-default-text")); stack.push(new InsertCommand(&str, 0, "bar")); stack.undo(); QCOMPARE(undo_action->text(), QString("undo-prefix append undo-suffix")); QCOMPARE(redo_action->text(), QString("redo-prefix insert redo-suffix")); stack.undo(); QCOMPARE(undo_action->text(), QString("Undo-default-text")); QCOMPARE(redo_action->text(), QString("redo-prefix append redo-suffix")); qApp->removeTranslator(&translator); }
void tst_QUndoGroup::checkSignals() { QUndoGroup group; QAction *undo_action = group.createUndoAction(0, QString("foo")); QAction *redo_action = group.createRedoAction(0, QString("bar")); QSignalSpy indexChangedSpy(&group, SIGNAL(indexChanged(int))); QSignalSpy cleanChangedSpy(&group, SIGNAL(cleanChanged(bool))); QSignalSpy canUndoChangedSpy(&group, SIGNAL(canUndoChanged(bool))); QSignalSpy undoTextChangedSpy(&group, SIGNAL(undoTextChanged(QString))); QSignalSpy canRedoChangedSpy(&group, SIGNAL(canRedoChanged(bool))); QSignalSpy redoTextChangedSpy(&group, SIGNAL(redoTextChanged(QString))); QString str; CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged group.undo(); CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged group.redo(); CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged QUndoStack *stack1 = new QUndoStack(&group); CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged stack1->push(new AppendCommand(&str, "foo")); CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged stack1->setActive(); CHECK_STATE(stack1, // activeStack false, // clean true, // canUndo "append", // undoText false, // canRedo "", // redoText true, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged stack1->push(new InsertCommand(&str, 0, "bar")); CHECK_STATE(stack1, // activeStack false, // clean true, // canUndo "insert", // undoText false, // canRedo "", // redoText false, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged stack1->undo(); CHECK_STATE(stack1, // activeStack false, // clean true, // canUndo "append", // undoText true, // canRedo "insert", // redoText false, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged stack1->undo(); CHECK_STATE(stack1, // activeStack true, // clean false, // canUndo "", // undoText true, // canRedo "append", // redoText true, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged stack1->undo(); CHECK_STATE(stack1, // activeStack true, // clean false, // canUndo "", // undoText true, // canRedo "append", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged group.undo(); CHECK_STATE(stack1, // activeStack true, // clean false, // canUndo "", // undoText true, // canRedo "append", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged group.redo(); CHECK_STATE(stack1, // activeStack false, // clean true, // canUndo "append", // undoText true, // canRedo "insert", // redoText true, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged stack1->setActive(false); CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText true, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged QUndoStack *stack2 = new QUndoStack(&group); CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText false, // cleanChanged false, // indexChanged false, // undoChanged false) // redoChanged stack2->setActive(); CHECK_STATE(stack2, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText true, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged stack1->setActive(); CHECK_STATE(stack1, // activeStack false, // clean true, // canUndo "append", // undoText true, // canRedo "insert", // redoText true, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged delete stack1; CHECK_STATE(0, // activeStack true, // clean false, // canUndo "", // undoText false, // canRedo "", // redoText true, // cleanChanged true, // indexChanged true, // undoChanged true) // redoChanged delete undo_action; delete redo_action; }
MainToolBar::MainToolBar(QWidget *parent) : QToolBar(parent) , mCommandButton(new CommandButton(this)) { setObjectName(QLatin1String("MainToolBar")); setWindowTitle(tr("Main Toolbar")); setToolButtonStyle(Qt::ToolButtonFollowStyle); QIcon newIcon(QLatin1String(":images/24x24/document-new.png")); QIcon openIcon(QLatin1String(":images/24x24/document-open.png")); QIcon saveIcon(QLatin1String(":images/24x24/document-save.png")); QIcon undoIcon(QLatin1String(":images/24x24/edit-undo.png")); QIcon redoIcon(QLatin1String(":images/24x24/edit-redo.png")); newIcon.addFile(QLatin1String(":images/16x16/document-new.png")); openIcon.addFile(QLatin1String(":images/16x16/document-open.png")); saveIcon.addFile(QLatin1String(":images/16x16/document-save.png")); redoIcon.addFile(QLatin1String(":images/16x16/edit-redo.png")); undoIcon.addFile(QLatin1String(":images/16x16/edit-undo.png")); mNewButton = new QToolButton(this); mOpenAction = new QAction(this); mSaveAction = new QAction(this); QMenu *newMenu = new QMenu(this); newMenu->addAction(ActionManager::action("NewMap")); newMenu->addAction(ActionManager::action("NewTileset")); mNewButton->setMenu(newMenu); mNewButton->setPopupMode(QToolButton::InstantPopup); QUndoGroup *undoGroup = DocumentManager::instance()->undoGroup(); mUndoAction = undoGroup->createUndoAction(this, tr("Undo")); mRedoAction = undoGroup->createRedoAction(this, tr("Redo")); mNewButton->setIcon(newIcon); mOpenAction->setIcon(openIcon); mSaveAction->setIcon(saveIcon); mUndoAction->setIcon(undoIcon); mRedoAction->setIcon(redoIcon); Utils::setThemeIcon(mNewButton, "document-new"); Utils::setThemeIcon(mOpenAction, "document-open"); Utils::setThemeIcon(mSaveAction, "document-save"); Utils::setThemeIcon(mRedoAction, "edit-redo"); Utils::setThemeIcon(mUndoAction, "edit-undo"); mRedoAction->setPriority(QAction::LowPriority); addWidget(mNewButton); addAction(mOpenAction); addAction(mSaveAction); addSeparator(); addAction(mUndoAction); addAction(mRedoAction); addSeparator(); addWidget(mCommandButton); DocumentManager *documentManager = DocumentManager::instance(); connect(mOpenAction, &QAction::triggered, documentManager, &DocumentManager::openFileDialog); connect(mSaveAction, &QAction::triggered, documentManager, &DocumentManager::saveFile); connect(documentManager, &DocumentManager::currentDocumentChanged, this, &MainToolBar::currentDocumentChanged); connect(this, &MainToolBar::orientationChanged, this, &MainToolBar::onOrientationChanged); retranslateUi(); }
MainWindow::MainWindow(QWidget *parent, Qt::WFlags flags) : QMainWindow(parent, flags) , mUi(new Ui::MainWindow) , mMapDocument(0) , mActionHandler(new MapDocumentActionHandler(this)) , mLayerDock(new LayerDock(this)) , mTilesetDock(new TilesetDock(this)) , mZoomLabel(new QLabel) , mStatusInfoLabel(new QLabel) , mClipboardManager(new ClipboardManager(this)) , mDocumentManager(DocumentManager::instance()) { mUi->setupUi(this); setCentralWidget(mDocumentManager->widget()); PluginManager::instance()->loadPlugins(); #ifdef Q_WS_MAC MacSupport::addFullscreen(this); #endif Preferences *preferences = Preferences::instance(); QIcon redoIcon(QLatin1String(":images/16x16/edit-redo.png")); QIcon undoIcon(QLatin1String(":images/16x16/edit-undo.png")); QIcon tiledIcon(QLatin1String(":images/tiled-icon-16.png")); tiledIcon.addFile(QLatin1String(":images/tiled-icon-32.png")); setWindowIcon(tiledIcon); // Add larger icon versions for actions used in the tool bar QIcon newIcon = mUi->actionNew->icon(); QIcon openIcon = mUi->actionOpen->icon(); QIcon saveIcon = mUi->actionSave->icon(); newIcon.addFile(QLatin1String(":images/24x24/document-new.png")); openIcon.addFile(QLatin1String(":images/24x24/document-open.png")); saveIcon.addFile(QLatin1String(":images/24x24/document-save.png")); redoIcon.addFile(QLatin1String(":images/24x24/edit-redo.png")); undoIcon.addFile(QLatin1String(":images/24x24/edit-undo.png")); mUi->actionNew->setIcon(newIcon); mUi->actionOpen->setIcon(openIcon); mUi->actionSave->setIcon(saveIcon); QUndoGroup *undoGroup = mDocumentManager->undoGroup(); QAction *undoAction = undoGroup->createUndoAction(this, tr("Undo")); QAction *redoAction = undoGroup->createRedoAction(this, tr("Redo")); mUi->mainToolBar->setToolButtonStyle(Qt::ToolButtonFollowStyle); mUi->actionNew->setPriority(QAction::LowPriority); redoAction->setPriority(QAction::LowPriority); redoAction->setIcon(redoIcon); undoAction->setIcon(undoIcon); redoAction->setIconText(tr("Redo")); undoAction->setIconText(tr("Undo")); connect(undoGroup, SIGNAL(cleanChanged(bool)), SLOT(updateWindowTitle())); UndoDock *undoDock = new UndoDock(undoGroup, this); addDockWidget(Qt::RightDockWidgetArea, mLayerDock); addDockWidget(Qt::RightDockWidgetArea, undoDock); tabifyDockWidget(undoDock, mLayerDock); addDockWidget(Qt::RightDockWidgetArea, mTilesetDock); statusBar()->addPermanentWidget(mZoomLabel); mUi->actionNew->setShortcuts(QKeySequence::New); mUi->actionOpen->setShortcuts(QKeySequence::Open); mUi->actionSave->setShortcuts(QKeySequence::Save); mUi->actionSaveAs->setShortcuts(QKeySequence::SaveAs); mUi->actionClose->setShortcuts(QKeySequence::Close); mUi->actionQuit->setShortcuts(QKeySequence::Quit); mUi->actionCut->setShortcuts(QKeySequence::Cut); mUi->actionCopy->setShortcuts(QKeySequence::Copy); mUi->actionPaste->setShortcuts(QKeySequence::Paste); mUi->actionDelete->setShortcuts(QKeySequence::Delete); undoAction->setShortcuts(QKeySequence::Undo); redoAction->setShortcuts(QKeySequence::Redo); mUi->actionShowGrid->setChecked(preferences->showGrid()); mUi->actionSnapToGrid->setChecked(preferences->snapToGrid()); mUi->actionHighlightCurrentLayer->setChecked(preferences->highlightCurrentLayer()); // Make sure Ctrl+= also works for zooming in QList<QKeySequence> keys = QKeySequence::keyBindings(QKeySequence::ZoomIn); keys += QKeySequence(tr("Ctrl+=")); keys += QKeySequence(tr("+")); mUi->actionZoomIn->setShortcuts(keys); keys = QKeySequence::keyBindings(QKeySequence::ZoomOut); keys += QKeySequence(tr("-")); mUi->actionZoomOut->setShortcuts(keys); mUi->menuEdit->insertAction(mUi->actionCut, undoAction); mUi->menuEdit->insertAction(mUi->actionCut, redoAction); mUi->menuEdit->insertSeparator(mUi->actionCut); mUi->menuEdit->insertAction(mUi->actionPreferences, mActionHandler->actionSelectAll()); mUi->menuEdit->insertAction(mUi->actionPreferences, mActionHandler->actionSelectNone()); mUi->menuEdit->insertSeparator(mUi->actionPreferences); mUi->mainToolBar->addAction(undoAction); mUi->mainToolBar->addAction(redoAction); mUi->mainToolBar->addSeparator(); mCommandButton = new CommandButton(this); mUi->mainToolBar->addWidget(mCommandButton); mUi->menuMap->insertAction(mUi->actionOffsetMap, mActionHandler->actionCropToSelection()); mRandomButton = new QToolButton(this); mRandomButton->setToolTip(tr("Random Mode")); mRandomButton->setIcon(QIcon(QLatin1String(":images/24x24/dice.png"))); mRandomButton->setCheckable(true); mUi->mainToolBar->addWidget(mRandomButton); mLayerMenu = new QMenu(tr("&Layer"), this); mLayerMenu->addAction(mActionHandler->actionAddTileLayer()); mLayerMenu->addAction(mActionHandler->actionAddObjectGroup()); mLayerMenu->addAction(mActionHandler->actionDuplicateLayer()); mLayerMenu->addAction(mActionHandler->actionMergeLayerDown()); mLayerMenu->addAction(mActionHandler->actionRemoveLayer()); mLayerMenu->addAction(mActionHandler->actionRenameLayer()); mLayerMenu->addSeparator(); mLayerMenu->addAction(mActionHandler->actionSelectPreviousLayer()); mLayerMenu->addAction(mActionHandler->actionSelectNextLayer()); mLayerMenu->addAction(mActionHandler->actionMoveLayerUp()); mLayerMenu->addAction(mActionHandler->actionMoveLayerDown()); mLayerMenu->addSeparator(); mLayerMenu->addAction(mActionHandler->actionToggleOtherLayers()); mLayerMenu->addSeparator(); mLayerMenu->addAction(mActionHandler->actionLayerProperties()); menuBar()->insertMenu(mUi->menuHelp->menuAction(), mLayerMenu); connect(mUi->actionNew, SIGNAL(triggered()), SLOT(newMap())); connect(mUi->actionOpen, SIGNAL(triggered()), SLOT(openFile())); connect(mUi->actionClearRecentFiles, SIGNAL(triggered()), SLOT(clearRecentFiles())); connect(mUi->actionSave, SIGNAL(triggered()), SLOT(saveFile())); connect(mUi->actionSaveAs, SIGNAL(triggered()), SLOT(saveFileAs())); connect(mUi->actionSaveAsImage, SIGNAL(triggered()), SLOT(saveAsImage())); connect(mUi->actionExport, SIGNAL(triggered()), SLOT(exportAs())); connect(mUi->actionClose, SIGNAL(triggered()), SLOT(closeFile())); connect(mUi->actionCloseAll, SIGNAL(triggered()), SLOT(closeAllFiles())); connect(mUi->actionQuit, SIGNAL(triggered()), SLOT(close())); connect(mUi->actionCut, SIGNAL(triggered()), SLOT(cut())); connect(mUi->actionCopy, SIGNAL(triggered()), SLOT(copy())); connect(mUi->actionPaste, SIGNAL(triggered()), SLOT(paste())); connect(mUi->actionDelete, SIGNAL(triggered()), SLOT(delete_())); connect(mUi->actionPreferences, SIGNAL(triggered()), SLOT(openPreferences())); connect(mUi->actionShowGrid, SIGNAL(toggled(bool)), preferences, SLOT(setShowGrid(bool))); connect(mUi->actionSnapToGrid, SIGNAL(toggled(bool)), preferences, SLOT(setSnapToGrid(bool))); connect(mUi->actionHighlightCurrentLayer, SIGNAL(toggled(bool)), preferences, SLOT(setHighlightCurrentLayer(bool))); connect(mUi->actionZoomIn, SIGNAL(triggered()), SLOT(zoomIn())); connect(mUi->actionZoomOut, SIGNAL(triggered()), SLOT(zoomOut())); connect(mUi->actionZoomNormal, SIGNAL(triggered()), SLOT(zoomNormal())); connect(mUi->actionNewTileset, SIGNAL(triggered()), SLOT(newTileset())); connect(mUi->actionAddExternalTileset, SIGNAL(triggered()), SLOT(addExternalTileset())); connect(mUi->actionResizeMap, SIGNAL(triggered()), SLOT(resizeMap())); connect(mUi->actionOffsetMap, SIGNAL(triggered()), SLOT(offsetMap())); connect(mUi->actionMapProperties, SIGNAL(triggered()), SLOT(editMapProperties())); connect(mUi->actionAutoMap, SIGNAL(triggered()), SLOT(autoMap())); connect(mActionHandler->actionLayerProperties(), SIGNAL(triggered()), SLOT(editLayerProperties())); connect(mUi->actionAbout, SIGNAL(triggered()), SLOT(aboutTiled())); connect(mUi->actionAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt())); connect(mTilesetDock, SIGNAL(tilesetsDropped(QStringList)), SLOT(newTilesets(QStringList))); // Add recent file actions to the recent files menu for (int i = 0; i < MaxRecentFiles; ++i) { mRecentFiles[i] = new QAction(this); mUi->menuRecentFiles->insertAction(mUi->actionClearRecentFiles, mRecentFiles[i]); mRecentFiles[i]->setVisible(false); connect(mRecentFiles[i], SIGNAL(triggered()), this, SLOT(openRecentFile())); } mUi->menuRecentFiles->insertSeparator(mUi->actionClearRecentFiles); setThemeIcon(mUi->actionNew, "document-new"); setThemeIcon(mUi->actionOpen, "document-open"); setThemeIcon(mUi->menuRecentFiles, "document-open-recent"); setThemeIcon(mUi->actionClearRecentFiles, "edit-clear"); setThemeIcon(mUi->actionSave, "document-save"); setThemeIcon(mUi->actionSaveAs, "document-save-as"); setThemeIcon(mUi->actionClose, "window-close"); setThemeIcon(mUi->actionQuit, "application-exit"); setThemeIcon(mUi->actionCut, "edit-cut"); setThemeIcon(mUi->actionCopy, "edit-copy"); setThemeIcon(mUi->actionPaste, "edit-paste"); setThemeIcon(mUi->actionDelete, "edit-delete"); setThemeIcon(redoAction, "edit-redo"); setThemeIcon(undoAction, "edit-undo"); setThemeIcon(mUi->actionZoomIn, "zoom-in"); setThemeIcon(mUi->actionZoomOut, "zoom-out"); setThemeIcon(mUi->actionZoomNormal, "zoom-original"); setThemeIcon(mUi->actionNewTileset, "document-new"); setThemeIcon(mUi->actionResizeMap, "document-page-setup"); setThemeIcon(mUi->actionMapProperties, "document-properties"); setThemeIcon(mUi->actionAbout, "help-about"); mStampBrush = new StampBrush(this); mBucketFillTool = new BucketFillTool(this); CreateObjectTool *tileObjectsTool = new CreateObjectTool( CreateObjectTool::CreateTile, this); CreateObjectTool *areaObjectsTool = new CreateObjectTool( CreateObjectTool::CreateArea, this); CreateObjectTool *polygonObjectsTool = new CreateObjectTool( CreateObjectTool::CreatePolygon, this); CreateObjectTool *polylineObjectsTool = new CreateObjectTool( CreateObjectTool::CreatePolyline, this); connect(mTilesetDock, SIGNAL(currentTilesChanged(const TileLayer*)), this, SLOT(setStampBrush(const TileLayer*))); connect(mStampBrush, SIGNAL(currentTilesChanged(const TileLayer*)), this, SLOT(setStampBrush(const TileLayer*))); connect(mTilesetDock, SIGNAL(currentTileChanged(Tile*)), tileObjectsTool, SLOT(setTile(Tile*))); connect(mRandomButton, SIGNAL(toggled(bool)), mStampBrush, SLOT(setRandom(bool))); ToolManager *toolManager = ToolManager::instance(); toolManager->registerTool(mStampBrush); toolManager->registerTool(mBucketFillTool); toolManager->registerTool(new Eraser(this)); toolManager->registerTool(new TileSelectionTool(this)); toolManager->addSeparator(); toolManager->registerTool(new ObjectSelectionTool(this)); toolManager->registerTool(new EditPolygonTool(this)); toolManager->registerTool(areaObjectsTool); toolManager->registerTool(tileObjectsTool); toolManager->registerTool(polygonObjectsTool); toolManager->registerTool(polylineObjectsTool); addToolBar(toolManager->toolBar()); statusBar()->addWidget(mStatusInfoLabel); connect(toolManager, SIGNAL(statusInfoChanged(QString)), this, SLOT(updateStatusInfoLabel(QString))); mUi->menuView->addSeparator(); mUi->menuView->addAction(mTilesetDock->toggleViewAction()); mUi->menuView->addAction(mLayerDock->toggleViewAction()); mUi->menuView->addAction(undoDock->toggleViewAction()); connect(mClipboardManager, SIGNAL(hasMapChanged()), SLOT(updateActions())); connect(mDocumentManager, SIGNAL(currentDocumentChanged(MapDocument*)), SLOT(mapDocumentChanged(MapDocument*))); connect(mDocumentManager, SIGNAL(documentCloseRequested(int)), this, SLOT(closeMapDocument(int))); QShortcut *switchToLeftDocument = new QShortcut(tr("Ctrl+PgUp"), this); connect(switchToLeftDocument, SIGNAL(activated()), mDocumentManager, SLOT(switchToLeftDocument())); QShortcut *switchToLeftDocument1 = new QShortcut(tr("Ctrl+Shift+Tab"), this); connect(switchToLeftDocument1, SIGNAL(activated()), mDocumentManager, SLOT(switchToLeftDocument())); QShortcut *switchToRightDocument = new QShortcut(tr("Ctrl+PgDown"), this); connect(switchToRightDocument, SIGNAL(activated()), mDocumentManager, SLOT(switchToRightDocument())); QShortcut *switchToRightDocument1 = new QShortcut(tr("Ctrl+Tab"), this); connect(switchToRightDocument1, SIGNAL(activated()), mDocumentManager, SLOT(switchToRightDocument())); new QShortcut(tr("X"), this, SLOT(flipStampHorizontally())); new QShortcut(tr("Y"), this, SLOT(flipStampVertically())); new QShortcut(tr("Z"), this, SLOT(rotateStampRight())); new QShortcut(tr("Shift+Z"), this, SLOT(rotateStampLeft())); QShortcut *copyPositionShortcut = new QShortcut(tr("Alt+C"), this); connect(copyPositionShortcut, SIGNAL(activated()), mActionHandler, SLOT(copyPosition())); updateActions(); readSettings(); setupQuickStamps(); connect(AutomappingManager::instance(), SIGNAL(warningsOccurred()), this, SLOT(autoMappingWarning())); connect(AutomappingManager::instance(), SIGNAL(errorsOccurred()), this, SLOT(autoMappingError())); }
MainWindow::MainWindow(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, flags) , mUi(new Ui::MainWindow) , mMapDocument(0) , mActionHandler(new MapDocumentActionHandler(this)) , mMapsDock(new MapsDock(this)) , mTilesetDock(new TilesetDock(this)) , mMiniMapDock(new MiniMapDock(this)) , mZoomable(0) , mZoomComboBox(new QComboBox) , mStatusInfoLabel(new QLabel) , mValidationErrorWidget(new QWidget) , mValidationErrorLabel(new QLabel) , mDocumentManager(DocumentManager::instance()) , mQuickStampManager(new QuickStampManager(this)) , mToolManager(new ToolManager(this)) , mKodableMapValidator(new KodableMapValidator(this)) { mUi->setupUi(this); setCentralWidget(mDocumentManager->widget()); #ifdef Q_OS_MAC MacSupport::addFullscreen(this); #endif Preferences *preferences = Preferences::instance(); QIcon redoIcon(QLatin1String(":images/16x16/edit-redo.png")); QIcon undoIcon(QLatin1String(":images/16x16/edit-undo.png")); QIcon windowIcon(QLatin1String(":images/kodable-editor-icon.png")); setWindowIcon(windowIcon); // Add larger icon versions for actions used in the tool bar QIcon newIcon = mUi->actionNew->icon(); QIcon openIcon = mUi->actionOpen->icon(); QIcon saveIcon = mUi->actionSave->icon(); newIcon.addFile(QLatin1String(":images/24x24/document-new.png")); openIcon.addFile(QLatin1String(":images/24x24/document-open.png")); saveIcon.addFile(QLatin1String(":images/24x24/document-save.png")); redoIcon.addFile(QLatin1String(":images/24x24/edit-redo.png")); undoIcon.addFile(QLatin1String(":images/24x24/edit-undo.png")); mUi->actionNew->setIcon(newIcon); mUi->actionOpen->setIcon(openIcon); mUi->actionSave->setIcon(saveIcon); QUndoGroup *undoGroup = mDocumentManager->undoGroup(); QAction *undoAction = undoGroup->createUndoAction(this, tr("Undo")); QAction *redoAction = undoGroup->createRedoAction(this, tr("Redo")); mUi->mainToolBar->setToolButtonStyle(Qt::ToolButtonFollowStyle); mUi->actionNew->setPriority(QAction::LowPriority); redoAction->setPriority(QAction::LowPriority); redoAction->setIcon(redoIcon); undoAction->setIcon(undoIcon); redoAction->setIconText(tr("Redo")); undoAction->setIconText(tr("Undo")); connect(undoGroup, SIGNAL(cleanChanged(bool)), SLOT(updateWindowTitle())); UndoDock *undoDock = new UndoDock(undoGroup, this); PropertiesDock *propertiesDock = new PropertiesDock(this); addDockWidget(Qt::LeftDockWidgetArea, undoDock); addDockWidget(Qt::LeftDockWidgetArea, mMapsDock); addDockWidget(Qt::RightDockWidgetArea, mMiniMapDock); addDockWidget(Qt::RightDockWidgetArea, mTilesetDock); addDockWidget(Qt::RightDockWidgetArea, propertiesDock); tabifyDockWidget(undoDock, mMapsDock); // These dock widgets may not be immediately useful to many people, so // they are hidden by default. undoDock->setVisible(false); mMapsDock->setVisible(false); mMiniMapDock->setVisible(false); QHBoxLayout *errorBoxLayout = new QHBoxLayout; QLabel *iconLabel = new QLabel; iconLabel->setPixmap(QPixmap(QLatin1String(":images/16x16/dialog-warning.png"))); errorBoxLayout->addWidget(iconLabel); errorBoxLayout->addWidget(mValidationErrorLabel); mValidationErrorWidget->setLayout(errorBoxLayout); mValidationErrorWidget->setVisible(false); statusBar()->addPermanentWidget(mValidationErrorWidget); statusBar()->addPermanentWidget(mZoomComboBox); mUi->actionNew->setShortcuts(QKeySequence::New); mUi->actionOpen->setShortcuts(QKeySequence::Open); mUi->actionSave->setShortcuts(QKeySequence::Save); mUi->actionSaveAs->setShortcuts(QKeySequence::SaveAs); mUi->actionClose->setShortcuts(QKeySequence::Close); mUi->actionQuit->setShortcuts(QKeySequence::Quit); mUi->actionCut->setShortcuts(QKeySequence::Cut); mUi->actionCopy->setShortcuts(QKeySequence::Copy); mUi->actionPaste->setShortcuts(QKeySequence::Paste); mUi->actionDelete->setShortcuts(QKeySequence::Delete); undoAction->setShortcuts(QKeySequence::Undo); redoAction->setShortcuts(QKeySequence::Redo); mUi->actionShowGrid->setChecked(preferences->showGrid()); mUi->actionShowTileObjectOutlines->setChecked(preferences->showTileObjectOutlines()); mUi->actionShowTileAnimations->setChecked(preferences->showTileAnimations()); mUi->actionSnapToGrid->setChecked(preferences->snapToGrid()); mUi->actionSnapToFineGrid->setChecked(preferences->snapToFineGrid()); mUi->actionHighlightCurrentLayer->setChecked(preferences->highlightCurrentLayer()); QShortcut *reloadTilesetsShortcut = new QShortcut(QKeySequence(tr("Ctrl+T")), this); connect(reloadTilesetsShortcut, SIGNAL(activated()), this, SLOT(reloadTilesets())); // Make sure Ctrl+= also works for zooming in QList<QKeySequence> keys = QKeySequence::keyBindings(QKeySequence::ZoomIn); keys += QKeySequence(tr("Ctrl+=")); keys += QKeySequence(tr("+")); mUi->actionZoomIn->setShortcuts(keys); keys = QKeySequence::keyBindings(QKeySequence::ZoomOut); keys += QKeySequence(tr("-")); mUi->actionZoomOut->setShortcuts(keys); mUi->menuEdit->insertAction(mUi->actionCut, undoAction); mUi->menuEdit->insertAction(mUi->actionCut, redoAction); mUi->menuEdit->insertSeparator(mUi->actionCut); mUi->menuEdit->insertAction(mUi->actionPreferences, mActionHandler->actionSelectAll()); mUi->menuEdit->insertAction(mUi->actionPreferences, mActionHandler->actionSelectNone()); mUi->menuEdit->insertSeparator(mUi->actionPreferences); mUi->mainToolBar->addAction(undoAction); mUi->mainToolBar->addAction(redoAction); mUi->mainToolBar->addSeparator(); mLayerMenu = new QMenu(tr("&Layer"), this); mLayerMenu->addAction(mActionHandler->actionLayerProperties()); menuBar()->insertMenu(mUi->menuHelp->menuAction(), mLayerMenu); connect(mUi->actionNew, SIGNAL(triggered()), SLOT(newMap())); connect(mUi->actionOpen, SIGNAL(triggered()), SLOT(openFile())); connect(mUi->actionClearRecentFiles, SIGNAL(triggered()), SLOT(clearRecentFiles())); connect(mUi->actionSave, SIGNAL(triggered()), SLOT(saveFile())); connect(mUi->actionSaveAs, SIGNAL(triggered()), SLOT(saveFileAs())); connect(mUi->actionSaveAsImage, SIGNAL(triggered()), SLOT(saveAsImage())); connect(mUi->actionExport, SIGNAL(triggered()), SLOT(exportAs())); connect(mUi->actionClose, SIGNAL(triggered()), SLOT(closeFile())); connect(mUi->actionCloseAll, SIGNAL(triggered()), SLOT(closeAllFiles())); connect(mUi->actionQuit, SIGNAL(triggered()), SLOT(close())); connect(mUi->actionCut, SIGNAL(triggered()), SLOT(cut())); connect(mUi->actionCopy, SIGNAL(triggered()), SLOT(copy())); connect(mUi->actionPaste, SIGNAL(triggered()), SLOT(paste())); connect(mUi->actionDelete, SIGNAL(triggered()), SLOT(delete_())); connect(mUi->actionPreferences, SIGNAL(triggered()), SLOT(openPreferences())); connect(mUi->actionShowGrid, SIGNAL(toggled(bool)), preferences, SLOT(setShowGrid(bool))); connect(mUi->actionShowTileObjectOutlines, SIGNAL(toggled(bool)), preferences, SLOT(setShowTileObjectOutlines(bool))); connect(mUi->actionShowTileAnimations, SIGNAL(toggled(bool)), preferences, SLOT(setShowTileAnimations(bool))); connect(mUi->actionSnapToGrid, SIGNAL(toggled(bool)), preferences, SLOT(setSnapToGrid(bool))); connect(mUi->actionSnapToFineGrid, SIGNAL(toggled(bool)), preferences, SLOT(setSnapToFineGrid(bool))); connect(mUi->actionHighlightCurrentLayer, SIGNAL(toggled(bool)), preferences, SLOT(setHighlightCurrentLayer(bool))); connect(mUi->actionZoomIn, SIGNAL(triggered()), SLOT(zoomIn())); connect(mUi->actionZoomOut, SIGNAL(triggered()), SLOT(zoomOut())); connect(mUi->actionZoomNormal, SIGNAL(triggered()), SLOT(zoomNormal())); connect(mUi->actionNewTileset, SIGNAL(triggered()), SLOT(newTileset())); connect(mUi->actionAddExternalTileset, SIGNAL(triggered()), SLOT(addExternalTileset())); connect(mUi->actionOffsetMap, SIGNAL(triggered()), SLOT(offsetMap())); connect(mUi->actionMapProperties, SIGNAL(triggered()), SLOT(editMapProperties())); connect(mUi->actionAbout, SIGNAL(triggered()), SLOT(aboutTiled())); connect(mUi->actionAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt())); connect(mTilesetDock, SIGNAL(tilesetsDropped(QStringList)), SLOT(newTilesets(QStringList))); // Add recent file actions to the recent files menu for (int i = 0; i < MaxRecentFiles; ++i) { mRecentFiles[i] = new QAction(this); mUi->menuRecentFiles->insertAction(mUi->actionClearRecentFiles, mRecentFiles[i]); mRecentFiles[i]->setVisible(false); connect(mRecentFiles[i], SIGNAL(triggered()), this, SLOT(openRecentFile())); } mUi->menuRecentFiles->insertSeparator(mUi->actionClearRecentFiles); setThemeIcon(mUi->actionNew, "document-new"); setThemeIcon(mUi->actionOpen, "document-open"); setThemeIcon(mUi->menuRecentFiles, "document-open-recent"); setThemeIcon(mUi->actionClearRecentFiles, "edit-clear"); setThemeIcon(mUi->actionSave, "document-save"); setThemeIcon(mUi->actionSaveAs, "document-save-as"); setThemeIcon(mUi->actionClose, "window-close"); setThemeIcon(mUi->actionQuit, "application-exit"); setThemeIcon(mUi->actionCut, "edit-cut"); setThemeIcon(mUi->actionCopy, "edit-copy"); setThemeIcon(mUi->actionPaste, "edit-paste"); setThemeIcon(mUi->actionDelete, "edit-delete"); setThemeIcon(redoAction, "edit-redo"); setThemeIcon(undoAction, "edit-undo"); setThemeIcon(mUi->actionZoomIn, "zoom-in"); setThemeIcon(mUi->actionZoomOut, "zoom-out"); setThemeIcon(mUi->actionZoomNormal, "zoom-original"); setThemeIcon(mUi->actionNewTileset, "document-new"); setThemeIcon(mUi->actionMapProperties, "document-properties"); setThemeIcon(mUi->actionAbout, "help-about"); mStampBrush = new StampBrush(this); mBucketFillTool = new BucketFillTool(this); connect(mTilesetDock, SIGNAL(currentTilesChanged(const TileLayer*)), this, SLOT(setStampBrush(const TileLayer*))); connect(mStampBrush, SIGNAL(currentTilesChanged(const TileLayer*)), this, SLOT(setStampBrush(const TileLayer*))); QToolBar *toolBar = mUi->toolsToolBar; toolBar->addAction(mToolManager->registerTool(mStampBrush)); toolBar->addAction(mToolManager->registerTool(mBucketFillTool)); toolBar->addAction(mToolManager->registerTool(new Eraser(this))); toolBar->addAction(mToolManager->registerTool(new TileSelectionTool(this))); mDocumentManager->setSelectedTool(mToolManager->selectedTool()); connect(mToolManager, SIGNAL(selectedToolChanged(AbstractTool*)), mDocumentManager, SLOT(setSelectedTool(AbstractTool*))); statusBar()->addWidget(mStatusInfoLabel); connect(mToolManager, SIGNAL(statusInfoChanged(QString)), this, SLOT(updateStatusInfoLabel(QString))); // Add the 'Views and Toolbars' submenu. This needs to happen after all // the dock widgets and toolbars have been added to the main window. mViewsAndToolbarsMenu = new QAction(tr("Views and Toolbars"), this); QMenu *popupMenu = createPopupMenu(); popupMenu->setParent(this); mViewsAndToolbarsMenu->setMenu(popupMenu); mUi->menuView->insertAction(mUi->actionShowGrid, mViewsAndToolbarsMenu); mUi->menuView->insertSeparator(mUi->actionShowGrid); connect(ClipboardManager::instance(), SIGNAL(hasMapChanged()), SLOT(updateActions())); connect(mDocumentManager, SIGNAL(currentDocumentChanged(MapDocument*)), SLOT(mapDocumentChanged(MapDocument*))); connect(mDocumentManager, SIGNAL(documentCloseRequested(int)), this, SLOT(closeMapDocument(int))); QShortcut *switchToLeftDocument = new QShortcut(tr("Alt+Left"), this); connect(switchToLeftDocument, SIGNAL(activated()), mDocumentManager, SLOT(switchToLeftDocument())); QShortcut *switchToLeftDocument1 = new QShortcut(tr("Ctrl+Shift+Tab"), this); connect(switchToLeftDocument1, SIGNAL(activated()), mDocumentManager, SLOT(switchToLeftDocument())); QShortcut *switchToRightDocument = new QShortcut(tr("Alt+Right"), this); connect(switchToRightDocument, SIGNAL(activated()), mDocumentManager, SLOT(switchToRightDocument())); QShortcut *switchToRightDocument1 = new QShortcut(tr("Ctrl+Tab"), this); connect(switchToRightDocument1, SIGNAL(activated()), mDocumentManager, SLOT(switchToRightDocument())); new QShortcut(tr("X"), this, SLOT(flipHorizontally())); new QShortcut(tr("Y"), this, SLOT(flipVertically())); new QShortcut(tr("Z"), this, SLOT(rotateRight())); new QShortcut(tr("Shift+Z"), this, SLOT(rotateLeft())); QShortcut *copyPositionShortcut = new QShortcut(tr("Alt+C"), this); connect(copyPositionShortcut, SIGNAL(activated()), mActionHandler, SLOT(copyPosition())); updateActions(); readSettings(); setupQuickStamps(); connect(undoGroup, SIGNAL(indexChanged(int)), mKodableMapValidator, SLOT(validateCurrentMap())); connect(mKodableMapValidator, SIGNAL(errorChanged(QString)), this, SLOT(setValidationError(QString))); }
NaMainWindow::NaMainWindow() : nutateThread(NULL) { ui.setupUi(this); //QMetaObject::connectSlotsByName(this); This is apparently already called by setupUi, so calling it again creates repeat trigger events annotationSession=0; // Wire up MIP viewer // Status bar message connect(ui.naLargeMIPWidget, SIGNAL(statusMessage(const QString&)), statusBar(), SLOT(showMessage(const QString&))); connect(ui.gammaWidget_MIP, SIGNAL(gammaBrightnessChanged(double)), ui.naLargeMIPWidget, SLOT(setGammaBrightness(double))); // Wire up Z-stack / HDR viewer ui.HDR_checkBox->setChecked(true); ui.naZStackWidget->setHDRCheckState(true); ui.gammaWidget_Zstack->hide(); connect(ui.HDR_checkBox, SIGNAL(stateChanged(int)), ui.naZStackWidget, SLOT(setHDRCheckState(int))); connect(ui.naZStackWidget, SIGNAL(changedHDRCheckState(bool)), ui.gammaWidget_Zstack, SLOT(setVisible(bool))); connect(ui.gammaWidget_Zstack, SIGNAL(gammaBrightnessChanged(double)), ui.naZStackWidget, SLOT(setGammaBrightness(double))); connect(ui.HDRRed_pushButton, SIGNAL(clicked()), ui.naZStackWidget, SLOT(setRedChannel())); connect(ui.HDRGreen_pushButton, SIGNAL(clicked()), ui.naZStackWidget, SLOT(setGreenChannel())); connect(ui.HDRBlue_pushButton, SIGNAL(clicked()), ui.naZStackWidget, SLOT(setBlueChannel())); connect(ui.ZSlice_horizontalScrollBar, SIGNAL(valueChanged(int)), ui.naZStackWidget, SLOT(setCurrentZSlice(int))); connect(ui.naZStackWidget, SIGNAL(curZsliceChanged(int)), ui.ZSlice_horizontalScrollBar, SLOT(setValue(int))); connect(ui.BoxSize_spinBox, SIGNAL(valueChanged(int)), ui.naZStackWidget, SLOT(updateROIsize(int))); connect(ui.naZStackWidget, SIGNAL(boxSizeChanged(int)), ui.BoxSize_spinBox, SLOT(setValue(int))); // 3D viewer connect(ui.rotationResetButton, SIGNAL(clicked()), ui.v3dr_glwidget, SLOT(resetRotation())); connect(ui.nutateButton, SIGNAL(toggled(bool)), this, SLOT(setNutate(bool))); // 3D rotation connect(&(ui.v3dr_glwidget->cameraModel), SIGNAL(rotationChanged(const Rotation3D&)), this, SLOT(on3DViewerRotationChanged(const Rotation3D&))); connect(ui.rotXWidget, SIGNAL(angleChanged(int)), this, SLOT(update3DViewerXYZBodyRotation())); connect(ui.rotYWidget, SIGNAL(angleChanged(int)), this, SLOT(update3DViewerXYZBodyRotation())); connect(ui.rotZWidget, SIGNAL(angleChanged(int)), this, SLOT(update3DViewerXYZBodyRotation())); // 3D gamma correction connect(ui.gammaWidget_3D, SIGNAL(gammaBrightnessChanged(double)), ui.v3dr_glwidget, SLOT(setGammaBrightness(double))); connect(ui.gammaWidget_3D, SIGNAL(gammaBrightnessChanged(double)), this, SLOT(updateThumbnailGamma(double))); connect(ui.colorResetButton, SIGNAL(clicked()), ui.gammaWidget_3D, SLOT(reset())); // Whether to use common zoom and focus in MIP, ZStack and 3D viewers connect(ui.actionLink_viewers, SIGNAL(toggled(bool)), this, SLOT(unifyCameras(bool))); unifyCameras(true); // Start with cameras linked // Crosshair connect(ui.actionShow_Crosshair, SIGNAL(toggled(bool)), ui.naLargeMIPWidget, SLOT(showCrosshair(bool))); connect(ui.actionShow_Crosshair, SIGNAL(toggled(bool)), ui.v3dr_glwidget, SLOT(showCrosshair(bool))); // Create "Undo" menu options // TODO - figure out which of these variables to expose once we have a QUndoCommand to work with. QUndoGroup * undoGroup = new QUndoGroup(this); QAction * undoAction = undoGroup->createUndoAction(this); QAction * redoAction = undoGroup->createRedoAction(this); ui.menuEdit->insertAction(ui.menuEdit->actions().at(0), redoAction); ui.menuEdit->insertAction(redoAction, undoAction); }