shell32: Add application folder icon.
[wine.git] / programs / regedit / main.h
blobae034405646863c3e8611456fd1b953cb8a05203
1 /*
2 * Regedit definitions
4 * Copyright (C) 2002 Robert Dickenson <robd@reactos.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __MAIN_H__
22 #define __MAIN_H__
24 #include <stdio.h>
25 #include "resource.h"
27 #define STATUS_WINDOW 2001
28 #define TREE_WINDOW 2002
29 #define LIST_WINDOW 2003
31 #define SPLIT_WIDTH 5
33 #define MAX_NEW_KEY_LEN 128
34 #define KEY_MAX_LEN 1024
36 #define REG_FORMAT_5 1
37 #define REG_FORMAT_4 2
39 /* Pop-Up Menus */
40 #define PM_COMPUTER 0
41 #define PM_TREEVIEW 1
42 #define PM_NEW_VALUE 2
43 #define PM_MODIFY_VALUE 3
45 /* HexEdit Class */
46 #define HEM_SETDATA (WM_USER+0)
47 #define HEM_GETDATA (WM_USER+1)
49 /******************************************************************************/
51 enum OPTION_FLAGS {
52 OPTIONS_AUTO_REFRESH = 0x01,
53 OPTIONS_READ_ONLY_MODE = 0x02,
54 OPTIONS_CONFIRM_ON_DELETE = 0x04,
55 OPTIONS_SAVE_ON_EXIT = 0x08,
56 OPTIONS_DISPLAY_BINARY_DATA = 0x10,
57 OPTIONS_VIEW_TREE_ONLY = 0x20,
58 OPTIONS_VIEW_DATA_ONLY = 0x40,
61 enum SEARCH_FLAGS {
62 SEARCH_WHOLE = 0x01,
63 SEARCH_KEYS = 0x02,
64 SEARCH_VALUES = 0x04,
65 SEARCH_CONTENT = 0x08,
68 typedef struct {
69 HWND hWnd;
70 HWND hTreeWnd;
71 HWND hListWnd;
72 int nFocusPanel; /* 0: left 1: right */
73 int nSplitPos;
74 WINDOWPLACEMENT pos;
75 WCHAR szPath[MAX_PATH];
76 } ChildWnd;
77 extern ChildWnd* g_pChildWnd;
79 typedef struct tagLINE_INFO
81 WCHAR *name;
82 DWORD dwValType;
83 void *val;
84 size_t val_len;
85 } LINE_INFO;
87 /*******************************************************************************
88 * Global Variables:
90 extern HINSTANCE hInst;
91 extern HWND hFrameWnd;
92 extern HMENU hMenuFrame;
93 extern HWND hStatusBar;
94 extern HMENU hPopupMenus;
95 extern HFONT hFont;
96 extern enum OPTION_FLAGS Options;
98 extern WCHAR szTitle[];
99 extern const WCHAR szFrameClass[];
100 extern const WCHAR szChildClass[];
101 extern const WCHAR szHexEditClass[];
102 extern WCHAR g_pszDefaultValueName[];
104 extern DWORD g_columnToSort;
105 extern BOOL g_invertSort;
106 extern WCHAR *g_currentPath;
107 extern HKEY g_currentRootKey;
109 /* Registry class names and their indexes */
110 extern const WCHAR* reg_class_namesW[];
111 #define INDEX_HKEY_LOCAL_MACHINE 0
112 #define INDEX_HKEY_USERS 1
113 #define INDEX_HKEY_CLASSES_ROOT 2
114 #define INDEX_HKEY_CURRENT_CONFIG 3
115 #define INDEX_HKEY_CURRENT_USER 4
116 #define INDEX_HKEY_DYN_DATA 5
118 /* about.c */
119 void ShowAboutBox(HWND hWnd);
121 /* childwnd.c */
122 LPWSTR GetItemFullPath(HWND hwndTV, HTREEITEM hItem, BOOL bFull);
123 LRESULT CALLBACK ChildWndProc(HWND, UINT, WPARAM, LPARAM);
125 /* edit.c */
126 BOOL CreateKey(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPWSTR newKeyName);
127 BOOL CreateValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, DWORD valueType, LPWSTR valueName);
128 BOOL ModifyValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR valueName);
129 BOOL DeleteKey(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath);
130 BOOL DeleteValue(HWND hwnd, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR valueName);
131 BOOL RenameValue(HWND hwnd, HKEY hRootKey, LPCWSTR keyPath, LPCWSTR oldName, LPCWSTR newName);
132 BOOL RenameKey(HWND hwnd, HKEY hRootKey, LPCWSTR keyPath, LPCWSTR newName);
133 int WINAPIV messagebox(HWND hwnd, int buttons, int titleId, int resId, ...);
135 /* framewnd.c */
136 LRESULT CALLBACK FrameWndProc(HWND, UINT, WPARAM, LPARAM);
137 void SetupStatusBar(HWND hWnd, BOOL bResize);
138 void UpdateStatusBar(void);
140 /* hexedit.c */
141 void HexEdit_Register(void);
143 /* listview.c */
144 BOOL update_listview_path(const WCHAR *path);
145 void format_value_data(HWND hwndLV, int index, DWORD type, void *data, DWORD size);
146 int AddEntryToList(HWND hwndLV, WCHAR *Name, DWORD dwValType, void *ValBuf, DWORD dwCount, int pos);
147 void OnGetDispInfo(NMLVDISPINFOW *plvdi);
148 HWND CreateListView(HWND hwndParent, UINT id);
149 int CALLBACK CompareFunc(LPARAM lParam1, LPARAM lParam2, LPARAM lParamSort);
150 BOOL RefreshListView(HWND hwndLV, HKEY hKeyRoot, LPCWSTR keyPath, LPCWSTR highlightValue);
151 HWND StartValueRename(HWND hwndLV);
152 LPWSTR GetItemText(HWND hwndLV, UINT item);
153 WCHAR *GetValueName(HWND hwndLV);
154 BOOL ListWndNotifyProc(HWND hWnd, WPARAM wParam, LPARAM lParam, BOOL *Result);
155 BOOL IsDefaultValue(HWND hwndLV, int i);
157 /* regedit.c */
158 void WINAPIV output_message(unsigned int id, ...);
159 void WINAPIV error_exit(unsigned int id, ...);
161 /* regproc.c */
162 void *heap_xalloc(size_t size);
163 void *heap_xrealloc(void *buf, size_t size);
164 char *GetMultiByteString(const WCHAR *strW);
165 BOOL import_registry_file(FILE *reg_file);
166 void delete_registry_key(WCHAR *reg_key_name);
167 BOOL export_registry_key(WCHAR *file_name, WCHAR *path, DWORD format);
169 /* treeview.c */
170 HWND CreateTreeView(HWND hwndParent, LPWSTR pHostName, UINT id);
171 BOOL RefreshTreeView(HWND hWndTV);
172 BOOL OnTreeExpanding(HWND hWnd, NMTREEVIEWW* pnmtv);
173 LPWSTR GetItemPath(HWND hwndTV, HTREEITEM hItem, HKEY* phRootKey);
174 BOOL DeleteNode(HWND hwndTV, HTREEITEM hItem);
175 HTREEITEM InsertNode(HWND hwndTV, HTREEITEM hItem, LPWSTR name);
176 HWND StartKeyRename(HWND hwndTV);
177 HTREEITEM FindPathInTree(HWND hwndTV, LPCWSTR lpKeyName);
178 HTREEITEM FindNext(HWND hwndTV, HTREEITEM hItem, LPCWSTR sstring, int mode, int *row);
180 #endif /* __MAIN_H__ */