/[svn]/qsampler/trunk/src/qsamplerMainForm.ui.h
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerMainForm.ui.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 753 by capela, Wed Aug 24 17:44:59 2005 UTC revision 757 by capela, Fri Aug 26 23:04:32 2005 UTC
# Line 471  bool qsamplerMainForm::openSession (void Line 471  bool qsamplerMainForm::openSession (void
471    
472      // Ask for the filename to open...      // Ask for the filename to open...
473      QString sFilename = QFileDialog::getOpenFileName(      QString sFilename = QFileDialog::getOpenFileName(
474              m_pOptions->sSessionDir,                // Start here.                  m_pOptions->sSessionDir,                // Start here.
475              tr("LSCP Session files") + " (*.lscp)", // Filter (LSCP files)                  tr("LSCP Session files") + " (*.lscp)", // Filter (LSCP files)
476              this, 0,                                // Parent and name (none)                  this, 0,                                // Parent and name (none)
477              tr("Open Session")                      // Caption.                  QSAMPLER_TITLE ": " + tr("Open Session")        // Caption.
478      );      );
479    
480      // Have we cancelled?      // Have we cancelled?
# Line 505  bool qsamplerMainForm::saveSession ( boo Line 505  bool qsamplerMainForm::saveSession ( boo
505              sFilename = m_pOptions->sSessionDir;              sFilename = m_pOptions->sSessionDir;
506          // Prompt the guy...          // Prompt the guy...
507          sFilename = QFileDialog::getSaveFileName(          sFilename = QFileDialog::getSaveFileName(
508                  sFilename,                              // Start here.                          sFilename,                              // Start here.
509                  tr("LSCP Session files") + " (*.lscp)", // Filter (LSCP files)                          tr("LSCP Session files") + " (*.lscp)", // Filter (LSCP files)
510                  this, 0,                                // Parent and name (none)                          this, 0,                                // Parent and name (none)
511                  tr("Save Session")                      // Caption.                          QSAMPLER_TITLE ": " + tr("Save Session")        // Caption.
512          );          );
513          // Have we cancelled it?          // Have we cancelled it?
514          if (sFilename.isEmpty())          if (sFilename.isEmpty())
# Line 518  bool qsamplerMainForm::saveSession ( boo Line 518  bool qsamplerMainForm::saveSession ( boo
518              sFilename += ".lscp";              sFilename += ".lscp";
519          // Check if already exists...          // Check if already exists...
520          if (sFilename != m_sFilename && QFileInfo(sFilename).exists()) {          if (sFilename != m_sFilename && QFileInfo(sFilename).exists()) {
521              if (QMessageBox::warning(this, tr("Warning"),              if (QMessageBox::warning(this,
522                                    QSAMPLER_TITLE ": " + tr("Warning"),
523                  tr("The file already exists:\n\n"                  tr("The file already exists:\n\n"
524                     "\"%1\"\n\n"                     "\"%1\"\n\n"
525                     "Do you want to replace it?")                     "Do you want to replace it?")
# Line 540  bool qsamplerMainForm::closeSession ( bo Line 541  bool qsamplerMainForm::closeSession ( bo
541    
542      // Are we dirty enough to prompt it?      // Are we dirty enough to prompt it?
543      if (m_iDirtyCount > 0) {      if (m_iDirtyCount > 0) {
544          switch (QMessageBox::warning(this, tr("Warning"),          switch (QMessageBox::warning(this,
545                            QSAMPLER_TITLE ": " + tr("Warning"),
546              tr("The current session has been changed:\n\n"              tr("The current session has been changed:\n\n"
547              "\"%1\"\n\n"              "\"%1\"\n\n"
548              "Do you want to save the changes?")              "Do you want to save the changes?")
# Line 881  void qsamplerMainForm::fileReset (void) Line 883  void qsamplerMainForm::fileReset (void)
883          return;          return;
884    
885      // Ask user whether he/she want's an internal sampler reset...      // Ask user whether he/she want's an internal sampler reset...
886      if (QMessageBox::warning(this, tr("Warning"),      if (QMessageBox::warning(this,
887                    QSAMPLER_TITLE ": " + tr("Warning"),
888          tr("Resetting the sampler instance will close\n"          tr("Resetting the sampler instance will close\n"
889             "all device and channel configurations.\n\n"             "all device and channel configurations.\n\n"
890             "Please note that this operation may cause\n"             "Please note that this operation may cause\n"
# Line 916  void qsamplerMainForm::fileRestart (void Line 919  void qsamplerMainForm::fileRestart (void
919      // Ask user whether he/she want's a complete restart...      // Ask user whether he/she want's a complete restart...
920      // (if we're currently up and running)      // (if we're currently up and running)
921      if (bRestart && m_pClient) {      if (bRestart && m_pClient) {
922          bRestart = (QMessageBox::warning(this, tr("Warning"),          bRestart = (QMessageBox::warning(this,
923                            QSAMPLER_TITLE ": " + tr("Warning"),
924              tr("New settings will be effective after\n"              tr("New settings will be effective after\n"
925                 "restarting the client/server connection.\n\n"                 "restarting the client/server connection.\n\n"
926                 "Please note that this operation may cause\n"                 "Please note that this operation may cause\n"
# Line 992  void qsamplerMainForm::editRemoveChannel Line 996  void qsamplerMainForm::editRemoveChannel
996    
997      // Prompt user if he/she's sure about this...      // Prompt user if he/she's sure about this...
998      if (m_pOptions && m_pOptions->bConfirmRemove) {      if (m_pOptions && m_pOptions->bConfirmRemove) {
999          if (QMessageBox::warning(this, tr("Warning"),          if (QMessageBox::warning(this,
1000                            QSAMPLER_TITLE ": " + tr("Warning"),
1001              tr("About to remove channel:\n\n"              tr("About to remove channel:\n\n"
1002                 "%1\n\n"                 "%1\n\n"
1003                 "Are you sure?")                 "Are you sure?")
# Line 1175  void qsamplerMainForm::viewOptions (void Line 1180  void qsamplerMainForm::viewOptions (void
1180                  (!bOldStdoutCapture &&  m_pOptions->bStdoutCapture) ||                  (!bOldStdoutCapture &&  m_pOptions->bStdoutCapture) ||
1181                  ( bOldKeepOnTop     && !m_pOptions->bKeepOnTop)     ||                  ( bOldKeepOnTop     && !m_pOptions->bKeepOnTop)     ||
1182                  (!bOldKeepOnTop     &&  m_pOptions->bKeepOnTop)) {                  (!bOldKeepOnTop     &&  m_pOptions->bKeepOnTop)) {
1183                  QMessageBox::information(this, tr("Information"),                  QMessageBox::information(this,
1184                                            QSAMPLER_TITLE ": " + tr("Information"),
1185                      tr("Some settings may be only effective\n"                      tr("Some settings may be only effective\n"
1186                         "next time you start this program."), tr("OK"));                         "next time you start this program."), tr("OK"));
1187                  updateMessagesCapture();                  updateMessagesCapture();
# Line 1607  void qsamplerMainForm::appendMessagesErr Line 1613  void qsamplerMainForm::appendMessagesErr
1613    
1614      appendMessagesColor(s.simplifyWhiteSpace(), "#ff0000");      appendMessagesColor(s.simplifyWhiteSpace(), "#ff0000");
1615    
1616      QMessageBox::critical(this, tr("Error"), s, tr("Cancel"));      QMessageBox::critical(this,
1617                    QSAMPLER_TITLE ": " + tr("Error"), s, tr("Cancel"));
1618  }  }
1619    
1620    
# Line 1879  void qsamplerMainForm::startServer (void Line 1886  void qsamplerMainForm::startServer (void
1886    
1887      // Is the server process instance still here?      // Is the server process instance still here?
1888      if (m_pServer) {      if (m_pServer) {
1889          switch (QMessageBox::warning(this, tr("Warning"),          switch (QMessageBox::warning(this,
1890                            QSAMPLER_TITLE ": " + tr("Warning"),
1891              tr("Could not start the LinuxSampler server.\n\n"              tr("Could not start the LinuxSampler server.\n\n"
1892                 "Maybe it ss already started."),                 "Maybe it ss already started."),
1893              tr("Stop"), tr("Kill"), tr("Cancel"))) {              tr("Stop"), tr("Kill"), tr("Cancel"))) {

Legend:
Removed from v.753  
changed lines
  Added in v.757

  ViewVC Help
Powered by ViewVC