* Added new Source Group type SourceGroupCustomCommand to UI and ProjectSettings * The Source Group executes a specified command on every source file * The variables $SOURCE_PATH, $PROJECT_PATH, $DB_PATH, $STORAGE_VERSION can be passed * The commands are executed after all other source groups finished indexing * The command is executed with working directory set to project directory * Errors during command execution are shown as status update and in the Status View * SourceGroupCustomCommand cannot be partially cleared, when one file needs clearing the project must be fully re-indexed
35 lines
952 B
C++
35 lines
952 B
C++
#ifndef SOURCE_GROUP_SETTINGS_WITH_SOURCE_PATHS_H
|
|
#define SOURCE_GROUP_SETTINGS_WITH_SOURCE_PATHS_H
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "SourceGroupSettingsBase.h"
|
|
|
|
class ConfigManager;
|
|
class FilePath;
|
|
|
|
class SourceGroupSettingsWithSourcePaths
|
|
: virtual public SourceGroupSettingsBase
|
|
{
|
|
public:
|
|
SourceGroupSettingsWithSourcePaths();
|
|
virtual ~SourceGroupSettingsWithSourcePaths() = default;
|
|
|
|
bool equals(std::shared_ptr<SourceGroupSettingsWithSourcePaths> other) const;
|
|
|
|
std::vector<FilePath> getSourcePaths() const;
|
|
std::vector<FilePath> getSourcePathsExpandedAndAbsolute() const;
|
|
void setSourcePaths(const std::vector<FilePath>& sourcePaths);
|
|
|
|
protected:
|
|
void load(std::shared_ptr<const ConfigManager> config, const std::string& key);
|
|
void save(std::shared_ptr<ConfigManager> config, const std::string& key);
|
|
|
|
private:
|
|
std::vector<FilePath> m_sourcePaths;
|
|
};
|
|
|
|
#endif // SOURCE_GROUP_SETTINGS_WITH_SOURCE_PATHS_H
|