/[svn]/qsampler/trunk/src/qsamplerOptions.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerOptions.cpp

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

revision 3014 by capela, Mon Oct 17 16:23:15 2016 UTC revision 3518 by capela, Sun Jun 30 16:58:30 2019 UTC
# Line 1  Line 1 
1  // qsamplerOptions.cpp  // qsamplerOptions.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2016, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2019, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007,2015 Christian Schoenebeck     Copyright (C) 2007,2008,2015 Christian Schoenebeck
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 162  void Options::saveOptions (void) Line 162  void Options::saveOptions (void)
162  {  {
163          // Make program version available in the future.          // Make program version available in the future.
164          m_settings.beginGroup("/Program");          m_settings.beginGroup("/Program");
165          m_settings.setValue("/Version", QSAMPLER_VERSION);          m_settings.setValue("/Version", CONFIG_BUILD_VERSION);
166          m_settings.endGroup();          m_settings.endGroup();
167    
168          // And go into general options group.          // And go into general options group.
# Line 299  bool Options::parse_args ( const QString Line 299  bool Options::parse_args ( const QString
299                  }                  }
300    
301                  QString sArg = args.at(i);                  QString sArg = args.at(i);
302                  QString sVal = QString::null;                  QString sVal;
303                  const int iEqual = sArg.indexOf("=");                  const int iEqual = sArg.indexOf("=");
304                  if (iEqual >= 0) {                  if (iEqual >= 0) {
305                          sVal = sArg.right(sArg.length() - iEqual - 1);                          sVal = sArg.right(sArg.length() - iEqual - 1);
# Line 337  bool Options::parse_args ( const QString Line 337  bool Options::parse_args ( const QString
337                          return false;                          return false;
338                  }                  }
339                  else if (sArg == "-v" || sArg == "--version") {                  else if (sArg == "-v" || sArg == "--version") {
340                          out << QObject::tr("Qt: %1\n")                          out << QString("Qt: %1\n")
341                                  .arg(qVersion());                                  .arg(qVersion());
342                          out << QObject::tr("%1: %2  (%3)\n")                          out << QString("%1: %2\n")
343                                  .arg(QSAMPLER_TITLE)                                  .arg(QSAMPLER_TITLE)
344                                  .arg(QSAMPLER_VERSION)                                  .arg(CONFIG_BUILD_VERSION);
                                 .arg(CONFIG_BUILD_DATE);  
345                  #ifdef CONFIG_LIBGIG                  #ifdef CONFIG_LIBGIG
346                          out << QString("%1: %2\n")                          out << QString("%1: %2\n")
347                                  .arg(gig::libraryName().c_str())                                  .arg(gig::libraryName().c_str())
# Line 380  void Options::loadWidgetGeometry ( QWidg Line 379  void Options::loadWidgetGeometry ( QWidg
379                          = m_settings.value("/geometry").toByteArray();                          = m_settings.value("/geometry").toByteArray();
380                  if (!geometry.isEmpty())                  if (!geometry.isEmpty())
381                          pWidget->restoreGeometry(geometry);                          pWidget->restoreGeometry(geometry);
                 else  
382          #else//--LOAD_OLD_GEOMETRY          #else//--LOAD_OLD_GEOMETRY
383                  QPoint wpos;                  QPoint wpos;
384                  QSize  wsize;                  QSize  wsize;
# Line 392  void Options::loadWidgetGeometry ( QWidg Line 390  void Options::loadWidgetGeometry ( QWidg
390                          pWidget->move(wpos);                          pWidget->move(wpos);
391                  if (wsize.width() > 0 && wsize.height() > 0)                  if (wsize.width() > 0 && wsize.height() > 0)
392                          pWidget->resize(wsize);                          pWidget->resize(wsize);
                 else  
393          #endif          #endif
394                  pWidget->adjustSize();          //      else
395            //      pWidget->adjustSize();
396                  if (!bVisible)                  if (!bVisible)
397                          bVisible = m_settings.value("/visible", false).toBool();                          bVisible = m_settings.value("/visible", false).toBool();
398                  if (bVisible)                  if (bVisible)
# Line 592  void Options::sendFineTuningSettings() { Line 590  void Options::sendFineTuningSettings() {
590    
591    
592  // end of qsamplerOptions.cpp  // end of qsamplerOptions.cpp
593    

Legend:
Removed from v.3014  
changed lines
  Added in v.3518

  ViewVC Help
Powered by ViewVC