mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-23 15:27:48 -05:00
96 lines
3.3 KiB
C++
96 lines
3.3 KiB
C++
/*---------------------------------------------------------*\
|
|
| ProfileManager.h |
|
|
| |
|
|
| OpenRGB profile manager |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "filesystem.h"
|
|
|
|
class ProfileManagerInterface
|
|
{
|
|
public:
|
|
virtual bool SaveProfile
|
|
(
|
|
std::string profile_name,
|
|
bool sizes = false
|
|
) = 0;
|
|
virtual bool LoadProfile(std::string profile_name) = 0;
|
|
virtual bool LoadSizeFromProfile(std::string profile_name) = 0;
|
|
virtual void DeleteProfile(std::string profile_name) = 0;
|
|
virtual unsigned char * GetProfileListDescription() = 0;
|
|
|
|
std::vector<std::string> profile_list;
|
|
|
|
virtual bool LoadDeviceFromListWithOptions
|
|
(
|
|
std::vector<RGBController*>& temp_controllers,
|
|
std::vector<bool>& temp_controller_used,
|
|
RGBController* load_controller,
|
|
bool load_size,
|
|
bool load_settings
|
|
) = 0;
|
|
|
|
virtual std::vector<RGBController*> LoadProfileToList
|
|
(
|
|
std::string profile_name,
|
|
bool sizes = false
|
|
) = 0;
|
|
|
|
virtual void SetConfigurationDirectory(const filesystem::path& directory) = 0;
|
|
protected:
|
|
virtual ~ProfileManagerInterface() {};
|
|
};
|
|
|
|
class ProfileManager: public ProfileManagerInterface
|
|
{
|
|
public:
|
|
ProfileManager(const filesystem::path& config_dir);
|
|
~ProfileManager();
|
|
|
|
bool SaveProfile
|
|
(
|
|
std::string profile_name,
|
|
bool sizes = false
|
|
);
|
|
bool LoadProfile(std::string profile_name);
|
|
bool LoadSizeFromProfile(std::string profile_name);
|
|
void DeleteProfile(std::string profile_name);
|
|
unsigned char * GetProfileListDescription();
|
|
|
|
std::vector<std::string> profile_list;
|
|
|
|
bool LoadDeviceFromListWithOptions
|
|
(
|
|
std::vector<RGBController*>& temp_controllers,
|
|
std::vector<bool>& temp_controller_used,
|
|
RGBController* load_controller,
|
|
bool load_size,
|
|
bool load_settings
|
|
);
|
|
|
|
std::vector<RGBController*> LoadProfileToList
|
|
(
|
|
std::string profile_name,
|
|
bool sizes = false
|
|
);
|
|
|
|
void SetConfigurationDirectory(const filesystem::path& directory);
|
|
|
|
private:
|
|
filesystem::path configuration_directory;
|
|
|
|
void UpdateProfileList();
|
|
bool LoadProfileWithOptions
|
|
(
|
|
std::string profile_name,
|
|
bool load_size,
|
|
bool load_settings
|
|
);
|
|
};
|