7#include <qdesigner_utils_p.h>
18#include <pluginmanager_p.h>
19#include <qdesigner_formbuilder_p.h>
20#include <iconloader_p.h>
21#include <previewmanager_p.h>
22#include <codedialog_p.h>
23#include <qdesigner_formwindowmanager_p.h>
26#include <QtDesigner/abstractformeditor.h>
27#include <QtDesigner/abstractformwindow.h>
28#include <QtDesigner/abstractintegration.h>
29#include <QtDesigner/abstractlanguage.h>
30#include <QtDesigner/abstractmetadatabase.h>
31#include <QtDesigner/abstractformwindowmanager.h>
32#include <QtDesigner/abstractformwindowcursor.h>
33#include <QtDesigner/abstractformeditorplugin.h>
34#include <QtDesigner/qextensionmanager.h>
36#include <QtDesigner/private/shared_settings_p.h>
37#include <QtDesigner/private/formwindowbase_p.h>
39#include <QtWidgets/qstylefactory.h>
40#include <QtWidgets/qfiledialog.h>
41#include <QtWidgets/qmenu.h>
42#include <QtWidgets/qmessagebox.h>
43#include <QtWidgets/qmdisubwindow.h>
44#include <QtWidgets/qpushbutton.h>
45#include <QtWidgets/qstatusbar.h>
47#include <QtGui/qaction.h>
48#include <QtGui/qactiongroup.h>
49#include <QtGui/qevent.h>
50#include <QtGui/qicon.h>
51#include <QtGui/qimage.h>
52#include <QtGui/qpixmap.h>
53#include <QtGui/qscreen.h>
54#if defined(QT_PRINTSUPPORT_LIB)
55# include <QtPrintSupport/qtprintsupportglobal.h>
56# if QT_CONFIG(printer) && QT_CONFIG(printdialog)
57# include <QtPrintSupport/qprinter.h>
58# include <QtPrintSupport/qprintdialog.h>
62#include <QtGui/qpainter.h>
63#include <QtGui/qtransform.h>
64#include <QtGui/qcursor.h>
66#include <QtCore/qdir.h>
67#include <QtCore/qsize.h>
68#include <QtCore/qlibraryinfo.h>
69#include <QtCore/qbuffer.h>
70#include <QtCore/qpluginloader.h>
71#include <QtCore/qdebug.h>
72#include <QtCore/qtimer.h>
73#include <QtCore/qtextstream.h>
74#include <QtCore/qmetaobject.h>
75#include <QtCore/qfileinfo.h>
76#include <QtCore/qsavefile.h>
77#include <QtXml/qdom.h>
85using namespace Qt::StringLiterals;
90# define NONMODAL_PREVIEW
95 auto *rc =
new QAction(parent);
96 rc->setSeparator(
true);
102 auto *rc =
new QActionGroup(parent);
103 rc->setExclusive(exclusive);
109 for (QAction *a : actions)
110 a->setShortcutContext(Qt::ApplicationShortcut);
115 return QDesignerActions::tr(
"Saved %1.").arg(fileName);
120 return QDesignerActions::tr(
"Designer UI files (*.%1);;All Files (*)").arg(extension);
124 const QDir& backupDir);
127 std::optional<QDir> alternativeDir = {})
129 QString contents = alternativeDir.has_value()
130 ? fixResourceFileBackupPath(fw, alternativeDir.value()) : fw->contents();
131 if (
const auto *fwb = qobject_cast<
const qdesigner_internal::FormWindowBase *>(fw)) {
132 if (fwb->lineTerminatorMode() == qdesigner_internal::FormWindowBase::CRLFLineTerminator)
133 contents.replace(u'\n',
"\r\n"_L1);
135 return contents.toUtf8();
140 auto *result =
new QFileDialog(parent, QDesignerActions::tr(
"Save Form As"),
141 dir, fileDialogFilters(extension));
142 result->setAcceptMode(QFileDialog::AcceptSave);
143 result->setDefaultSuffix(extension);
148 : QObject(workbench),
149 m_workbench(workbench),
152 m_helpClient(HelpClient::create(options.helpMode)),
153 m_backupTimer(
new QTimer(
this)),
154 m_fileActions(createActionGroup(
this)),
155 m_recentFilesActions(createActionGroup(
this)),
156 m_editActions(createActionGroup(
this)),
157 m_formActions(createActionGroup(
this)),
158 m_settingsActions(createActionGroup(
this)),
159 m_windowActions(createActionGroup(
this)),
160 m_toolActions(createActionGroup(
this,
true)),
161 m_editWidgetsAction(
new QAction(tr(
"Edit Widgets"),
this)),
162 m_newFormAction(
new QAction(qdesigner_internal::createIconSet(QIcon::ThemeIcon::DocumentNew,
164 tr(
"&New..."),
this)),
165 m_openFormAction(
new QAction(qdesigner_internal::createIconSet(QIcon::ThemeIcon::DocumentOpen,
167 tr(
"&Open..."),
this)),
168 m_saveFormAction(
new QAction(qdesigner_internal::createIconSet(QIcon::ThemeIcon::DocumentSave,
171 m_saveFormAsAction(
new QAction(QIcon::fromTheme(QIcon::ThemeIcon::DocumentSaveAs),
172 tr(
"Save &As..."),
this)),
173 m_saveAllFormsAction(
new QAction(tr(
"Save A&ll"),
this)),
174 m_saveFormAsTemplateAction(
new QAction(tr(
"Save As &Template..."),
this)),
175 m_closeFormAction(
new QAction(QIcon::fromTheme(QIcon::ThemeIcon::WindowClose),
176 tr(
"&Close"),
this)),
177 m_savePreviewImageAction(
new QAction(tr(
"Save &Image..."),
this)),
178 m_printPreviewAction(
new QAction(QIcon::fromTheme(QIcon::ThemeIcon::DocumentPrint),
179 tr(
"&Print..."),
this)),
180 m_quitAction(
new QAction(QIcon::fromTheme(QIcon::ThemeIcon::ApplicationExit),
182 m_viewCppCodeAction(
new QAction(tr(
"View &C++ Code..."),
this)),
183 m_viewPythonCodeAction(
new QAction(tr(
"View &Python Code..."),
this)),
184 m_minimizeAction(
new QAction(tr(
"&Minimize"),
this)),
185 m_bringAllToFrontSeparator(createSeparator(
this)),
186 m_bringAllToFrontAction(
new QAction(tr(
"Bring All to Front"),
this)),
187 m_windowListSeparatorAction(createSeparator(
this)),
188 m_preferencesAction(
new QAction(tr(
"Preferences..."),
this)),
189 m_appFontAction(
new QAction(tr(
"Additional Fonts..."),
this))
191 Q_ASSERT(m_core !=
nullptr);
192 auto *ifwm = qobject_cast<qdesigner_internal::QDesignerFormWindowManager *>(m_core->formWindowManager());
194 m_previewManager = ifwm->previewManager();
195 m_previewFormAction = ifwm->action(QDesignerFormWindowManagerInterface::DefaultPreviewAction);
196 m_styleActions = ifwm->actionGroup(QDesignerFormWindowManagerInterface::StyledPreviewActionGroup);
197 connect(ifwm, &QDesignerFormWindowManagerInterface::formWindowSettingsChanged,
200 m_editWidgetsAction->setObjectName(u"__qt_edit_widgets_action"_s);
201 m_newFormAction->setObjectName(u"__qt_new_form_action"_s);
202 m_openFormAction->setObjectName(u"__qt_open_form_action"_s);
203 m_saveFormAction->setObjectName(u"__qt_save_form_action"_s);
204 m_saveFormAsAction->setObjectName(u"__qt_save_form_as_action"_s);
205 m_saveAllFormsAction->setObjectName(u"__qt_save_all_forms_action"_s);
206 m_saveFormAsTemplateAction->setObjectName(u"__qt_save_form_as_template_action"_s);
207 m_closeFormAction->setObjectName(u"__qt_close_form_action"_s);
208 m_quitAction->setObjectName(u"__qt_quit_action"_s);
209 m_previewFormAction->setObjectName(u"__qt_preview_form_action"_s);
210 m_viewCppCodeAction->setObjectName(u"__qt_preview_cpp_code_action"_s);
211 m_viewPythonCodeAction->setObjectName(u"__qt_preview_python_code_action"_s);
212 m_minimizeAction->setObjectName(u"__qt_minimize_action"_s);
213 m_bringAllToFrontAction->setObjectName(u"__qt_bring_all_to_front_action"_s);
214 m_preferencesAction->setObjectName(u"__qt_preferences_action"_s);
216 m_helpActions = createHelpActions();
222 QDesignerFormWindowManagerInterface *formWindowManager = m_core->formWindowManager();
223 Q_ASSERT(formWindowManager !=
nullptr);
228 m_newFormAction->setShortcut(QKeySequence::New);
230 m_fileActions->addAction(m_newFormAction);
232 m_openFormAction->setShortcut(QKeySequence::Open);
234 m_fileActions->addAction(m_openFormAction);
236 m_fileActions->addAction(createRecentFilesMenu());
237 m_fileActions->addAction(createSeparator(
this));
239 m_saveFormAction->setShortcut(QKeySequence::Save);
240 connect(m_saveFormAction, &QAction::triggered,
this,
241 QOverload<>::of(&QDesignerActions::saveForm));
242 m_fileActions->addAction(m_saveFormAction);
244 connect(m_saveFormAsAction, &QAction::triggered,
this,
245 QOverload<>::of(&QDesignerActions::saveFormAs));
246 m_fileActions->addAction(m_saveFormAsAction);
249 m_saveAllFormsAction->setShortcut(tr(
"ALT+CTRL+S"));
251 m_saveAllFormsAction->setShortcut(tr(
"CTRL+SHIFT+S"));
253 connect(m_saveAllFormsAction, &QAction::triggered,
this, &
QDesignerActions::saveAllForms);
254 m_fileActions->addAction(m_saveAllFormsAction);
256 connect(m_saveFormAsTemplateAction, &QAction::triggered,
this, &
QDesignerActions::saveFormAsTemplate);
257 m_fileActions->addAction(m_saveFormAsTemplateAction);
259 m_fileActions->addAction(createSeparator(
this));
261 m_printPreviewAction->setShortcut(QKeySequence::Print);
262 connect(m_printPreviewAction, &QAction::triggered,
this, &
QDesignerActions::printPreviewImage);
263 m_fileActions->addAction(m_printPreviewAction);
264 m_printPreviewAction->setObjectName(u"__qt_print_action"_s);
266 connect(m_savePreviewImageAction, &QAction::triggered,
this, &
QDesignerActions::savePreviewImage);
267 m_savePreviewImageAction->setObjectName(u"__qt_saveimage_action"_s);
268 m_fileActions->addAction(m_savePreviewImageAction);
269 m_fileActions->addAction(createSeparator(
this));
271 m_closeFormAction->setShortcut(QKeySequence::Close);
272 connect(m_closeFormAction, &QAction::triggered,
this, &
QDesignerActions::closeForm);
273 m_fileActions->addAction(m_closeFormAction);
276 m_fileActions->addAction(createSeparator(
this));
278 m_quitAction->setShortcuts(QKeySequence::Quit);
279 m_quitAction->setMenuRole(QAction::QuitRole);
280 connect(m_quitAction, &QAction::triggered,
this, &
QDesignerActions::shutdown);
281 m_fileActions->addAction(m_quitAction);
286 QAction *undoAction = formWindowManager->action(QDesignerFormWindowManagerInterface::UndoAction);
287 undoAction->setObjectName(u"__qt_undo_action"_s);
288 undoAction->setShortcut(QKeySequence::Undo);
289 m_editActions->addAction(undoAction);
291 QAction *redoAction = formWindowManager->action(QDesignerFormWindowManagerInterface::RedoAction);
292 redoAction->setObjectName(u"__qt_redo_action"_s);
293 redoAction->setShortcut(QKeySequence::Redo);
294 m_editActions->addAction(redoAction);
296 m_editActions->addAction(createSeparator(
this));
298#if QT_CONFIG(clipboard)
299 m_editActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::CutAction));
300 m_editActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::CopyAction));
301 m_editActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::PasteAction));
303 m_editActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::DeleteAction));
305 m_editActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::SelectAllAction));
307 m_editActions->addAction(createSeparator(
this));
309 m_editActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::LowerAction));
310 m_editActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::RaiseAction));
319 m_editWidgetsAction->setCheckable(
true);
320 QList<QKeySequence> shortcuts;
321 shortcuts.append(QKeySequence(Qt::Key_F3));
322 shortcuts.append(QKeySequence(Qt::Key_Escape));
323 m_editWidgetsAction->setShortcuts(shortcuts);
324 m_editWidgetsAction->setIcon(qdesigner_internal::createIconSet(
"widgettool.png"_L1));
325 connect(m_editWidgetsAction, &QAction::triggered,
this, &
QDesignerActions::editWidgetsSlot);
326 m_editWidgetsAction->setChecked(
true);
327 m_editWidgetsAction->setEnabled(
false);
329 m_toolActions->addAction(m_editWidgetsAction);
331 connect(formWindowManager, &qdesigner_internal::QDesignerFormWindowManager::activeFormWindowChanged,
332 this, &QDesignerActions::activeFormWindowChanged);
334 const QObjectList builtinPlugins = QPluginLoader::staticInstances()
335 + m_core->pluginManager()->instances();
336 for (QObject *plugin : builtinPlugins) {
337 if (QDesignerFormEditorPluginInterface *formEditorPlugin = qobject_cast<QDesignerFormEditorPluginInterface*>(plugin)) {
338 if (QAction *action = formEditorPlugin->action()) {
339 m_toolActions->addAction(action);
340 action->setProperty(QDesignerActions::defaultToolbarPropertyName,
true);
341 action->setCheckable(
true);
346 connect(m_preferencesAction, &QAction::triggered,
this, &
QDesignerActions::showPreferencesDialog);
347 m_preferencesAction->setMenuRole(QAction::PreferencesRole);
348 m_settingsActions->addAction(m_preferencesAction);
350 connect(m_appFontAction, &QAction::triggered,
this, &
QDesignerActions::showAppFontDialog);
351 m_settingsActions->addAction(m_appFontAction);
356 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::HorizontalLayoutAction));
357 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::VerticalLayoutAction));
358 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::SplitHorizontalAction));
359 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::SplitVerticalAction));
360 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::GridLayoutAction));
361 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::FormLayoutAction));
362 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::BreakLayoutAction));
363 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::AdjustSizeAction));
364 m_formActions->addAction(formWindowManager->action(QDesignerFormWindowManagerInterface::SimplifyLayoutAction));
365 m_formActions->addAction(createSeparator(
this));
376 m_previewFormAction->setShortcut(tr(
"CTRL+R"));
377 m_formActions->addAction(m_previewFormAction);
378 connect(m_previewManager, &qdesigner_internal::PreviewManager::firstPreviewOpened,
380 connect(m_previewManager, &qdesigner_internal::PreviewManager::lastPreviewClosed,
383 connect(m_viewCppCodeAction, &QAction::triggered,
this,
385 connect(m_viewPythonCodeAction, &QAction::triggered,
this,
389 if (qt_extension<QDesignerLanguageExtension *>(m_core->extensionManager(), m_core) ==
nullptr) {
390 m_formActions->addAction(m_viewCppCodeAction);
391 m_formActions->addAction(m_viewPythonCodeAction);
394 m_formActions->addAction(createSeparator(
this));
396 m_formActions->addAction(ifwm->action(QDesignerFormWindowManagerInterface::FormWindowSettingsDialogAction));
400 m_minimizeAction->setEnabled(
false);
401 m_minimizeAction->setCheckable(
true);
402 m_minimizeAction->setShortcut(tr(
"CTRL+M"));
404 m_windowActions->addAction(m_minimizeAction);
406 m_windowActions->addAction(m_bringAllToFrontSeparator);
408 m_windowActions->addAction(m_bringAllToFrontAction);
409 m_windowActions->addAction(m_windowListSeparatorAction);
416 fixActionContext(m_fileActions->actions());
417 fixActionContext(m_editActions->actions());
418 fixActionContext(m_toolActions->actions());
419 fixActionContext(m_formActions->actions());
420 fixActionContext(m_windowActions->actions());
421 fixActionContext(m_helpActions->actions());
423 activeFormWindowChanged(
core()->formWindowManager()->activeFormWindow());
425 m_backupTimer->start(180000);
426 connect(m_backupTimer, &QTimer::timeout,
this, &
QDesignerActions::backupForms);
429 connect(formWindowManager, &QDesignerFormWindowManagerInterface::formWindowAdded,
431 connect(formWindowManager, &QDesignerFormWindowManagerInterface::formWindowRemoved,
433 formWindowCountChanged();
438 QActionGroup *helpActions = createActionGroup(
this);
440#ifndef QT_JAMBI_BUILD
441 auto *mainHelpAction =
new QAction(tr(
"Qt Widgets Designer &Help"),
this);
442 mainHelpAction->setObjectName(u"__qt_designer_help_action"_s);
443 connect(mainHelpAction, &QAction::triggered,
this, &
QDesignerActions::showDesignerHelp);
444 mainHelpAction->setShortcut(Qt::CTRL | Qt::Key_Question);
445 helpActions->addAction(mainHelpAction);
447 helpActions->addAction(createSeparator(
this));
448 auto *widgetHelp =
new QAction(tr(
"Current Widget Help"),
this);
449 widgetHelp->setObjectName(u"__qt_current_widget_help_action"_s);
450 widgetHelp->setShortcut(Qt::Key_F1);
451 connect(widgetHelp, &QAction::triggered,
this, &
QDesignerActions::showWidgetSpecificHelp);
452 helpActions->addAction(widgetHelp);
456 helpActions->addAction(createSeparator(
this));
457 auto *aboutPluginsAction =
new QAction(tr(
"About Plugins"),
this);
458 aboutPluginsAction->setObjectName(u"__qt_about_plugins_action"_s);
459 aboutPluginsAction->setMenuRole(QAction::ApplicationSpecificRole);
460 connect(aboutPluginsAction, &QAction::triggered,
461 m_core->formWindowManager(), &QDesignerFormWindowManagerInterface::showPluginDialog);
462 helpActions->addAction(aboutPluginsAction);
464 auto *aboutDesignerAction =
new QAction(tr(
"About Qt Widgets Designer"),
this);
465 aboutDesignerAction->setMenuRole(QAction::AboutRole);
466 aboutDesignerAction->setObjectName(u"__qt_about_designer_action"_s);
467 connect(aboutDesignerAction, &QAction::triggered,
this, &
QDesignerActions::aboutDesigner);
468 helpActions->addAction(aboutDesignerAction);
470 auto *aboutQtAction =
new QAction(tr(
"About Qt"),
this);
471 aboutQtAction->setMenuRole(QAction::AboutQtRole);
472 aboutQtAction->setObjectName(u"__qt_about_qt_action"_s);
473 connect(aboutQtAction, &QAction::triggered, qApp, &QApplication::aboutQt);
474 helpActions->addAction(aboutQtAction);
487 QDesignerLanguageExtension *lang
488 = qt_extension<QDesignerLanguageExtension *>(m_core->extensionManager(), m_core);
490 return lang->uiExtension();
496 m_recentMenu = std::make_unique<QMenu>();
499 for (
int i = 0; i < MaxRecentFiles; ++i) {
500 auto *recentAct =
new QAction(
this);
501 recentAct->setVisible(
false);
502 connect(recentAct, &QAction::triggered,
this, &
QDesignerActions::openRecentForm);
503 m_recentFilesActions->addAction(recentAct);
504 m_recentMenu->addAction(recentAct);
506 updateRecentFileActions();
507 m_recentMenu->addSeparator();
508 auto *act =
new QAction(QIcon::fromTheme(QIcon::ThemeIcon::EditClear),
509 tr(
"Clear &Menu"),
this);
510 act->setObjectName(u"__qt_action_clear_menu_"_s);
511 connect(act, &QAction::triggered,
this, &
QDesignerActions::clearRecentFiles);
512 m_recentFilesActions->addAction(act);
513 m_recentMenu->addAction(act);
515 act =
new QAction(QIcon::fromTheme(QIcon::ThemeIcon::DocumentOpenRecent),
516 tr(
"&Recent Forms"),
this);
517 act->setMenu(m_recentMenu.get());
522{
return m_toolActions; }
525{
return m_workbench; }
531{
return m_fileActions; }
534{
return m_editActions; }
537{
return m_formActions; }
540{
return m_settingsActions; }
543{
return m_windowActions; }
546{
return m_helpActions; }
549{
return m_styleActions; }
552{
return m_previewFormAction; }
555{
return m_viewCppCodeAction; }
560 QDesignerFormWindowManagerInterface *formWindowManager =
core()->formWindowManager();
561 for (
int i=0; i<formWindowManager->formWindowCount(); ++i) {
562 QDesignerFormWindowInterface *formWindow = formWindowManager->formWindow(i);
563 formWindow->editWidgets();
569 showNewFormDialog(QString());
577 dlg->setAttribute(Qt::WA_DeleteOnClose);
578 dlg->setAttribute(Qt::WA_ShowModal);
580 dlg->setGeometry(fixDialogRect(dlg->rect()));
592 const QString extension = uiExtension();
593 const QStringList fileNames = QFileDialog::getOpenFileNames(parent, tr(
"Open Form"),
594 m_openDirectory, fileDialogFilters(extension),
nullptr);
596 if (fileNames.isEmpty())
599 bool atLeastOne =
false;
600 for (
const QString &fileName : fileNames) {
601 if (readInForm(fileName) && !atLeastOne)
610 const QString extension = uiExtension();
612 QString dir = fw->fileName();
616 if (!m_saveDirectory.isEmpty()) {
617 dir = m_saveDirectory;
620 if (!m_openDirectory.isEmpty()) {
621 dir = m_openDirectory;
624 dir = QDir::current().absolutePath();
626 dir += QDir::separator();
627 dir +=
"untitled."_L1;
631 std::unique_ptr<QFileDialog> saveAsDialog(createSaveAsDialog(fw, dir, extension));
632 if (saveAsDialog->exec() != QDialog::Accepted)
635 const QString saveFile = saveAsDialog->selectedFiles().constFirst();
636 saveAsDialog.reset();
638 fw->setFileName(saveFile);
639 return writeOutForm(fw, saveFile);
644 if (QDesignerFormWindowInterface *fw =
core()->formWindowManager()->activeFormWindow()) {
646 showStatusBarMessage(savedMessage(QFileInfo(fw->fileName()).fileName()));
653 QDesignerFormWindowManagerInterface *formWindowManager =
core()->formWindowManager();
654 if (
const int totalWindows = formWindowManager->formWindowCount()) {
655 const auto separator =
", "_L1;
656 for (
int i = 0; i < totalWindows; ++i) {
657 QDesignerFormWindowInterface *fw = formWindowManager->formWindow(i);
658 if (fw && fw->isDirty()) {
659 formWindowManager->setActiveFormWindow(fw);
661 if (!fileNames.isEmpty())
662 fileNames += separator;
663 fileNames += QFileInfo(fw->fileName()).fileName();
671 if (!fileNames.isEmpty()) {
672 showStatusBarMessage(savedMessage(fileNames));
678 return fw->fileName().isEmpty() ? saveFormAs(fw) : writeOutForm(fw, fw->fileName());
683 if (m_previewManager->previewCount()) {
688 if (QDesignerFormWindowInterface *fw =
core()->formWindowManager()->activeFormWindow())
689 if (
QWidget *parent = fw->parentWidget()) {
690 if (
auto *mdiSubWindow = qobject_cast<QMdiSubWindow *>(parent->parentWidget())) {
691 mdiSubWindow->close();
700 if (QDesignerFormWindowInterface *fw =
core()->formWindowManager()->activeFormWindow()) {
702 showStatusBarMessage(savedMessage(fw->fileName()));
708 if (QDesignerFormWindowInterface *fw =
core()->formWindowManager()->activeFormWindow()) {
716 QMessageBox::information(core()->topLevel(), tr(
"Designer"), tr(
"Feature not implemented yet!"));
721 m_previewManager->closeAllPreviews();
726 QDesignerFormWindowInterface *fw =
core()->formWindowManager()->activeFormWindow();
729 QString errorMessage;
730 if (!qdesigner_internal::CodeDialog::showCodeDialog(fw, language, fw, &errorMessage))
731 QMessageBox::warning(fw, tr(
"Code generation failed"), errorMessage);
736 QString fn = fileName;
739 QDesignerFormWindowManagerInterface *formWindowManager =
core()->formWindowManager();
740 const int totalWindows = formWindowManager->formWindowCount();
741 for (
int i = 0; i < totalWindows; ++i) {
742 QDesignerFormWindowInterface *w = formWindowManager->formWindow(i);
743 if (w->fileName() == fn) {
745 formWindowManager->setActiveFormWindow(w);
753 QString errorMessage;
756 m_openDirectory = QFileInfo(fn).absolutePath();
761 QMessageBox box(QMessageBox::Warning, tr(
"Read error"),
762 tr(
"%1\nDo you want to update the file location or generate a new form?").arg(errorMessage),
763 QMessageBox::Cancel, core()->topLevel());
765 QPushButton *updateButton = box.addButton(tr(
"&Update"), QMessageBox::ActionRole);
766 QPushButton *newButton = box.addButton(tr(
"&New Form"), QMessageBox::ActionRole);
768 if (box.clickedButton() == box.button(QMessageBox::Cancel))
771 if (box.clickedButton() == updateButton) {
772 fn = QFileDialog::getOpenFileName(core()->topLevel(),
773 tr(
"Open Form"), m_openDirectory,
774 fileDialogFilters(uiExtension()),
nullptr);
778 }
else if (box.clickedButton() == newButton) {
781 QString newFormFileName;
782 const QFileInfo fInfo(fn);
783 if (!fInfo.exists()) {
785 const QString directory = fInfo.absolutePath();
786 if (QDir(directory).exists())
787 newFormFileName = directory + u'/' + fInfo.fileName();
789 showNewFormDialog(newFormFileName);
796bool QDesignerActions::writeOutForm(QDesignerFormWindowInterface *fw,
const QString &saveFile,
bool check)
798 Q_ASSERT(fw && !saveFile.isEmpty());
801 const QStringList problems = fw->checkContents();
802 if (!problems.isEmpty())
803 QMessageBox::information(fw->window(), tr(
"Qt Widgets Designer"), problems.join(
"<br>"_L1));
808 QSaveFile f(saveFile);
809 while (!f.open(QFile::WriteOnly)) {
810 QMessageBox box(QMessageBox::Warning,
812 tr(
"Could not open file"),
813 QMessageBox::NoButton, fw);
815 box.setWindowModality(Qt::WindowModal);
816 box.setInformativeText(tr(
"The file %1 could not be opened."
818 "\nWould you like to retry or select a different file?")
819 .arg(f.fileName(), f.errorString()));
820 QPushButton *retryButton = box.addButton(QMessageBox::Retry);
821 retryButton->setDefault(
true);
822 QPushButton *switchButton = box.addButton(tr(
"Select New File"), QMessageBox::AcceptRole);
823 QPushButton *cancelButton = box.addButton(QMessageBox::Cancel);
826 if (box.clickedButton() == cancelButton)
828 if (box.clickedButton() == switchButton) {
829 std::unique_ptr<QFileDialog> saveAsDialog(
830 createSaveAsDialog(fw, QDir::currentPath(), uiExtension()));
831 if (saveAsDialog->exec() != QDialog::Accepted)
834 const QString fileName = saveAsDialog->selectedFiles().constFirst();
835 f.setFileName(fileName);
836 fw->setFileName(fileName);
840 f.write(formWindowContents(fw));
842 QMessageBox box(QMessageBox::Warning, tr(
"Save Form"),
843 tr(
"Could not write file"),
844 QMessageBox::Cancel, fw);
845 box.setWindowModality(Qt::WindowModal);
846 box.setInformativeText(tr(
"It was not possible to write the file %1 to disk."
848 .arg(f.fileName(), f.errorString()));
852 addRecentFile(saveFile);
853 m_saveDirectory = QFileInfo(f.fileName()).absolutePath();
856 fw->parentWidget()->setWindowModified(
false);
872 const bool enable = formWindow !=
nullptr;
873 m_saveFormAction->setEnabled(enable);
874 m_saveFormAsAction->setEnabled(enable);
875 m_saveAllFormsAction->setEnabled(enable);
876 m_saveFormAsTemplateAction->setEnabled(enable);
877 m_closeFormAction->setEnabled(enable);
878 m_savePreviewImageAction->setEnabled(enable);
879 m_printPreviewAction->setEnabled(enable);
881 m_editWidgetsAction->setEnabled(enable);
883 m_previewFormAction->setEnabled(enable);
884 m_viewCppCodeAction->setEnabled(enable);
885 m_viewPythonCodeAction->setEnabled(enable);
886 m_styleActions->setEnabled(enable);
889void QDesignerActions::formWindowSettingsChanged(QDesignerFormWindowInterface *fw)
892 window->updateChanged();
897 QStringList files = m_settings.recentFilesList();
898 auto existingEnd =
std::remove_if(files.begin(), files.end(),
899 [] (
const QString &f) {
return !QFileInfo::exists(f); });
900 if (existingEnd != files.end()) {
901 files.erase(existingEnd, files.end());
902 m_settings.setRecentFilesList(files);
905 const auto recentFilesActs = m_recentFilesActions->actions();
907 for (QAction *action : recentFilesActs) {
908 if (i < files.size()) {
909 const QString &file = files.at(i);
910 action->setText(QFileInfo(file).fileName());
911 action->setIconText(file);
912 action->setVisible(
true);
914 action->setVisible(
false);
922 if (
const auto *action = qobject_cast<
const QAction *>(sender())) {
923 if (!readInForm(action->iconText()))
924 updateRecentFileActions();
930 m_settings.setRecentFilesList(QStringList());
931 updateRecentFileActions();
936 return m_recentFilesActions;
941 QStringList files = m_settings.recentFilesList();
942 files.removeAll(fileName);
943 files.prepend(fileName);
944 while (files.size() > MaxRecentFiles)
947 m_settings.setRecentFilesList(files);
948 updateRecentFileActions();
953 return m_openFormAction;
958 return m_closeFormAction;
963 return m_minimizeAction;
968 showHelp(m_helpClient->designerManualUrl() +
"qtdesigner-manual.html"_L1);
973 showHelp(m_helpClient->documentUrl(manual) + document);
978 QString errorMessage;
979 if (!m_helpClient->showPage(url, &errorMessage))
980 QMessageBox::warning(core()->topLevel(), tr(
"Assistant"), errorMessage);
985 VersionDialog mb(
core()->topLevel());
986 mb.setWindowTitle(tr(
"About Qt Widgets Designer"));
988 QMessageBox messageBox(QMessageBox::Information, u"Easter Egg"_s,
989 u"Easter Egg"_s, QMessageBox::Ok, core()->topLevel());
990 messageBox.setInformativeText(u"The Easter Egg has been removed."_s);
997 return m_editWidgetsAction;
1002 const QString helpId = core()->integration()->contextHelpId();
1004 if (helpId.isEmpty()) {
1009 QString errorMessage;
1010 const bool rc = m_helpClient->activateIdentifier(helpId, &errorMessage);
1012 QMessageBox::warning(core()->topLevel(), tr(
"Assistant"), errorMessage);
1017 if (m_previewManager->previewCount()) {
1018 m_closeFormAction->setText(tr(
"&Close Preview"));
1020 m_closeFormAction->setText(tr(
"&Close"));
1027 if (!count || !ensureBackupDirectories())
1031 QMap<QString, QString> backupMap;
1032 QDir backupDir(m_backupPath);
1033 for (
int i = 0; i < count; ++i) {
1035 QDesignerFormWindowInterface *fwi = fw
->editor();
1037 QString formBackupName = m_backupPath +
"/backup"_L1 + QString::number(i) +
".bak"_L1;
1039 QString fwn = QDir::toNativeSeparators(fwi->fileName());
1041 fwn = fw->windowTitle();
1043 backupMap.insert(fwn, formBackupName);
1046 QSaveFile file(formBackupName);
1047 if (file.open(QFile::WriteOnly)) {
1048 file.write(formWindowContents(fw->editor(), backupDir));
1052 backupMap.remove(fwn);
1054 arg(QDir::toNativeSeparators(file.fileName()),
1055 file.errorString())
);
1059 if (!backupMap.isEmpty())
1060 m_settings.setBackup(backupMap);
1064 const QDir& backupDir)
1066 const QString content = fwi->contents();
1067 QDomDocument domDoc(u"backup"_s);
1068 if(!domDoc.setContent(content))
1071 const QDomNodeList list = domDoc.elementsByTagName(u"resources"_s);
1075 for (
int i = 0; i < list.count(); i++) {
1076 const QDomNode node = list.at(i);
1077 if (!node.isNull()) {
1078 const QDomElement element = node.toElement();
1079 if (!element.isNull() && element.tagName() ==
"resources"_L1) {
1080 QDomNode childNode = element.firstChild();
1081 while (!childNode.isNull()) {
1082 QDomElement childElement = childNode.toElement();
1083 if (!childElement.isNull() && childElement.tagName() ==
"include"_L1) {
1084 const QString attr = childElement.attribute(u"location"_s);
1085 const QString path = fwi->absoluteDir().absoluteFilePath(attr);
1086 childElement.setAttribute(u"location"_s, backupDir.relativeFilePath(path));
1088 childNode = childNode.nextSibling();
1095 return domDoc.toString();
1100 QRect frameGeometry;
1101 const QRect availableGeometry = core()->topLevel()->screen()->geometry();
1104 frameGeometry =
core()->topLevel()->frameGeometry();
1106 frameGeometry = availableGeometry;
1108 QRect dlgRect = rect;
1109 dlgRect.moveCenter(frameGeometry.center());
1112 dlgRect.moveBottom(qMin(dlgRect.bottom(), availableGeometry.bottom()));
1113 dlgRect.moveRight(qMin(dlgRect.right(), availableGeometry.right()));
1114 dlgRect.moveLeft(qMax(dlgRect.left(), availableGeometry.left()));
1115 dlgRect.moveTop(qMax(dlgRect.top(), availableGeometry.top()));
1123 QStatusBar *bar =
qDesigner->mainWindow()->statusBar();
1124 if (bar && !bar->isHidden())
1125 bar->showMessage(message, 3000);
1131 m_bringAllToFrontSeparator->setVisible(visible);
1132 m_bringAllToFrontAction->setVisible(visible);
1137 m_windowListSeparatorAction->setVisible(visible);
1142 if (m_backupPath.isEmpty())
1143 m_backupPath = qdesigner_internal::dataDirectory() + u"/backup"_s;
1146 const QDir backupDir(m_backupPath);
1148 if (!backupDir.exists()) {
1149 if (!backupDir.mkpath(m_backupPath)) {
1151 .arg(QDir::toNativeSeparators(m_backupPath))
);
1162 preferencesDialog.exec();
1169 if (!m_appFontDialog)
1170 m_appFontDialog =
new AppFontDialog(core()->topLevel());
1171 m_appFontDialog->show();
1172 m_appFontDialog->raise();
1175QPixmap
QDesignerActions::createPreviewPixmap(QDesignerFormWindowInterface *fw)
1177 const QCursor oldCursor =
core()->topLevel()->cursor();
1178 core()->topLevel()->setCursor(Qt::WaitCursor);
1180 QString errorMessage;
1181 const QPixmap pixmap = m_previewManager->createPreviewPixmap(fw, QString(), &errorMessage);
1182 core()->topLevel()->setCursor(oldCursor);
1183 if (pixmap.isNull()) {
1184 QMessageBox::warning(fw, tr(
"Preview failed"), errorMessage);
1193 if (settings.isCustomPreviewConfigurationEnabled())
1194 pc = settings.customPreviewConfiguration();
1200 const char *format =
"png";
1202 QDesignerFormWindowInterface *fw =
core()->formWindowManager()->activeFormWindow();
1207 const QString extension = QString::fromLatin1(format);
1208 const QString filter = tr(
"Image files (*.%1)").arg(extension);
1210 QString suggestion = fw->fileName();
1211 if (!suggestion.isEmpty())
1212 suggestion = QFileInfo(suggestion).baseName() + u'.' + extension;
1214 QFileDialog dialog(fw, tr(
"Save Image"), suggestion, filter);
1215 dialog.setAcceptMode(QFileDialog::AcceptSave);
1216 dialog.setDefaultSuffix(extension);
1219 if (dialog.exec() != QDialog::Accepted)
1221 const QString fileName = dialog.selectedFiles().constFirst();
1223 if (image.isNull()) {
1224 const QPixmap pixmap = createPreviewPixmap(fw);
1225 if (pixmap.isNull())
1228 image = pixmap.toImage();
1231 if (image.save(fileName, format)) {
1232 showStatusBarMessage(tr(
"Saved image %1.").arg(QFileInfo(fileName).fileName()));
1236 QMessageBox box(QMessageBox::Warning, tr(
"Save Image"),
1237 tr(
"The file %1 could not be written.").arg( fileName),
1238 QMessageBox::Retry|QMessageBox::Cancel, fw);
1239 if (box.exec() == QMessageBox::Cancel)
1246 const bool enabled = m_core->formWindowManager()->formWindowCount() == 0;
1248
1249
1250 static const QString disabledTip = tr(
"Please close all forms to enable the loading of additional fonts.");
1251 m_appFontAction->setEnabled(enabled);
1252 m_appFontAction->setStatusTip(enabled ? QString() : disabledTip);
1258 QDesignerFormWindowInterface *fw = core()->formWindowManager()->activeFormWindow();
1263 m_printer =
new QPrinter(QPrinter::HighResolution);
1265 m_printer->setFullPage(
false);
1268 const QPixmap pixmap = createPreviewPixmap(fw);
1269 if (pixmap.isNull())
1272 const QSizeF pixmapSize = pixmap.size();
1274 m_printer->setPageOrientation(pixmapSize.width() > pixmapSize.height() ?
1275 QPageLayout::Landscape : QPageLayout::Portrait);
1278 QPrintDialog dialog(m_printer, fw);
1282 const QCursor oldCursor = core()->topLevel()->cursor();
1283 core()->topLevel()->setCursor(Qt::WaitCursor);
1285 const double suggestedScaling =
static_cast<
double>(m_printer->physicalDpiX()) /
static_cast<
double>(fw->physicalDpiX());
1287 QPainter painter(m_printer);
1288 painter.setRenderHint(QPainter::SmoothPixmapTransform);
1291 const QRectF page = painter.viewport();
1292 const double maxScaling = qMin(page.size().width() / pixmapSize.width(), page.size().height() / pixmapSize.height());
1293 const double scaling = qMin(suggestedScaling, maxScaling);
1295 const double xOffset = page.left() + qMax(0.0, (page.size().width() - scaling * pixmapSize.width()) / 2.0);
1296 const double yOffset = page.top() + qMax(0.0, (page.size().height() - scaling * pixmapSize.height()) / 2.0);
1299 painter.translate(xOffset, yOffset);
1300 painter.scale(scaling, scaling);
1301 painter.drawPixmap(0, 0, pixmap);
1302 core()->topLevel()->setCursor(oldCursor);
1304 showStatusBarMessage(tr(
"Printed %1.").arg(QFileInfo(fw->fileName()).fileName()));
QActionGroup * helpActions() const
QActionGroup * fileActions() const
QActionGroup * settingsActions() const
QAction * minimizeAction() const
QActionGroup * styleActions() const
~QDesignerActions() override
QActionGroup * editActions() const
QString uiExtension() const
QActionGroup * formActions() const
bool openForm(QWidget *parent)
QDesignerFormEditorInterface * core() const
QActionGroup * toolActions() const
QAction * previewFormAction() const
QActionGroup * windowActions() const
QAction * closeFormAction() const
void setWindowListSeparatorVisible(bool visible)
bool saveForm(QDesignerFormWindowInterface *fw)
QAction * editWidgets() const
QAction * openFormAction() const
QAction * viewCodeAction() const
QDesignerWorkbench * workbench() const
static const char * defaultToolbarPropertyName
void setBringAllToFrontVisible(bool visible)
QActionGroup * recentFilesActions() const
QDesignerSettings(QDesignerFormEditorInterface *core)
int formWindowCount() const
void toggleFormMinimizationState()
QDesignerFormEditorInterface * core() const
QDesignerFormWindow * formWindow(int index) const
void updateBackup(QDesignerFormWindowInterface *fwi)
Auxiliary methods to store/retrieve settings.
QDESIGNER_SHARED_EXPORT void designerWarning(const QString &message)
static QByteArray formWindowContents(const QDesignerFormWindowInterface *fw, std::optional< QDir > alternativeDir={})
static QString fixResourceFileBackupPath(const QDesignerFormWindowInterface *fwi, const QDir &backupDir)
static QString fileDialogFilters(const QString &extension)
static QString savedMessage(const QString &fileName)
static QAction * createSeparator(QObject *parent)
QFileDialog * createSaveAsDialog(QWidget *parent, const QString &dir, const QString &extension)
static QActionGroup * createActionGroup(QObject *parent, bool exclusive=false)
static void fixActionContext(const QList< QAction * > &actions)