mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 02:28:17 +08:00
7fd5e18ef4
* Commented out enable/disable for File Explorer * Revert UI changes * Disable the toggles if PT is not running elevated * Fixed compilation errors in tests * Cleaned up preview pane code to separate thumbnail and preview panes as separate classes * Fixed broken settings format and added elevation check and registry updated required logic. Preview Handler tested manually working, Thumbnail Enable/Disable needs to be fixed * Updated Thumbnail enable/disable logic and added warning messages * Update tests for File Explorer * Fixed RegGetValue failing in Release config * Renamed new classes * Split wrappers for disable to work * Modified enabled flag check to also check if user is on new settings. Fixed casing issue in powerpreview.h that caused a dialog prompt on first launch after install * Update fontweight and margin * Fixed release build not working * Move UseNewSettings usage to powerpreview.cpp to avoid tests breaking. For new settings the enable check is done in constructor and for old settings it is done in enable * Update src/core/Microsoft.PowerToys.Settings.UI/Strings/en-us/Resources.resw Co-authored-by: htcfreek <61519853+htcfreek@users.noreply.github.com> * Update src/core/Microsoft.PowerToys.Settings.UI/Strings/en-us/Resources.resw Co-authored-by: htcfreek <61519853+htcfreek@users.noreply.github.com> * Update src/core/Microsoft.PowerToys.Settings.UI/Strings/en-us/Resources.resw Co-authored-by: htcfreek <61519853+htcfreek@users.noreply.github.com> * Moved dup code to method * Use correct versions of general settings for backwards compat test Co-authored-by: htcfreek <61519853+htcfreek@users.noreply.github.com>
40 lines
1.5 KiB
C++
40 lines
1.5 KiB
C++
#pragma once
|
|
#include <pch.h>
|
|
#include <string>
|
|
#include "Generated Files/resource.h"
|
|
#include <settings_objects.h>
|
|
#include "registry_wrapper_interface.h"
|
|
|
|
namespace PowerPreviewSettings
|
|
{
|
|
// PowerToy Windows Explorer File Preview Settings.
|
|
class FileExplorerPreviewSettings
|
|
{
|
|
private:
|
|
bool m_toggleSettingEnabled;
|
|
std::wstring m_toggleSettingName;
|
|
std::wstring m_toggleSettingDescription;
|
|
std::wstring m_registryValueData;
|
|
LPCWSTR m_clsid;
|
|
|
|
protected:
|
|
RegistryWrapperIface* m_registryWrapper;
|
|
|
|
public:
|
|
FileExplorerPreviewSettings(bool toggleSettingEnabled, const std::wstring& toggleSettingName, const std::wstring& toggleSettingDescription, LPCWSTR clsid, const std::wstring& registryValueData, RegistryWrapperIface* registryWrapper);
|
|
~FileExplorerPreviewSettings();
|
|
|
|
virtual bool GetToggleSettingState() const;
|
|
virtual void UpdateToggleSettingState(bool state);
|
|
virtual std::wstring GetToggleSettingName() const;
|
|
virtual std::wstring GetToggleSettingDescription() const;
|
|
virtual LPCWSTR GetCLSID() const;
|
|
virtual std::wstring GetRegistryValueData() const;
|
|
virtual void LoadState(PowerToysSettings::PowerToyValues& settings);
|
|
virtual bool UpdateState(PowerToysSettings::PowerToyValues& settings, bool enabled, bool isElevated);
|
|
virtual LONG Enable() = 0;
|
|
virtual LONG Disable() = 0;
|
|
virtual bool CheckRegistryState() = 0;
|
|
};
|
|
}
|