2009-05-23 12:37:30 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2015-01-03 12:14:58 +01:00
|
|
|
* Copyright (C) 2007-2015 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
|
|
|
*/
|
|
|
|
|
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()) {
|
2012-10-12 20:28:31 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
// use as default for gnome environments
|
|
|
|
if (QFileInfo("/usr/bin/gedit").isExecutable()) {
|
|
|
|
Application app;
|
|
|
|
app.setName("gedit");
|
|
|
|
app.setPath("/usr/bin/gedit");
|
|
|
|
app.setParameters("+(line) (file)");
|
|
|
|
AddApplication(app);
|
|
|
|
defapp = 0;
|
|
|
|
}
|
|
|
|
// use as default for kde environments
|
|
|
|
if (QFileInfo("/usr/bin/kate").isExecutable()) {
|
|
|
|
Application app;
|
|
|
|
app.setName("kate");
|
|
|
|
app.setPath("/usr/bin/kate");
|
|
|
|
app.setParameters("-l(line) (file)");
|
|
|
|
AddApplication(app);
|
|
|
|
defapp = 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (FindDefaultWindowsEditor()) {
|
|
|
|
defapp = 0;
|
|
|
|
}
|
|
|
|
#endif
|
2012-10-14 12:10:30 +02:00
|
|
|
} else if (names.size() == paths.size()) {
|
2011-10-13 20:53:06 +02:00
|
|
|
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);
|
|
|
|
}
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
2012-10-14 12:10:30 +02:00
|
|
|
|
|
|
|
if (defapp == -1)
|
|
|
|
mDefaultApplicationIndex = 0;
|
|
|
|
else if (defapp < names.size())
|
|
|
|
mDefaultApplicationIndex = defapp;
|
|
|
|
else
|
|
|
|
mDefaultApplicationIndex = 0;
|
|
|
|
|
2011-04-01 23:53:26 +02:00
|
|
|
return succeeded;
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
|
|
|
|
2012-10-27 12:10:32 +02:00
|
|
|
void ApplicationList::SaveSettings() const
|
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++) {
|
2012-10-27 11:35:00 +02:00
|
|
|
const Application& app = GetApplication(i);
|
2011-04-02 15:11:01 +02:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2012-10-27 11:35:00 +02:00
|
|
|
Application& ApplicationList::GetApplication(const int index)
|
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
|
|
|
}
|
|
|
|
|
2012-10-27 11:35:00 +02:00
|
|
|
static Application dummy; // TODO: Throw exception instead?
|
|
|
|
return dummy;
|
2011-04-01 23:53:26 +02:00
|
|
|
}
|
|
|
|
|
2012-10-27 11:35:00 +02:00
|
|
|
const Application& ApplicationList::GetApplication(const int index) const
|
2011-04-01 23:53:26 +02:00
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (index >= 0 && index < mApplications.size()) {
|
2012-10-27 11:35:00 +02:00
|
|
|
return mApplications[index];
|
2009-05-23 12:37:30 +02:00
|
|
|
}
|
2012-10-27 11:35:00 +02:00
|
|
|
|
|
|
|
static const Application dummy; // TODO: Throw exception instead?
|
|
|
|
return dummy;
|
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++) {
|
2012-10-27 11:35:00 +02:00
|
|
|
const Application& app = list->GetApplication(i);
|
2011-04-02 15:11:01 +02:00
|
|
|
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()
|
|
|
|
{
|
2012-10-12 20:06:40 +02:00
|
|
|
bool foundOne = false;
|
2010-10-28 22:21:05 +02:00
|
|
|
const QString appPath(getenv("ProgramFiles"));
|
|
|
|
const QString notepadppPath = appPath + "\\Notepad++\\notepad++.exe";
|
2012-10-12 20:06:40 +02:00
|
|
|
if (QFileInfo(notepadppPath).exists() && 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);
|
2012-10-12 20:06:40 +02:00
|
|
|
foundOne = true;
|
2010-10-28 22:21:05 +02:00
|
|
|
}
|
|
|
|
|
2012-09-04 19:49:08 +02:00
|
|
|
const QString notepadTwoPath = appPath + "\\Notepad2\\Notepad2.exe";
|
2012-10-12 20:06:40 +02:00
|
|
|
if (QFileInfo(notepadTwoPath).exists() && QFileInfo(notepadTwoPath).isExecutable()) {
|
2012-09-04 19:49:08 +02:00
|
|
|
Application app;
|
|
|
|
app.setName("Notepad2");
|
|
|
|
app.setPath("\"" + notepadTwoPath + "\"");
|
|
|
|
app.setParameters("/g (line) (file)");
|
|
|
|
AddApplication(app);
|
2012-10-12 20:06:40 +02:00
|
|
|
foundOne = true;
|
2012-09-04 19:49:08 +02:00
|
|
|
}
|
|
|
|
|
2010-10-28 22:21:05 +02:00
|
|
|
const QString windowsPath(getenv("windir"));
|
|
|
|
const QString notepadPath = windowsPath + "\\system32\\notepad.exe";
|
2012-10-12 20:06:40 +02:00
|
|
|
if (QFileInfo(notepadPath).exists() && QFileInfo(notepadPath).isExecutable()) {
|
2011-04-02 15:11:01 +02:00
|
|
|
Application app;
|
|
|
|
app.setName("Notepad");
|
|
|
|
app.setPath(notepadPath);
|
|
|
|
app.setParameters("(file)");
|
|
|
|
AddApplication(app);
|
2012-10-12 20:06:40 +02:00
|
|
|
foundOne = true;
|
2010-10-28 22:21:05 +02:00
|
|
|
}
|
2012-10-12 20:06:40 +02:00
|
|
|
return foundOne;
|
2010-10-28 22:21:05 +02:00
|
|
|
}
|