Sync with trunk head (r49139)
[reactos.git] / base / applications / notepad / main.h
1 /*
2 * Notepad (notepad.h)
3 *
4 * Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
5 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #define SIZEOF(a) (sizeof(a)/sizeof((a)[0]))
23
24 #include "notepad_res.h"
25
26 #define EDIT_STYLE_WRAP (WS_CHILD | WS_VSCROLL \
27 | ES_AUTOVSCROLL | ES_MULTILINE | ES_NOHIDESEL)
28 #define EDIT_STYLE (EDIT_STYLE_WRAP | WS_HSCROLL | ES_AUTOHSCROLL)
29
30 #define EDIT_CLASS _T("EDIT")
31
32 #define MAX_STRING_LEN 255
33
34 #define ENCODING_ANSI 0
35 #define ENCODING_UNICODE 1
36 #define ENCODING_UNICODE_BE 2
37 #define ENCODING_UTF8 3
38
39 #define EOLN_CRLF 0
40 #define EOLN_LF 1
41 #define EOLN_CR 2
42
43 typedef struct
44 {
45 HINSTANCE hInstance;
46 HWND hMainWnd;
47 HWND hFindReplaceDlg;
48 HWND hEdit;
49 HWND hStatusBar;
50 HFONT hFont; /* Font used by the edit control */
51 HMENU hMenu;
52 LOGFONT lfFont;
53 BOOL bWrapLongLines;
54 BOOL bShowStatusBar;
55 TCHAR szFindText[MAX_PATH];
56 TCHAR szReplaceText[MAX_PATH];
57 TCHAR szFileName[MAX_PATH];
58 TCHAR szFileTitle[MAX_PATH];
59 TCHAR szFilter[2 * MAX_STRING_LEN + 100];
60 TCHAR szMarginTop[MAX_PATH];
61 TCHAR szMarginBottom[MAX_PATH];
62 TCHAR szMarginLeft[MAX_PATH];
63 TCHAR szMarginRight[MAX_PATH];
64 TCHAR szHeader[MAX_PATH];
65 TCHAR szFooter[MAX_PATH];
66 TCHAR szStatusBarLineCol[MAX_PATH];
67 int iEncoding;
68 int iEoln;
69
70 FINDREPLACE find;
71 WNDPROC EditProc;
72 RECT main_rect;
73 } NOTEPAD_GLOBALS;
74
75 extern NOTEPAD_GLOBALS Globals;
76
77 VOID SetFileName(LPCTSTR szFileName);
78
79 /* from text.c */
80 BOOL ReadText(HANDLE hFile, LPWSTR *ppszText, DWORD *pdwTextLen, int *piEncoding, int *piEoln);
81 BOOL WriteText(HANDLE hFile, LPCWSTR pszText, DWORD dwTextLen, int iEncoding, int iEoln);
82
83 /* from settings.c */
84 void LoadSettings(void);
85 void SaveSettings(void);
86
87 /* from main.c */
88 BOOL NOTEPAD_FindNext(FINDREPLACE *, BOOL , BOOL );
89 VOID NOTEPAD_EnableSearchMenu(VOID);