Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 1 | /* |
Marcel Baur | a43295d | 1998-10-18 14:11:42 +0000 | [diff] [blame] | 2 | * Notepad (notepad.h) |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 3 | * |
Marcel Baur | a43295d | 1998-10-18 14:11:42 +0000 | [diff] [blame] | 4 | * Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch> |
| 5 | * To be distributed under the Wine License |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #define MAX_STRING_LEN 255 |
| 9 | #define MAX_PATHNAME_LEN 1024 |
| 10 | #define MAX_LANGUAGE_NUMBER (NP_LAST_LANGUAGE - NP_FIRST_LANGUAGE) |
| 11 | |
Marcel Baur | 0328745 | 1999-02-14 11:28:37 +0000 | [diff] [blame] | 12 | #define HELPFILE "notepad.hlp" |
| 13 | #define LOGPREFIX ".LOG" |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 14 | #define DEFAULTICON OIC_WINEICON |
| 15 | |
| 16 | /* hide the following from winerc */ |
| 17 | #ifndef RC_INVOKED |
| 18 | |
Marcel Baur | 0328745 | 1999-02-14 11:28:37 +0000 | [diff] [blame] | 19 | #include "commdlg.h" |
| 20 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 21 | typedef struct |
| 22 | { |
| 23 | HANDLE hInstance; |
| 24 | HWND hMainWnd; |
Marcel Baur | 0328745 | 1999-02-14 11:28:37 +0000 | [diff] [blame] | 25 | HWND hFindReplaceDlg; |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 26 | HICON hMainIcon; |
| 27 | HICON hDefaultIcon; |
| 28 | HMENU hMainMenu; |
| 29 | HMENU hFileMenu; |
| 30 | HMENU hEditMenu; |
| 31 | HMENU hSearchMenu; |
| 32 | HMENU hLanguageMenu; |
| 33 | HMENU hHelpMenu; |
| 34 | LPCSTR lpszIniFile; |
| 35 | LPCSTR lpszIcoFile; |
| 36 | LPCSTR lpszLanguage; |
| 37 | UINT wStringTableOffset; |
Alexandre Julliard | 60ce85c | 1998-02-01 18:33:27 +0000 | [diff] [blame] | 38 | BOOL bWrapLongLines; |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 39 | CHAR szFindText[MAX_PATHNAME_LEN]; |
Marcel Baur | 0328745 | 1999-02-14 11:28:37 +0000 | [diff] [blame] | 40 | CHAR szReplaceText[MAX_PATHNAME_LEN]; |
Alexandre Julliard | 54c2711 | 1998-03-29 19:44:57 +0000 | [diff] [blame] | 41 | CHAR szFileName[MAX_PATHNAME_LEN]; |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 42 | CHAR szMarginTop[MAX_PATHNAME_LEN]; |
| 43 | CHAR szMarginBottom[MAX_PATHNAME_LEN]; |
| 44 | CHAR szMarginLeft[MAX_PATHNAME_LEN]; |
| 45 | CHAR szMarginRight[MAX_PATHNAME_LEN]; |
| 46 | CHAR szHeader[MAX_PATHNAME_LEN]; |
| 47 | CHAR szFooter[MAX_PATHNAME_LEN]; |
Marcel Baur | 0328745 | 1999-02-14 11:28:37 +0000 | [diff] [blame] | 48 | |
| 49 | FINDREPLACE find; |
| 50 | WORD nCommdlgFindReplaceMsg; |
| 51 | CHAR Buffer[12000]; |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 52 | } NOTEPAD_GLOBALS; |
| 53 | |
| 54 | extern NOTEPAD_GLOBALS Globals; |
| 55 | |
| 56 | /* function prototypes */ |
| 57 | |
Mike McCormack | 0e2d0e0 | 2000-07-23 14:22:47 +0000 | [diff] [blame] | 58 | void TrashBuffer(void); |
| 59 | void LoadBufferFromFile(LPCSTR lpFileName); |
| 60 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 61 | /* class names */ |
| 62 | |
Alexandre Julliard | 03468f7 | 1998-02-15 19:40:49 +0000 | [diff] [blame] | 63 | /* Resource names */ |
| 64 | extern CHAR STRING_MENU_Xx[]; |
| 65 | extern CHAR STRING_PAGESETUP_Xx[]; |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 66 | |
Alexandre Julliard | 03468f7 | 1998-02-15 19:40:49 +0000 | [diff] [blame] | 67 | #define STRINGID(id) (0x##id + Globals.wStringTableOffset) |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 68 | |
| 69 | #else /* RC_INVOKED */ |
| 70 | |
Alexandre Julliard | 03468f7 | 1998-02-15 19:40:49 +0000 | [diff] [blame] | 71 | #define STRINGID(id) id |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 72 | |
| 73 | #endif |
| 74 | |
| 75 | /* string table index */ |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 76 | #define IDS_LANGUAGE_ID STRINGID(00) |
| 77 | #define IDS_LANGUAGE_MENU_ITEM STRINGID(01) |
| 78 | #define IDS_NOTEPAD STRINGID(02) |
| 79 | #define IDS_TEXT_FILES_TXT STRINGID(03) |
| 80 | #define IDS_ALL_FILES STRINGID(04) |
| 81 | #define IDS_ERROR STRINGID(05) |
| 82 | #define IDS_WARNING STRINGID(06) |
| 83 | #define IDS_INFO STRINGID(07) |
| 84 | #define IDS_TOOLARGE STRINGID(08) |
| 85 | #define IDS_NOTEXT STRINGID(09) |
Marcel Baur | 0328745 | 1999-02-14 11:28:37 +0000 | [diff] [blame] | 86 | #define IDS_NOTSAVED STRINGID(0A) |
| 87 | #define IDS_NOTFOUND STRINGID(0B) |
| 88 | #define IDS_OUT_OF_MEMORY STRINGID(0C) |
| 89 | #define IDS_UNTITLED STRINGID(0D) |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 90 | |
Ulrich Weigand | 97d05c8 | 2000-01-29 22:07:03 +0000 | [diff] [blame] | 91 | #define IDS_PAGESETUP_HEADERVALUE STRINGID(0E) |
| 92 | #define IDS_PAGESETUP_FOOTERVALUE STRINGID(0F) |
| 93 | #define IDS_PAGESETUP_LEFTVALUE STRINGID(10) |
| 94 | #define IDS_PAGESETUP_RIGHTVALUE STRINGID(11) |
| 95 | #define IDS_PAGESETUP_TOPVALUE STRINGID(12) |
| 96 | #define IDS_PAGESETUP_BOTTOMVALUE STRINGID(13) |
Marcel Baur | a43295d | 1998-10-18 14:11:42 +0000 | [diff] [blame] | 97 | |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 98 | /* main menu */ |
| 99 | |
| 100 | #define NP_FILE_NEW 100 |
| 101 | #define NP_FILE_OPEN 101 |
| 102 | #define NP_FILE_SAVE 102 |
| 103 | #define NP_FILE_SAVEAS 103 |
| 104 | #define NP_FILE_PRINT 104 |
| 105 | #define NP_FILE_PAGESETUP 105 |
| 106 | #define NP_FILE_PRINTSETUP 106 |
| 107 | #define NP_FILE_EXIT 107 |
| 108 | |
| 109 | #define NP_EDIT_UNDO 200 |
| 110 | #define NP_EDIT_CUT 201 |
| 111 | #define NP_EDIT_COPY 202 |
| 112 | #define NP_EDIT_PASTE 203 |
| 113 | #define NP_EDIT_DELETE 204 |
| 114 | #define NP_EDIT_SELECTALL 205 |
| 115 | #define NP_EDIT_TIMEDATE 206 |
| 116 | #define NP_EDIT_WRAP 207 |
| 117 | |
| 118 | #define NP_SEARCH_SEARCH 300 |
| 119 | #define NP_SEARCH_NEXT 301 |
| 120 | |
| 121 | #define NP_FIRST_LANGUAGE 400 |
| 122 | #define NP_LAST_LANGUAGE 499 |
| 123 | |
| 124 | #define NP_HELP_CONTENTS 500 |
| 125 | #define NP_HELP_SEARCH 501 |
| 126 | #define NP_HELP_ON_HELP 502 |
| 127 | #define NP_HELP_LICENSE 503 |
| 128 | #define NP_HELP_NO_WARRANTY 504 |
| 129 | #define NP_HELP_ABOUT_WINE 505 |
| 130 | |
| 131 | |
| 132 | /* Dialog `Page Setup' */ |
| 133 | |
Alexandre Julliard | dadf78f | 1998-05-17 17:13:43 +0000 | [diff] [blame] | 134 | #define NP_PAGESETUP_HEAD 1000 |
| 135 | #define NP_PAGESETUP_HEAD_TXT 1001 |
| 136 | #define NP_PAGESETUP_TAIL 1002 |
| 137 | #define NP_PAGESETUP_TAIL_TXT 1003 |
Marcel Baur | a43295d | 1998-10-18 14:11:42 +0000 | [diff] [blame] | 138 | #define NP_PAGESETUP_LEFT 1004 |
| 139 | #define NP_PAGESETUP_LEFT_TXT 1005 |
| 140 | #define NP_PAGESETUP_RIGHT 1006 |
| 141 | #define NP_PAGESETUP_RIGHT_TXT 1007 |
| 142 | #define NP_PAGESETUP_TOP 1008 |
| 143 | #define NP_PAGESETUP_TOP_TXT 1009 |
| 144 | #define NP_PAGESETUP_BOTTOM 1010 |
| 145 | #define NP_PAGESETUP_BOTTOM_TXT 1011 |
| 146 | #define NP_HELP 1012 |
| 147 | #define NP_PAGESETUP_MARGIN 1013 |
Alexandre Julliard | 02e9008 | 1998-01-04 17:49:09 +0000 | [diff] [blame] | 148 | |
| 149 | /* Local Variables: */ |
| 150 | /* c-file-style: "GNU" */ |
| 151 | /* End: */ |