2009-05-23 12:37:30 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2016-01-01 14:34:45 +01:00
|
|
|
* Copyright (C) 2007-2016 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef APPLICATIONLIST_H
|
|
|
|
#define APPLICATIONLIST_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2011-04-02 12:35:52 +02:00
|
|
|
#include "application.h"
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2011-04-02 15:11:01 +02:00
|
|
|
* @brief List of applications user has specified to open errors with.
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ApplicationList : public QObject {
|
2009-07-02 10:32:29 +02:00
|
|
|
Q_OBJECT
|
2009-05-23 12:37:30 +02:00
|
|
|
public:
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2015-03-08 18:18:09 +01:00
|
|
|
explicit ApplicationList(QObject *parent = 0);
|
2009-05-23 12:37:30 +02:00
|
|
|
virtual ~ApplicationList();
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Load all applications
|
|
|
|
*
|
2011-04-01 23:53:26 +02:00
|
|
|
* @return true if loading succeeded, false if there is problem with
|
|
|
|
* application list. Most probably because of older version settings need
|
|
|
|
* to be upgraded.
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2011-06-16 15:03:25 +02:00
|
|
|
bool LoadSettings();
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Save all applications
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2012-10-27 12:10:32 +02:00
|
|
|
void SaveSettings() const;
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Get the amount of applications in the list
|
|
|
|
* @return The count of applications
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-06-20 19:55:28 +02:00
|
|
|
int GetApplicationCount() const;
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2010-12-15 18:45:53 +01:00
|
|
|
* @brief Get specific application's name
|
2009-06-02 22:32:58 +02:00
|
|
|
*
|
|
|
|
* @param index Index of the application whose name to get
|
|
|
|
* @return Name of the application
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2012-10-27 11:35:00 +02:00
|
|
|
const Application& GetApplication(const int index) const;
|
|
|
|
Application& GetApplication(const int index);
|
2011-04-01 23:53:26 +02:00
|
|
|
|
2011-02-25 10:45:04 +01:00
|
|
|
/**
|
|
|
|
* @brief Return the default application.
|
|
|
|
* @return Index of the default application.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
int GetDefaultApplication() const {
|
2011-02-25 10:45:04 +01:00
|
|
|
return mDefaultApplicationIndex;
|
|
|
|
}
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Add a new application
|
|
|
|
*
|
2011-04-02 15:11:01 +02:00
|
|
|
* @param app Application to add.
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2011-04-02 15:11:01 +02:00
|
|
|
void AddApplication(const Application &app);
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Remove an application from the list
|
|
|
|
*
|
|
|
|
* @param index Index of the application to remove.
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-05-23 12:37:30 +02:00
|
|
|
void RemoveApplication(const int index);
|
2009-05-23 17:45:05 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2011-02-25 10:45:04 +01:00
|
|
|
* @brief Set application as default application.
|
2009-06-02 22:32:58 +02:00
|
|
|
* @param index Index of the application to make the default one
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2011-02-25 10:45:04 +01:00
|
|
|
void SetDefault(const int index);
|
2009-05-24 11:08:51 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Remove all applications from this list and copy all applications from
|
|
|
|
* list given as a parameter.
|
|
|
|
* @param list Copying source
|
2009-05-24 11:08:51 +02:00
|
|
|
*/
|
2011-02-25 12:07:42 +01:00
|
|
|
void Copy(const ApplicationList *list);
|
2011-02-25 10:45:04 +01:00
|
|
|
|
2009-05-23 12:37:30 +02:00
|
|
|
protected:
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief Clear the list
|
|
|
|
*
|
2009-05-24 11:08:51 +02:00
|
|
|
*/
|
|
|
|
void Clear();
|
2010-10-28 22:21:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Find editor used by default in Windows.
|
|
|
|
* Check if Notepad++ is installed and use it. If not, use Notepad.
|
|
|
|
*/
|
|
|
|
bool FindDefaultWindowsEditor();
|
|
|
|
|
2011-02-25 10:45:04 +01:00
|
|
|
private:
|
|
|
|
|
2015-11-18 17:34:29 +01:00
|
|
|
bool CheckAndAddApplication(QString appPath, QString name, QString parameters);
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
|
|
|
* @brief List of applications
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2011-04-02 12:35:52 +02:00
|
|
|
QList<Application> mApplications;
|
2011-02-25 10:45:04 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Index of the default application.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int mDefaultApplicationIndex;
|
2009-05-23 12:37:30 +02:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-05-23 12:37:30 +02:00
|
|
|
#endif // APPLICATIONLIST_H
|