2009-05-23 12:37:30 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2011-01-09 20:33:36 +01:00
|
|
|
* Copyright (C) 2007-2011 Daniel Marjamäki and Cppcheck team.
|
2009-05-23 12:37:30 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-05-23 12:37:30 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <QStringList>
|
2010-08-15 07:58:14 +02:00
|
|
|
#include <QFileInfo>
|
2010-10-31 12:16:55 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QStringList>
|
2010-08-15 16:40:16 +02:00
|
|
|
#include <stdlib.h>
|
2009-07-02 10:32:29 +02:00
|
|
|
#include "common.h"
|
2010-10-31 12:16:55 +01:00
|
|
|
#include "applicationlist.h"
|
2011-04-02 15:11:01 +02:00
|
|
|
#include "application.h"
|
2010-10-31 12:16:55 +01:00
|
|
|
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-07-02 10:32:29 +02:00
|
|
|
ApplicationList::ApplicationList(QObject *parent) :
|
2011-02-25 10:45:04 +01:00
|
|
|
QObject(parent),
|
|
|
|
mDefaultApplicationIndex(-1)
|
2009-05-23 12:37:30 +02:00
|
|
|
{
|
|
|
|
//ctor
|
|
|
|
}
|
|
|
|
|
|
|
|
ApplicationList::~ApplicationList()
|
|
|
|
{
|
2009-05-24 11:08:51 +02:00
|
|
|
Clear();
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
|
2011-06-16 15:03:25 +02:00
|
|
|
bool ApplicationList::LoadSettings()
|
2009-05-23 12:37:30 +02:00
|
|
|
{
|
2011-06-16 15:03:25 +02:00
|
|
|
QSettings settings;
|
|
|
|
QStringList names = settings.value(SETTINGS_APPLICATION_NAMES, QStringList()).toStringList();
|
|
|
|
QStringList paths = settings.value(SETTINGS_APPLICATION_PATHS, QStringList()).toStringList();
|
|
|
|
QStringList params = settings.value(SETTINGS_APPLICATION_PARAMS, QStringList()).toStringList();
|
|
|
|
int defapp = settings.value(SETTINGS_APPLICATION_DEFAULT, -1).toInt();
|
2009-07-02 10:32:29 +02:00
|
|
|
|
2011-04-01 23:53:26 +02:00
|
|
|
// Params will be empty first time starting with the new setting.
|
|
|
|
// Return false and inform user about problem with application settings.
|
|
|
|
bool succeeded = true;
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!names.empty() && !paths.empty() && params.empty()) {
|
2011-04-01 23:53:26 +02:00
|
|
|
for (int i = 0; i < paths.length(); i++)
|
|
|
|
params << "";
|
|
|
|
succeeded = false;
|
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
if (names.empty() && paths.empty() && params.empty()) {
|
|
|
|
do {
|
2010-08-15 08:11:32 +02:00
|
|
|
// use as default for gnome environments
|
2011-10-13 20:53:06 +02:00
|
|
|
if (QFileInfo("/usr/bin/gedit").isExecutable()) {
|
2011-04-02 15:11:01 +02:00
|
|
|
Application app;
|
|
|
|
app.setName("gedit");
|
|
|
|
app.setPath("/usr/bin/gedit");
|
|
|
|
app.setParameters("+(line) (file)");
|
|
|
|
AddApplication(app);
|
2011-02-25 10:45:04 +01:00
|
|
|
defapp = 0;
|
2010-08-15 08:11:32 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// use as default for kde environments
|
2011-10-13 20:53:06 +02:00
|
|
|
if (QFileInfo("/usr/bin/kate").isExecutable()) {
|
2011-04-02 15:11:01 +02:00
|
|
|
Application app;
|
|
|
|
app.setName("kate");
|
|
|
|
app.setPath("/usr/bin/kate");
|
|
|
|
app.setParameters("-l(line) (file)");
|
|
|
|
AddApplication(app);
|
2011-02-25 10:45:04 +01:00
|
|
|
defapp = 0;
|
2010-08-15 08:11:32 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-10-13 20:53:06 +02:00
|
|
|
if (FindDefaultWindowsEditor()) {
|
2011-02-25 10:45:04 +01:00
|
|
|
defapp = 0;
|
2010-08-15 08:11:32 +02:00
|
|
|
break;
|
2011-02-25 10:45:04 +01:00
|
|
|
}
|
2011-10-13 20:53:06 +02:00
|
|
|
} while (0);
|
2010-08-15 08:11:32 +02:00
|
|
|
}
|
2010-08-15 07:58:14 +02:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
if (names.size() > 0 && (names.size() == paths.size())) {
|
|
|
|
for (int i = 0; i < names.size(); i++) {
|
2011-04-02 15:11:01 +02:00
|
|
|
const Application app(names[i], paths[i], params[i]);
|
|
|
|
AddApplication(app);
|
|
|
|
}
|
2011-02-25 17:01:23 +01:00
|
|
|
|
|
|
|
if (defapp == -1)
|
|
|
|
mDefaultApplicationIndex = 0;
|
|
|
|
else if (defapp < names.size())
|
|
|
|
mDefaultApplicationIndex = defapp;
|
|
|
|
else
|
|
|
|
mDefaultApplicationIndex = 0;
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
2011-04-01 23:53:26 +02:00
|
|
|
return succeeded;
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
|
2011-06-16 15:03:25 +02:00
|
|
|
void ApplicationList::SaveSettings()
|
2009-05-23 12:37:30 +02:00
|
|
|
{
|
2011-06-16 15:03:25 +02:00
|
|
|
QSettings settings;
|
2009-05-23 12:37:30 +02:00
|
|
|
QStringList names;
|
|
|
|
QStringList paths;
|
2011-04-01 23:53:26 +02:00
|
|
|
QStringList params;
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
for (int i = 0; i < GetApplicationCount(); i++) {
|
2011-04-02 15:11:01 +02:00
|
|
|
Application app = GetApplication(i);
|
|
|
|
names << app.getName();
|
|
|
|
paths << app.getPath();
|
|
|
|
params << app.getParameters();
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
|
2011-06-16 15:03:25 +02:00
|
|
|
settings.setValue(SETTINGS_APPLICATION_NAMES, names);
|
|
|
|
settings.setValue(SETTINGS_APPLICATION_PATHS, paths);
|
|
|
|
settings.setValue(SETTINGS_APPLICATION_PARAMS, params);
|
|
|
|
settings.setValue(SETTINGS_APPLICATION_DEFAULT, mDefaultApplicationIndex);
|
2009-05-23 12:37:30 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-06-20 19:55:28 +02:00
|
|
|
int ApplicationList::GetApplicationCount() const
|
2009-05-23 12:37:30 +02:00
|
|
|
{
|
|
|
|
return mApplications.size();
|
|
|
|
}
|
|
|
|
|
2011-04-02 15:11:01 +02:00
|
|
|
Application ApplicationList::GetApplication(const int index) const
|
2009-05-23 12:37:30 +02:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (index >= 0 && index < mApplications.size()) {
|
2011-04-02 15:11:01 +02:00
|
|
|
return mApplications[index];
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
|
2011-04-02 15:11:01 +02:00
|
|
|
return Application(QString(), QString(), QString());
|
2011-04-01 23:53:26 +02:00
|
|
|
}
|
|
|
|
|
2011-04-02 15:11:01 +02:00
|
|
|
void ApplicationList::SetApplication(int index, const Application &app)
|
2011-04-01 23:53:26 +02:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (index >= 0 && index < mApplications.size()) {
|
2011-04-02 13:25:18 +02:00
|
|
|
mApplications.replace(index, app);
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-02 15:11:01 +02:00
|
|
|
void ApplicationList::AddApplication(const Application &app)
|
2009-05-23 12:37:30 +02:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (app.getName().isEmpty() || app.getPath().isEmpty()) {
|
2009-05-24 10:53:29 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-04-02 12:35:52 +02:00
|
|
|
mApplications << app;
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ApplicationList::RemoveApplication(const int index)
|
|
|
|
{
|
2009-05-23 13:26:04 +02:00
|
|
|
mApplications.removeAt(index);
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
|
2011-02-25 10:45:04 +01:00
|
|
|
void ApplicationList::SetDefault(const int index)
|
2009-05-23 17:45:05 +02:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (index < mApplications.size() && index >= 0) {
|
2011-02-25 10:45:04 +01:00
|
|
|
mDefaultApplicationIndex = index;
|
2009-05-23 17:45:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-25 12:07:42 +01:00
|
|
|
void ApplicationList::Copy(const ApplicationList *list)
|
2009-05-24 11:08:51 +02:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!list) {
|
2009-07-02 10:32:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-24 11:08:51 +02:00
|
|
|
Clear();
|
2011-10-13 20:53:06 +02:00
|
|
|
for (int i = 0; i < list->GetApplicationCount(); i++) {
|
2011-04-02 15:11:01 +02:00
|
|
|
const Application app = list->GetApplication(i);
|
|
|
|
AddApplication(app);
|
2009-05-24 11:08:51 +02:00
|
|
|
}
|
2011-02-25 10:45:04 +01:00
|
|
|
mDefaultApplicationIndex = list->GetDefaultApplication();
|
2009-05-24 11:08:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ApplicationList::Clear()
|
|
|
|
{
|
|
|
|
mApplications.clear();
|
2011-02-25 10:45:04 +01:00
|
|
|
mDefaultApplicationIndex = -1;
|
2009-05-24 11:08:51 +02:00
|
|
|
}
|
|
|
|
|
2010-10-28 22:21:05 +02:00
|
|
|
bool ApplicationList::FindDefaultWindowsEditor()
|
|
|
|
{
|
|
|
|
const QString appPath(getenv("ProgramFiles"));
|
|
|
|
const QString notepadppPath = appPath + "\\Notepad++\\notepad++.exe";
|
2011-10-13 20:53:06 +02:00
|
|
|
if (QFileInfo(notepadppPath).isExecutable()) {
|
2011-04-02 15:11:01 +02:00
|
|
|
Application app;
|
|
|
|
app.setName("Notepad++");
|
|
|
|
app.setPath("\"" + notepadppPath + "\"");
|
|
|
|
app.setParameters("-n(line) (file)");
|
|
|
|
AddApplication(app);
|
2010-10-28 22:21:05 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString windowsPath(getenv("windir"));
|
|
|
|
const QString notepadPath = windowsPath + "\\system32\\notepad.exe";
|
2011-10-13 20:53:06 +02:00
|
|
|
if (QFileInfo(notepadPath).isExecutable()) {
|
2011-04-02 15:11:01 +02:00
|
|
|
Application app;
|
|
|
|
app.setName("Notepad");
|
|
|
|
app.setPath(notepadPath);
|
|
|
|
app.setParameters("(file)");
|
|
|
|
AddApplication(app);
|
2010-10-28 22:21:05 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|