mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 01:15:00 -06:00
4.53 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
33ccab7e72
commit
051769bbc5
46
CPP/7zip/UI/FileManager/RegistryUtils.h
Executable file
46
CPP/7zip/UI/FileManager/RegistryUtils.h
Executable file
@@ -0,0 +1,46 @@
|
||||
// RegistryUtils.h
|
||||
|
||||
#include "Common/StringConvert.h"
|
||||
|
||||
#ifndef __REGISTRYUTILS_H
|
||||
#define __REGISTRYUTILS_H
|
||||
|
||||
void SaveRegLang(const UString &langFile);
|
||||
void ReadRegLang(UString &langFile);
|
||||
|
||||
void SaveRegEditor(const UString &editorPath);
|
||||
void ReadRegEditor(UString &editorPath);
|
||||
|
||||
void SaveShowDots(bool showDots);
|
||||
bool ReadShowDots();
|
||||
|
||||
void SaveShowRealFileIcons(bool show);
|
||||
bool ReadShowRealFileIcons();
|
||||
|
||||
void SaveShowSystemMenu(bool showSystemMenu);
|
||||
bool ReadShowSystemMenu();
|
||||
|
||||
void SaveFullRow(bool enable);
|
||||
bool ReadFullRow();
|
||||
|
||||
void SaveShowGrid(bool enable);
|
||||
bool ReadShowGrid();
|
||||
|
||||
void SaveAlternativeSelection(bool enable);
|
||||
bool ReadAlternativeSelection();
|
||||
|
||||
// void SaveLockMemoryAdd(bool enable);
|
||||
// bool ReadLockMemoryAdd();
|
||||
|
||||
bool ReadLockMemoryEnable();
|
||||
void SaveLockMemoryEnable(bool enable);
|
||||
|
||||
/*
|
||||
void SaveSingleClick(bool enable);
|
||||
bool ReadSingleClick();
|
||||
|
||||
void SaveUnderline(bool enable);
|
||||
bool ReadUnderline();
|
||||
*/
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user