src/dialogs.cpp

changeset 526
b29b6fc45ba9
parent 513
29eb671b34f6
child 539
72ad83a67165
equal deleted inserted replaced
525:4f6e46a3bfc3 526:b29b6fc45ba9
207 } 207 }
208 208
209 // ============================================================================= 209 // =============================================================================
210 // ----------------------------------------------------------------------------- 210 // -----------------------------------------------------------------------------
211 void LDrawPathDialog::slot_exit() 211 void LDrawPathDialog::slot_exit()
212 { exit (1); 212 { exit (0);
213 } 213 }
214 214
215 // ============================================================================= 215 // =============================================================================
216 // ----------------------------------------------------------------------------- 216 // -----------------------------------------------------------------------------
217 void LDrawPathDialog::slot_tryConfigure() 217 void LDrawPathDialog::slot_tryConfigure()
236 // ----------------------------------------------------------------------------- 236 // -----------------------------------------------------------------------------
237 OpenProgressDialog::OpenProgressDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f) 237 OpenProgressDialog::OpenProgressDialog (QWidget* parent, Qt::WindowFlags f) : QDialog (parent, f)
238 { ui = new Ui_OpenProgressUI; 238 { ui = new Ui_OpenProgressUI;
239 ui->setupUi (this); 239 ui->setupUi (this);
240 ui->progressText->setText ("Parsing..."); 240 ui->progressText->setText ("Parsing...");
241
242 setNumLines (0); 241 setNumLines (0);
243 m_progress = 0; 242 m_progress = 0;
244 } 243 }
245 244
246 // ============================================================================= 245 // =============================================================================
280 // ============================================================================= 279 // =============================================================================
281 // ----------------------------------------------------------------------------- 280 // -----------------------------------------------------------------------------
282 ExtProgPathPrompt::ExtProgPathPrompt (str progName, QWidget* parent, Qt::WindowFlags f) : 281 ExtProgPathPrompt::ExtProgPathPrompt (str progName, QWidget* parent, Qt::WindowFlags f) :
283 QDialog (parent, f), 282 QDialog (parent, f),
284 ui (new Ui_ExtProgPath) 283 ui (new Ui_ExtProgPath)
285 { ui->setupUi (this); 284 {
286 285 ui->setupUi (this);
287 str labelText = ui->m_label->text(); 286 str labelText = ui->m_label->text();
288 labelText.replace ("<PROGRAM>", progName); 287 labelText.replace ("<PROGRAM>", progName);
289 ui->m_label->setText (labelText); 288 ui->m_label->setText (labelText);
290
291 connect (ui->m_findPath, SIGNAL (clicked (bool)), this, SLOT (findPath())); 289 connect (ui->m_findPath, SIGNAL (clicked (bool)), this, SLOT (findPath()));
292 } 290 }
293 291
294 // ============================================================================= 292 // =============================================================================
295 // ----------------------------------------------------------------------------- 293 // -----------------------------------------------------------------------------

mercurial