-
Notifications
You must be signed in to change notification settings - Fork 1
/
registry.h
69 lines (58 loc) · 1.56 KB
/
registry.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* PROJECT: PAINT for ReactOS
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
* PURPOSE: Offering functions dealing with registry values
* COPYRIGHT: Copyright 2015 Benedikt Freisen <b.freisen@gmx.net>
*/
#pragma once
#define MAX_RECENT_FILES 4
class RegistrySettings
{
private:
void LoadPresets(INT nCmdShow);
public:
DWORD BMPHeight;
DWORD BMPWidth;
DWORD GridExtent;
DWORD NoStretching;
DWORD ShowThumbnail;
DWORD SnapToGrid;
DWORD ThumbHeight;
DWORD ThumbWidth;
DWORD ThumbXPos;
DWORD ThumbYPos;
DWORD UnitSetting;
WINDOWPLACEMENT WindowPlacement;
CStringW strFiles[MAX_RECENT_FILES];
CStringW strFontName;
DWORD PointSize;
DWORD Bold;
DWORD Italic;
DWORD Underline;
DWORD CharSet;
DWORD FontsPositionX;
DWORD FontsPositionY;
DWORD ShowTextTool;
DWORD ShowStatusBar;
DWORD ShowPalette;
DWORD ShowToolBox;
DWORD Bar1ID;
DWORD Bar2ID;
// Values for Bar1ID.
// I think these values are Win2k3 mspaint compatible but sometimes not working...
#define BAR1ID_TOP 0x0000e81b
#define BAR1ID_BOTTOM 0x0000e81e
// Values for Bar2ID.
// I think these values are Win2k3 mspaint compatible but sometimes not working...
#define BAR2ID_LEFT 0x0000e81c
#define BAR2ID_RIGHT 0x0000e81d
enum WallpaperStyle {
TILED,
CENTERED,
STRETCHED
};
static void SetWallpaper(LPCWSTR szFileName, WallpaperStyle style);
void Load(INT nCmdShow);
void Store();
void SetMostRecentFile(LPCWSTR szPathName);
};