[KERNEL32-CONSRV]
[reactos.git] / reactos / win32ss / user / consrv / frontends / gui / guisettings.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS Console Server DLL
4 * FILE: win32ss/user/consrv/guisettings.h
5 * PURPOSE: GUI front-end settings management
6 * PROGRAMMERS: Johannes Anderwald
7 * Hermes Belusca-Maito (hermes.belusca@sfr.fr)
8 *
9 * NOTE: Also used by console.dll
10 */
11
12 #pragma once
13
14 #ifndef WM_APP
15 #define WM_APP 0x8000
16 #endif
17 #define PM_APPLY_CONSOLE_INFO (WM_APP + 100)
18
19 /* STRUCTURES *****************************************************************/
20
21 typedef struct _GUI_CONSOLE_INFO
22 {
23 // FONTSIGNATURE FontSignature;
24 WCHAR FaceName[LF_FACESIZE];
25 UINT FontFamily;
26 DWORD FontSize;
27 DWORD FontWeight;
28 BOOL UseRasterFonts;
29
30 BOOL FullScreen; /* Whether the console is displayed in full-screen or windowed mode */
31 // ULONG HardwareState; /* _GDI_MANAGED, _DIRECT */
32
33 WORD ShowWindow;
34 BOOL AutoPosition;
35 POINT WindowOrigin;
36 } GUI_CONSOLE_INFO, *PGUI_CONSOLE_INFO;
37
38 #ifndef CONSOLE_H__ // If we aren't included by console.dll
39
40 typedef struct _GUI_CONSOLE_DATA
41 {
42 CRITICAL_SECTION Lock;
43 HANDLE hGuiInitEvent;
44 BOOL WindowSizeLock;
45 POINT OldCursor;
46
47 HWND hWindow; /* Handle to the console's window */
48 HICON hIcon; /* Handle to the console's icon (big) */
49 HICON hIconSm; /* Handle to the console's icon (small) */
50 BOOL IgnoreNextMouseSignal; /* Used in cases where we don't want to treat a mouse signal */
51
52 BOOL IsCloseButtonEnabled; /* TRUE if the Close button and the corresponding system menu item are enabled, FALSE otherwise */
53 UINT cmdIdLow ; /* Lowest menu id of the user-reserved menu id range */
54 UINT cmdIdHigh; /* Highest menu id of the user-reserved menu id range */
55
56 // COLORREF Colors[16];
57
58 // PVOID ScreenBuffer; /* Hardware screen buffer */
59
60 HFONT Font;
61 UINT CharWidth;
62 UINT CharHeight;
63
64 PCONSOLE Console; /* Pointer to the owned console */
65 GUI_CONSOLE_INFO GuiInfo; /* GUI terminal settings */
66 } GUI_CONSOLE_DATA, *PGUI_CONSOLE_DATA;
67
68 /* FUNCTIONS ******************************************************************/
69
70 BOOL
71 GuiConsoleReadUserSettings(IN OUT PGUI_CONSOLE_INFO TermInfo,
72 IN LPCWSTR ConsoleTitle,
73 IN DWORD ProcessId);
74 BOOL
75 GuiConsoleWriteUserSettings(IN OUT PGUI_CONSOLE_INFO TermInfo,
76 IN LPCWSTR ConsoleTitle,
77 IN DWORD ProcessId);
78 VOID
79 GuiConsoleGetDefaultSettings(IN OUT PGUI_CONSOLE_INFO TermInfo,
80 IN DWORD ProcessId);
81 VOID
82 GuiConsoleShowConsoleProperties(PGUI_CONSOLE_DATA GuiData,
83 BOOL Defaults);
84 NTSTATUS
85 GuiApplyUserSettings(PGUI_CONSOLE_DATA GuiData,
86 HANDLE hClientSection,
87 BOOL SaveSettings);
88
89 #endif
90
91 /* EOF */