2009-05-23 12:37:30 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 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
|
|
|
|
|
2011-04-02 12:35:52 +02:00
|
|
|
#include "application.h"
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QObject>
|
|
|
|
|
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
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief List of applications user has specified to open errors with.
|
|
|
|
*/
|
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
|
|
|
|
2019-06-30 21:39:22 +02:00
|
|
|
explicit ApplicationList(QObject *parent = nullptr);
|
2022-03-13 20:07:58 +01:00
|
|
|
~ApplicationList() override;
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Load all applications
|
|
|
|
*
|
|
|
|
* @return true if loading succeeded, false if there is problem with
|
|
|
|
* application list. Most probably because of older version settings need
|
|
|
|
* to be upgraded.
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
bool loadSettings();
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Save all applications
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
void saveSettings() const;
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get the amount of applications in the list
|
|
|
|
* @return The count of applications
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
int getApplicationCount() const;
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get specific application's name
|
|
|
|
*
|
|
|
|
* @param index Index of the application whose name to get
|
|
|
|
* @return Name of the application
|
|
|
|
*/
|
2017-07-28 05:18:43 +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
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return the default application.
|
|
|
|
* @return Index of the default application.
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
int getDefaultApplication() const {
|
2011-02-25 10:45:04 +01:00
|
|
|
return mDefaultApplicationIndex;
|
|
|
|
}
|
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add a new application
|
|
|
|
*
|
|
|
|
* @param app Application to add.
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
void addApplication(const Application &app);
|
2009-05-23 12:37:30 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Remove an application from the list
|
|
|
|
*
|
|
|
|
* @param index Index of the application to remove.
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
void removeApplication(const int index);
|
2009-05-23 17:45:05 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set application as default application.
|
|
|
|
* @param index Index of the application to make the default one
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
void setDefault(const int index);
|
2009-05-24 11:08:51 +02:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Remove all applications from this list and copy all applications from
|
|
|
|
* list given as a parameter.
|
|
|
|
* @param list Copying source
|
|
|
|
*/
|
2017-07-28 05:18:43 +02: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
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Clear the list
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
void clear();
|
2010-10-28 22:21:05 +02:00
|
|
|
|
2022-01-04 15:48:08 +01:00
|
|
|
#ifdef _WIN32
|
2010-10-28 22:21:05 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Find editor used by default in Windows.
|
|
|
|
* Check if Notepad++ is installed and use it. If not, use Notepad.
|
|
|
|
*/
|
2017-07-28 05:18:43 +02:00
|
|
|
bool findDefaultWindowsEditor();
|
2022-01-04 15:48:08 +01:00
|
|
|
#endif
|
2010-10-28 22:21:05 +02:00
|
|
|
|
2011-02-25 10:45:04 +01:00
|
|
|
private:
|
|
|
|
|
2020-03-07 11:33:08 +01:00
|
|
|
bool checkAndAddApplication(const QString& appPath, const QString& name, const QString& parameters);
|
2015-11-18 17:34:29 +01:00
|
|
|
|
2009-06-02 22:32:58 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief List of applications
|
|
|
|
*
|
|
|
|
*/
|
2011-04-02 12:35:52 +02:00
|
|
|
QList<Application> mApplications;
|
2011-02-25 10:45:04 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Index of the default application.
|
|
|
|
*
|
|
|
|
*/
|
2011-02-25 10:45:04 +01:00
|
|
|
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
|