38 #include "ldDocument.h" |
38 #include "ldDocument.h" |
39 #include "dialogs.h" |
39 #include "dialogs.h" |
40 #include "ui_overlay.h" |
40 #include "ui_overlay.h" |
41 #include "ui_extprogpath.h" |
41 #include "ui_extprogpath.h" |
42 #include "ui_about.h" |
42 #include "ui_about.h" |
43 #include "ui_bombbox.h" |
|
44 |
43 |
45 extern const char* g_extProgPathFilter; |
44 extern const char* g_extProgPathFilter; |
46 EXTERN_CFGENTRY (String, LDrawPath) |
45 EXTERN_CFGENTRY (String, LDrawPath) |
47 |
46 |
48 // ============================================================================= |
47 // ============================================================================= |
215 // ============================================================================= |
214 // ============================================================================= |
216 void AboutDialog::slot_mail() |
215 void AboutDialog::slot_mail() |
217 { |
216 { |
218 QDesktopServices::openUrl (QUrl ("mailto:Teemu Piippo <arezey@gmail.com>?subject=LDForge")); |
217 QDesktopServices::openUrl (QUrl ("mailto:Teemu Piippo <arezey@gmail.com>?subject=LDForge")); |
219 } |
218 } |
220 |
|
221 // ============================================================================= |
|
222 // ============================================================================= |
|
223 void DisplayBombBox (const QString& message) |
|
224 { |
|
225 QDialog dlg (g_win); |
|
226 Ui_BombBox ui; |
|
227 |
|
228 ui.setupUi (&dlg); |
|
229 ui.m_text->setText (message); |
|
230 ui.buttonBox->button (QDialogButtonBox::Close)->setText (QObject::tr ("Damn it")); |
|
231 dlg.exec(); |
|
232 } |
|