MuseScore/mscore/pathlistdialog.cpp
Dag Henning Liodden Sørbø 2b6cb8b432 Change to new preferences model
The old Preferences struct holding all preferences are removed in favor of a
new Preferences class which acts as a proxy for QSettings. The settings stored
in QSettings are accessed directly through access methods like getBool(key),
getInt(key), etc. and changed with setPreference(key, value).

Since we are using QSettings directly the preferences are stored automatically
without the need for a custom write() and read() method like before.

The preferences.cpp/.h and prefdialog.cpp/h are refactored to have fewer
responsibilities than before. The Preferences class are all about storing and
retrieving preferences - it should not contain any code to handle any other
aspect of MuseScore.

Testing:
The Preferences class can be used in tests. All preferences are initialized with
default values in mtest. If a test requires that a preference has a specific
value it can be changed using setPreference() for that single test. In the tests
the preferences are stored in memory only.

The Preference class is supposed to be used as a singleton. In preferences.h an
'extern Preferences preferences' is set and it is defined in preferences.cpp. All
files which includes preferences.h have access to the 'preferences' singleton
and should use this to get and set preferences.
2018-02-08 16:59:10 +01:00

109 lines
3.4 KiB
C++

//=============================================================================
// MuseScore
// Linux Music Score Editor
//
// Copyright (C) 2002-2011 Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#include "pathlistdialog.h"
#include "preferences.h"
#include "musescore.h"
namespace Ms {
//---------------------------------------------------------
// PathListDialog
//---------------------------------------------------------
PathListDialog::PathListDialog(QWidget* parent)
: QDialog(parent)
{
setObjectName("PathListDialog");
setupUi(this);
setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
connect(add, SIGNAL(clicked()), SLOT(addClicked()));
connect(remove, SIGNAL(clicked()), SLOT(removeClicked()));
MuseScore::restoreGeometry(this);
}
//---------------------------------------------------------
// addClicked
//---------------------------------------------------------
void PathListDialog::addClicked()
{
QString newPath = QFileDialog::getExistingDirectory(
this,
tr("Choose a directory"),
QString("%1/%2").arg(QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation)).arg(QCoreApplication::applicationName()),
QFileDialog::ShowDirsOnly | (preferences.getBool(PREF_UI_APP_USENATIVEDIALOGS) ? QFileDialog::Options() : QFileDialog::DontUseNativeDialog)
);
if (!newPath.isEmpty()) {
newPath = QDir(newPath).absolutePath();
if(files->findItems(newPath, Qt::MatchExactly).size() == 0)
files->addItem(newPath);
}
}
//---------------------------------------------------------
// removeClicked
//---------------------------------------------------------
void PathListDialog::removeClicked()
{
int n = files->currentRow();
if (n == -1)
return;
files->takeItem(n);
}
//---------------------------------------------------------
// path
//---------------------------------------------------------
QString PathListDialog::path()
{
int n = files->count();
QStringList sl;
for (int i = 0; i < n; ++i) {
QListWidgetItem* item = files->item(i);
sl.append(item->text());
}
return sl.join(";");
}
//---------------------------------------------------------
// setPath
//---------------------------------------------------------
void PathListDialog::setPath(QString path)
{
QStringList pl = path.split(";");
files->addItems(pl);
}
//---------------------------------------------------------
// hideEvent
//---------------------------------------------------------
void PathListDialog::hideEvent(QHideEvent* event)
{
MuseScore::saveGeometry(this);
QWidget::hideEvent(event);
}
}