Sync with trunk (r48123)
[reactos.git] / base / applications / wordpad / wordpad.c
1 /*
2 * Wordpad implementation
3 *
4 * Copyright 2004 by Krzysztof Foltman
5 * Copyright 2007-2008 by Alexander N. Sørnes <alex@thehandofagony.com>
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 St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #define WIN32_LEAN_AND_MEAN
23 #define _WIN32_IE 0x0400
24
25 #include <stdarg.h>
26 #include <stdlib.h>
27 #include <ctype.h>
28 #include <stdio.h>
29 #include <assert.h>
30
31 #include <windows.h>
32 #include <richedit.h>
33 #include <commctrl.h>
34 #include <commdlg.h>
35 #include <shellapi.h>
36 #include <math.h>
37 #include <errno.h>
38
39 #include "wine/unicode.h"
40 #include "wordpad.h"
41
42 #ifdef NONAMELESSUNION
43 # define U(x) (x).u
44 # define U2(x) (x).u2
45 # define U3(x) (x).u3
46 #else
47 # define U(x) (x)
48 # define U2(x) (x)
49 # define U3(x) (x)
50 #endif
51
52 /* use LoadString */
53 static const WCHAR wszAppTitle[] = {'W','i','n','e',' ','W','o','r','d','p','a','d',0};
54
55 static const WCHAR wszMainWndClass[] = {'W','O','R','D','P','A','D','T','O','P',0};
56
57 static const WCHAR stringFormat[] = {'%','2','d','\0'};
58
59 const WCHAR wszPreviewWndClass[] = {'P','r','t','P','r','e','v','i','e','w',0};
60 LRESULT CALLBACK preview_proc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
61
62 static HWND hMainWnd;
63 static HWND hEditorWnd;
64 static HWND hFindWnd;
65 static HMENU hPopupMenu;
66 static HMENU hColorPopupMenu;
67
68 static UINT ID_FINDMSGSTRING;
69
70 static DWORD wordWrap[2];
71 static DWORD barState[2];
72 static WPARAM fileFormat = SF_RTF;
73
74 static WCHAR wszFileName[MAX_PATH];
75 static WCHAR wszFilter[MAX_STRING_LEN*4+6*3+5];
76 static WCHAR wszDefaultFileName[MAX_STRING_LEN];
77 static WCHAR wszSaveChanges[MAX_STRING_LEN];
78 static WCHAR units_cmW[MAX_STRING_LEN];
79 static WCHAR units_inW[MAX_STRING_LEN];
80 static WCHAR units_inchW[MAX_STRING_LEN];
81 static WCHAR units_ptW[MAX_STRING_LEN];
82
83 static LRESULT OnSize( HWND hWnd, WPARAM wParam, LPARAM lParam );
84
85 typedef enum
86 {
87 UNIT_CM,
88 UNIT_INCH,
89 UNIT_PT
90 } UNIT;
91
92 /* Load string resources */
93 static void DoLoadStrings(void)
94 {
95 LPWSTR p = wszFilter;
96 static const WCHAR files_rtf[] = {'*','.','r','t','f','\0'};
97 static const WCHAR files_txt[] = {'*','.','t','x','t','\0'};
98 static const WCHAR files_all[] = {'*','.','*','\0'};
99
100 HINSTANCE hInstance = GetModuleHandleW(0);
101
102 LoadStringW(hInstance, STRING_RICHTEXT_FILES_RTF, p, MAX_STRING_LEN);
103 p += lstrlenW(p) + 1;
104 lstrcpyW(p, files_rtf);
105 p += lstrlenW(p) + 1;
106 LoadStringW(hInstance, STRING_TEXT_FILES_TXT, p, MAX_STRING_LEN);
107 p += lstrlenW(p) + 1;
108 lstrcpyW(p, files_txt);
109 p += lstrlenW(p) + 1;
110 LoadStringW(hInstance, STRING_TEXT_FILES_UNICODE_TXT, p, MAX_STRING_LEN);
111 p += lstrlenW(p) + 1;
112 lstrcpyW(p, files_txt);
113 p += lstrlenW(p) + 1;
114 LoadStringW(hInstance, STRING_ALL_FILES, p, MAX_STRING_LEN);
115 p += lstrlenW(p) + 1;
116 lstrcpyW(p, files_all);
117 p += lstrlenW(p) + 1;
118 *p = '\0';
119
120 p = wszDefaultFileName;
121 LoadStringW(hInstance, STRING_DEFAULT_FILENAME, p, MAX_STRING_LEN);
122
123 p = wszSaveChanges;
124 LoadStringW(hInstance, STRING_PROMPT_SAVE_CHANGES, p, MAX_STRING_LEN);
125
126 LoadStringW(hInstance, STRING_UNITS_CM, units_cmW, MAX_STRING_LEN);
127 LoadStringW(hInstance, STRING_UNITS_IN, units_inW, MAX_STRING_LEN);
128 LoadStringW(hInstance, STRING_UNITS_INCH, units_inchW, MAX_STRING_LEN);
129 LoadStringW(hInstance, STRING_UNITS_PT, units_ptW, MAX_STRING_LEN);
130 }
131
132 /* Show a message box with resource strings */
133 static int MessageBoxWithResStringW(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType)
134 {
135 MSGBOXPARAMSW params;
136
137 params.cbSize = sizeof(params);
138 params.hwndOwner = hWnd;
139 params.hInstance = GetModuleHandleW(0);
140 params.lpszText = lpText;
141 params.lpszCaption = lpCaption;
142 params.dwStyle = uType;
143 params.lpszIcon = NULL;
144 params.dwContextHelpId = 0;
145 params.lpfnMsgBoxCallback = NULL;
146 params.dwLanguageId = 0;
147 return MessageBoxIndirectW(&params);
148 }
149
150
151 static void AddButton(HWND hwndToolBar, int nImage, int nCommand)
152 {
153 TBBUTTON button;
154
155 ZeroMemory(&button, sizeof(button));
156 button.iBitmap = nImage;
157 button.idCommand = nCommand;
158 button.fsState = TBSTATE_ENABLED;
159 button.fsStyle = TBSTYLE_BUTTON;
160 button.dwData = 0;
161 button.iString = -1;
162 SendMessageW(hwndToolBar, TB_ADDBUTTONSW, 1, (LPARAM)&button);
163 }
164
165 static void AddSeparator(HWND hwndToolBar)
166 {
167 TBBUTTON button;
168
169 ZeroMemory(&button, sizeof(button));
170 button.iBitmap = -1;
171 button.idCommand = 0;
172 button.fsState = 0;
173 button.fsStyle = TBSTYLE_SEP;
174 button.dwData = 0;
175 button.iString = -1;
176 SendMessageW(hwndToolBar, TB_ADDBUTTONSW, 1, (LPARAM)&button);
177 }
178
179 static DWORD CALLBACK stream_in(DWORD_PTR cookie, LPBYTE buffer, LONG cb, LONG *pcb)
180 {
181 HANDLE hFile = (HANDLE)cookie;
182 DWORD read;
183
184 if(!ReadFile(hFile, buffer, cb, &read, 0))
185 return 1;
186
187 *pcb = read;
188
189 return 0;
190 }
191
192 static DWORD CALLBACK stream_out(DWORD_PTR cookie, LPBYTE buffer, LONG cb, LONG *pcb)
193 {
194 DWORD written;
195 int ret;
196 HANDLE hFile = (HANDLE)cookie;
197
198 ret = WriteFile(hFile, buffer, cb, &written, 0);
199
200 if(!ret || (cb != written))
201 return 1;
202
203 *pcb = cb;
204
205 return 0;
206 }
207
208 LPWSTR file_basename(LPWSTR path)
209 {
210 LPWSTR pos = path + lstrlenW(path);
211
212 while(pos > path)
213 {
214 if(*pos == '\\' || *pos == '/')
215 {
216 pos++;
217 break;
218 }
219 pos--;
220 }
221 return pos;
222 }
223
224 static void set_caption(LPCWSTR wszNewFileName)
225 {
226 static const WCHAR wszSeparator[] = {' ','-',' '};
227 WCHAR *wszCaption;
228 SIZE_T length = 0;
229
230 if(!wszNewFileName)
231 wszNewFileName = wszDefaultFileName;
232 else
233 wszNewFileName = file_basename((LPWSTR)wszNewFileName);
234
235 wszCaption = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
236 lstrlenW(wszNewFileName)*sizeof(WCHAR)+sizeof(wszSeparator)+sizeof(wszAppTitle));
237
238 if(!wszCaption)
239 return;
240
241 memcpy(wszCaption, wszNewFileName, lstrlenW(wszNewFileName)*sizeof(WCHAR));
242 length += lstrlenW(wszNewFileName);
243 memcpy(wszCaption + length, wszSeparator, sizeof(wszSeparator));
244 length += sizeof(wszSeparator) / sizeof(WCHAR);
245 memcpy(wszCaption + length, wszAppTitle, sizeof(wszAppTitle));
246
247 SetWindowTextW(hMainWnd, wszCaption);
248
249 HeapFree(GetProcessHeap(), 0, wszCaption);
250 }
251
252 static BOOL validate_endptr(LPCWSTR endptr, UNIT *punit)
253 {
254 if(punit != NULL)
255 *punit = UNIT_CM;
256 if(!endptr)
257 return FALSE;
258 if(!*endptr)
259 return TRUE;
260
261 while(*endptr == ' ')
262 endptr++;
263
264 if(punit == NULL)
265 return *endptr == '\0';
266
267 if(!lstrcmpW(endptr, units_cmW))
268 {
269 *punit = UNIT_CM;
270 endptr += lstrlenW(units_cmW);
271 }
272 else if (!lstrcmpW(endptr, units_inW))
273 {
274 *punit = UNIT_INCH;
275 endptr += lstrlenW(units_inW);
276 }
277 else if (!lstrcmpW(endptr, units_inchW))
278 {
279 *punit = UNIT_INCH;
280 endptr += lstrlenW(units_inchW);
281 }
282 else if (!lstrcmpW(endptr, units_ptW))
283 {
284 *punit = UNIT_PT;
285 endptr += lstrlenW(units_ptW);
286 }
287
288 return *endptr == '\0';
289 }
290
291 static BOOL number_from_string(LPCWSTR string, float *num, UNIT *punit)
292 {
293 double ret;
294 WCHAR *endptr;
295
296 *num = 0;
297 errno = 0;
298 ret = wcstod(string, &endptr);
299
300 if (punit != NULL)
301 *punit = UNIT_CM;
302 if((ret == 0 && errno != 0) || endptr == string || !validate_endptr(endptr, punit))
303 {
304 return FALSE;
305 } else
306 {
307 *num = (float)ret;
308 return TRUE;
309 }
310 }
311
312 static void set_size(float size)
313 {
314 CHARFORMAT2W fmt;
315
316 ZeroMemory(&fmt, sizeof(fmt));
317 fmt.cbSize = sizeof(fmt);
318 fmt.dwMask = CFM_SIZE;
319 fmt.yHeight = (int)(size * 20.0);
320 SendMessageW(hEditorWnd, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
321 }
322
323 static void on_sizelist_modified(HWND hwndSizeList, LPWSTR wszNewFontSize)
324 {
325 WCHAR sizeBuffer[MAX_STRING_LEN];
326 CHARFORMAT2W format;
327
328 ZeroMemory(&format, sizeof(format));
329 format.cbSize = sizeof(format);
330 SendMessageW(hEditorWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&format);
331
332 wsprintfW(sizeBuffer, stringFormat, format.yHeight / 20);
333 if(lstrcmpW(sizeBuffer, wszNewFontSize))
334 {
335 float size = 0;
336 if(number_from_string(wszNewFontSize, &size, NULL)
337 && size > 0)
338 {
339 set_size(size);
340 } else
341 {
342 SetWindowTextW(hwndSizeList, sizeBuffer);
343 MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_INVALID_NUMBER),
344 wszAppTitle, MB_OK | MB_ICONINFORMATION);
345 }
346 }
347 }
348
349 static void add_size(HWND hSizeListWnd, unsigned size)
350 {
351 WCHAR buffer[3];
352 COMBOBOXEXITEMW cbItem;
353 cbItem.mask = CBEIF_TEXT;
354 cbItem.iItem = -1;
355
356 wsprintfW(buffer, stringFormat, size);
357 cbItem.pszText = buffer;
358 SendMessageW(hSizeListWnd, CBEM_INSERTITEMW, 0, (LPARAM)&cbItem);
359 }
360
361 static void populate_size_list(HWND hSizeListWnd)
362 {
363 HWND hReBarWnd = GetDlgItem(hMainWnd, IDC_REBAR);
364 HWND hFontListWnd = GetDlgItem(hReBarWnd, IDC_FONTLIST);
365 COMBOBOXEXITEMW cbFontItem;
366 CHARFORMAT2W fmt;
367 HWND hListEditWnd = (HWND)SendMessageW(hSizeListWnd, CBEM_GETEDITCONTROL, 0, 0);
368 HDC hdc = GetDC(hMainWnd);
369 static const unsigned choices[] = {8,9,10,11,12,14,16,18,20,22,24,26,28,36,48,72};
370 WCHAR buffer[3];
371 size_t i;
372 DWORD fontStyle;
373
374 ZeroMemory(&fmt, sizeof(fmt));
375 fmt.cbSize = sizeof(fmt);
376 SendMessageW(hEditorWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
377
378 cbFontItem.mask = CBEIF_LPARAM;
379 cbFontItem.iItem = SendMessageW(hFontListWnd, CB_FINDSTRINGEXACT, -1, (LPARAM)fmt.szFaceName);
380 SendMessageW(hFontListWnd, CBEM_GETITEMW, 0, (LPARAM)&cbFontItem);
381
382 fontStyle = (DWORD)LOWORD(cbFontItem.lParam);
383
384 SendMessageW(hSizeListWnd, CB_RESETCONTENT, 0, 0);
385
386 if((fontStyle & RASTER_FONTTYPE) && cbFontItem.iItem)
387 {
388 add_size(hSizeListWnd, (BYTE)MulDiv(HIWORD(cbFontItem.lParam), 72,
389 GetDeviceCaps(hdc, LOGPIXELSY)));
390 } else
391 {
392 for(i = 0; i < sizeof(choices)/sizeof(choices[0]); i++)
393 add_size(hSizeListWnd, choices[i]);
394 }
395
396 wsprintfW(buffer, stringFormat, fmt.yHeight / 20);
397 SendMessageW(hListEditWnd, WM_SETTEXT, 0, (LPARAM)buffer);
398 }
399
400 static void update_size_list(void)
401 {
402 HWND hReBar = GetDlgItem(hMainWnd, IDC_REBAR);
403 HWND hwndSizeList = GetDlgItem(hReBar, IDC_SIZELIST);
404 HWND hwndSizeListEdit = (HWND)SendMessageW(hwndSizeList, CBEM_GETEDITCONTROL, 0, 0);
405 WCHAR fontSize[MAX_STRING_LEN], sizeBuffer[MAX_STRING_LEN];
406 CHARFORMAT2W fmt;
407
408 ZeroMemory(&fmt, sizeof(fmt));
409 fmt.cbSize = sizeof(fmt);
410
411 SendMessageW(hEditorWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
412
413 SendMessageW(hwndSizeListEdit, WM_GETTEXT, MAX_PATH, (LPARAM)fontSize);
414 wsprintfW(sizeBuffer, stringFormat, fmt.yHeight / 20);
415
416 if(lstrcmpW(fontSize, sizeBuffer))
417 SendMessageW(hwndSizeListEdit, WM_SETTEXT, 0, (LPARAM)sizeBuffer);
418 }
419
420 static void update_font_list(void)
421 {
422 HWND hReBar = GetDlgItem(hMainWnd, IDC_REBAR);
423 HWND hFontList = GetDlgItem(hReBar, IDC_FONTLIST);
424 HWND hFontListEdit = (HWND)SendMessageW(hFontList, CBEM_GETEDITCONTROL, 0, 0);
425 WCHAR fontName[MAX_STRING_LEN];
426 CHARFORMAT2W fmt;
427
428 ZeroMemory(&fmt, sizeof(fmt));
429 fmt.cbSize = sizeof(fmt);
430
431 SendMessageW(hEditorWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
432 if (!SendMessageW(hFontListEdit, WM_GETTEXT, MAX_PATH, (LPARAM)fontName)) return;
433
434 if(lstrcmpW(fontName, fmt.szFaceName))
435 {
436 SendMessageW(hFontListEdit, WM_SETTEXT, 0, (LPARAM)fmt.szFaceName);
437 populate_size_list(GetDlgItem(hReBar, IDC_SIZELIST));
438 } else
439 {
440 update_size_list();
441 }
442 }
443
444 static void clear_formatting(void)
445 {
446 PARAFORMAT2 pf;
447
448 pf.cbSize = sizeof(pf);
449 pf.dwMask = PFM_ALIGNMENT;
450 pf.wAlignment = PFA_LEFT;
451 SendMessageW(hEditorWnd, EM_SETPARAFORMAT, 0, (LPARAM)&pf);
452 }
453
454 static int fileformat_number(WPARAM format)
455 {
456 int number = 0;
457
458 if(format == SF_TEXT)
459 {
460 number = 1;
461 } else if (format == (SF_TEXT | SF_UNICODE))
462 {
463 number = 2;
464 }
465 return number;
466 }
467
468 static WPARAM fileformat_flags(int format)
469 {
470 WPARAM flags[] = { SF_RTF , SF_TEXT , SF_TEXT | SF_UNICODE };
471
472 return flags[format];
473 }
474
475 static void set_font(LPCWSTR wszFaceName)
476 {
477 HWND hReBarWnd = GetDlgItem(hMainWnd, IDC_REBAR);
478 HWND hSizeListWnd = GetDlgItem(hReBarWnd, IDC_SIZELIST);
479 HWND hFontListWnd = GetDlgItem(hReBarWnd, IDC_FONTLIST);
480 HWND hFontListEditWnd = (HWND)SendMessageW(hFontListWnd, CBEM_GETEDITCONTROL, 0, 0);
481 CHARFORMAT2W fmt;
482
483 ZeroMemory(&fmt, sizeof(fmt));
484
485 fmt.cbSize = sizeof(fmt);
486 fmt.dwMask = CFM_FACE;
487
488 lstrcpyW(fmt.szFaceName, wszFaceName);
489
490 SendMessageW(hEditorWnd, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
491
492 populate_size_list(hSizeListWnd);
493
494 SendMessageW(hFontListEditWnd, WM_SETTEXT, 0, (LPARAM)wszFaceName);
495 }
496
497 static void set_default_font(void)
498 {
499 static const WCHAR richTextFont[] = {'T','i','m','e','s',' ','N','e','w',' ',
500 'R','o','m','a','n',0};
501 static const WCHAR plainTextFont[] = {'C','o','u','r','i','e','r',' ','N','e','w',0};
502 CHARFORMAT2W fmt;
503 LPCWSTR font;
504
505 ZeroMemory(&fmt, sizeof(fmt));
506
507 fmt.cbSize = sizeof(fmt);
508 fmt.dwMask = CFM_FACE | CFM_BOLD | CFM_ITALIC | CFM_UNDERLINE;
509 fmt.dwEffects = 0;
510
511 if(fileFormat & SF_RTF)
512 font = richTextFont;
513 else
514 font = plainTextFont;
515
516 lstrcpyW(fmt.szFaceName, font);
517
518 SendMessageW(hEditorWnd, EM_SETCHARFORMAT, SCF_DEFAULT, (LPARAM)&fmt);
519 }
520
521 static void on_fontlist_modified(LPWSTR wszNewFaceName)
522 {
523 CHARFORMAT2W format;
524 ZeroMemory(&format, sizeof(format));
525 format.cbSize = sizeof(format);
526 SendMessageW(hEditorWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&format);
527
528 if(lstrcmpW(format.szFaceName, wszNewFaceName))
529 set_font(wszNewFaceName);
530 }
531
532 static void add_font(LPCWSTR fontName, DWORD fontType, HWND hListWnd, const NEWTEXTMETRICEXW *ntmc)
533 {
534 COMBOBOXEXITEMW cbItem;
535 WCHAR buffer[MAX_PATH];
536 int fontHeight = 0;
537
538 cbItem.mask = CBEIF_TEXT;
539 cbItem.pszText = buffer;
540 cbItem.cchTextMax = MAX_STRING_LEN;
541 cbItem.iItem = 0;
542
543 while(SendMessageW(hListWnd, CBEM_GETITEMW, 0, (LPARAM)&cbItem))
544 {
545 if(lstrcmpiW(cbItem.pszText, fontName) <= 0)
546 cbItem.iItem++;
547 else
548 break;
549 }
550 cbItem.pszText = HeapAlloc( GetProcessHeap(), 0, (lstrlenW(fontName) + 1)*sizeof(WCHAR) );
551 lstrcpyW( cbItem.pszText, fontName );
552
553 cbItem.mask |= CBEIF_LPARAM;
554 if(fontType & RASTER_FONTTYPE)
555 fontHeight = ntmc->ntmTm.tmHeight - ntmc->ntmTm.tmInternalLeading;
556
557 cbItem.lParam = MAKELONG(fontType,fontHeight);
558 SendMessageW(hListWnd, CBEM_INSERTITEMW, 0, (LPARAM)&cbItem);
559 HeapFree( GetProcessHeap(), 0, cbItem.pszText );
560 }
561
562 static void dialog_choose_font(void)
563 {
564 CHOOSEFONTW cf;
565 LOGFONTW lf;
566 CHARFORMAT2W fmt;
567 HDC hDC = GetDC(hMainWnd);
568
569 ZeroMemory(&cf, sizeof(cf));
570 cf.lStructSize = sizeof(cf);
571 cf.hwndOwner = hMainWnd;
572 cf.lpLogFont = &lf;
573 cf.Flags = CF_SCREENFONTS | CF_NOSCRIPTSEL | CF_INITTOLOGFONTSTRUCT | CF_EFFECTS;
574
575 ZeroMemory(&fmt, sizeof(fmt));
576 fmt.cbSize = sizeof(fmt);
577
578 SendMessageW(hEditorWnd, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
579 lstrcpyW(cf.lpLogFont->lfFaceName, fmt.szFaceName);
580 cf.lpLogFont->lfItalic = (fmt.dwEffects & CFE_ITALIC) ? TRUE : FALSE;
581 cf.lpLogFont->lfWeight = (fmt.dwEffects & CFE_BOLD) ? FW_BOLD : FW_NORMAL;
582 cf.lpLogFont->lfUnderline = (fmt.dwEffects & CFE_UNDERLINE) ? TRUE : FALSE;
583 cf.lpLogFont->lfStrikeOut = (fmt.dwEffects & CFE_STRIKEOUT) ? TRUE : FALSE;
584 cf.lpLogFont->lfHeight = -MulDiv(fmt.yHeight / 20, GetDeviceCaps(hDC, LOGPIXELSY), 72);
585 cf.rgbColors = fmt.crTextColor;
586
587 if(ChooseFontW(&cf))
588 {
589 ZeroMemory(&fmt, sizeof(fmt));
590 fmt.cbSize = sizeof(fmt);
591 fmt.dwMask = CFM_BOLD | CFM_ITALIC | CFM_SIZE | CFM_UNDERLINE | CFM_STRIKEOUT | CFM_COLOR;
592 fmt.yHeight = cf.iPointSize * 2;
593
594 if(cf.nFontType & BOLD_FONTTYPE)
595 fmt.dwEffects |= CFE_BOLD;
596 if(cf.nFontType & ITALIC_FONTTYPE)
597 fmt.dwEffects |= CFE_ITALIC;
598 if(cf.lpLogFont->lfUnderline == TRUE)
599 fmt.dwEffects |= CFE_UNDERLINE;
600 if(cf.lpLogFont->lfStrikeOut == TRUE)
601 fmt.dwEffects |= CFE_STRIKEOUT;
602
603 fmt.crTextColor = cf.rgbColors;
604
605 SendMessageW(hEditorWnd, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
606 set_font(cf.lpLogFont->lfFaceName);
607 }
608 }
609
610
611 static int CALLBACK enum_font_proc(const LOGFONTW *lpelfe, const TEXTMETRICW *lpntme,
612 DWORD FontType, LPARAM lParam)
613 {
614 HWND hListWnd = (HWND) lParam;
615
616 if(SendMessageW(hListWnd, CB_FINDSTRINGEXACT, -1, (LPARAM)lpelfe->lfFaceName) == CB_ERR)
617 {
618
619 add_font(lpelfe->lfFaceName, FontType, hListWnd, (const NEWTEXTMETRICEXW*)lpntme);
620 }
621
622 return 1;
623 }
624
625 static void populate_font_list(HWND hListWnd)
626 {
627 HDC hdc = GetDC(hMainWnd);
628 LOGFONTW fontinfo;
629 HWND hListEditWnd = (HWND)SendMessageW(hListWnd, CBEM_GETEDITCONTROL, 0, 0);
630 CHARFORMAT2W fmt;
631
632 fontinfo.lfCharSet = DEFAULT_CHARSET;
633 *fontinfo.lfFaceName = '\0';
634 fontinfo.lfPitchAndFamily = 0;
635
636 EnumFontFamiliesExW(hdc, &fontinfo, enum_font_proc,
637 (LPARAM)hListWnd, 0);
638
639 ZeroMemory(&fmt, sizeof(fmt));
640 fmt.cbSize = sizeof(fmt);
641 SendMessageW(hEditorWnd, EM_GETCHARFORMAT, SCF_DEFAULT, (LPARAM)&fmt);
642 SendMessageW(hListEditWnd, WM_SETTEXT, 0, (LPARAM)fmt.szFaceName);
643 }
644
645 static void update_window(void)
646 {
647 RECT rect;
648
649 GetClientRect(hMainWnd, &rect);
650
651 OnSize(hMainWnd, SIZE_RESTORED, MAKELPARAM(rect.right, rect.bottom));
652 }
653
654 static BOOL is_bar_visible(int bandId)
655 {
656 return barState[reg_formatindex(fileFormat)] & (1 << bandId);
657 }
658
659 static void store_bar_state(int bandId, BOOL show)
660 {
661 int formatIndex = reg_formatindex(fileFormat);
662
663 if(show)
664 barState[formatIndex] |= (1 << bandId);
665 else
666 barState[formatIndex] &= ~(1 << bandId);
667 }
668
669 static void set_toolbar_state(int bandId, BOOL show)
670 {
671 HWND hwndReBar = GetDlgItem(hMainWnd, IDC_REBAR);
672
673 SendMessageW(hwndReBar, RB_SHOWBAND, SendMessageW(hwndReBar, RB_IDTOINDEX, bandId, 0), show);
674
675 if(bandId == BANDID_TOOLBAR)
676 {
677 REBARBANDINFOW rbbinfo;
678 int index = SendMessageW(hwndReBar, RB_IDTOINDEX, BANDID_FONTLIST, 0);
679
680 rbbinfo.cbSize = REBARBANDINFOW_V6_SIZE;
681 rbbinfo.fMask = RBBIM_STYLE;
682
683 SendMessageW(hwndReBar, RB_GETBANDINFO, index, (LPARAM)&rbbinfo);
684
685 if(!show)
686 rbbinfo.fStyle &= ~RBBS_BREAK;
687 else
688 rbbinfo.fStyle |= RBBS_BREAK;
689
690 SendMessageW(hwndReBar, RB_SETBANDINFO, index, (LPARAM)&rbbinfo);
691 }
692
693 if(bandId == BANDID_TOOLBAR || bandId == BANDID_FORMATBAR || bandId == BANDID_RULER)
694 store_bar_state(bandId, show);
695 }
696
697 static void set_statusbar_state(BOOL show)
698 {
699 HWND hStatusWnd = GetDlgItem(hMainWnd, IDC_STATUSBAR);
700
701 ShowWindow(hStatusWnd, show ? SW_SHOW : SW_HIDE);
702 store_bar_state(BANDID_STATUSBAR, show);
703 }
704
705 static void set_bar_states(void)
706 {
707 set_toolbar_state(BANDID_TOOLBAR, is_bar_visible(BANDID_TOOLBAR));
708 set_toolbar_state(BANDID_FONTLIST, is_bar_visible(BANDID_FORMATBAR));
709 set_toolbar_state(BANDID_SIZELIST, is_bar_visible(BANDID_FORMATBAR));
710 set_toolbar_state(BANDID_FORMATBAR, is_bar_visible(BANDID_FORMATBAR));
711 set_toolbar_state(BANDID_RULER, is_bar_visible(BANDID_RULER));
712 set_statusbar_state(is_bar_visible(BANDID_STATUSBAR));
713
714 update_window();
715 }
716
717 static void preview_exit(HWND hMainWnd)
718 {
719 HMENU hMenu = LoadMenuW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDM_MAINMENU));
720 HWND hEditorWnd = GetDlgItem(hMainWnd, IDC_EDITOR);
721
722 set_bar_states();
723 ShowWindow(hEditorWnd, TRUE);
724
725 close_preview(hMainWnd);
726
727 SetMenu(hMainWnd, hMenu);
728 registry_read_filelist(hMainWnd);
729
730 update_window();
731 }
732
733 static void set_fileformat(WPARAM format)
734 {
735 fileFormat = format;
736
737 set_bar_states();
738 set_default_font();
739 target_device(hMainWnd, wordWrap[reg_formatindex(fileFormat)]);
740 }
741
742 static void ShowOpenError(DWORD Code)
743 {
744 LPWSTR Message;
745
746 switch(Code)
747 {
748 case ERROR_ACCESS_DENIED:
749 Message = MAKEINTRESOURCEW(STRING_OPEN_ACCESS_DENIED);
750 break;
751
752 default:
753 Message = MAKEINTRESOURCEW(STRING_OPEN_FAILED);
754 }
755 MessageBoxW(hMainWnd, Message, wszAppTitle, MB_ICONEXCLAMATION | MB_OK);
756 }
757
758 static void DoOpenFile(LPCWSTR szOpenFileName)
759 {
760 HANDLE hFile;
761 EDITSTREAM es;
762 char fileStart[5];
763 DWORD readOut;
764 WPARAM format = SF_TEXT;
765
766 hFile = CreateFileW(szOpenFileName, GENERIC_READ, FILE_SHARE_READ, NULL,
767 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
768 if (hFile == INVALID_HANDLE_VALUE)
769 {
770 ShowOpenError(GetLastError());
771 return;
772 }
773
774 ReadFile(hFile, fileStart, 5, &readOut, NULL);
775 SetFilePointer(hFile, 0, NULL, FILE_BEGIN);
776
777 if(readOut >= 2 && (BYTE)fileStart[0] == 0xff && (BYTE)fileStart[1] == 0xfe)
778 {
779 format = SF_TEXT | SF_UNICODE;
780 SetFilePointer(hFile, 2, NULL, FILE_BEGIN);
781 } else if(readOut >= 5)
782 {
783 static const char header[] = "{\\rtf";
784 static const BYTE STG_magic[] = { 0xd0,0xcf,0x11,0xe0 };
785
786 if(!memcmp(header, fileStart, 5))
787 format = SF_RTF;
788 else if (!memcmp(STG_magic, fileStart, sizeof(STG_magic)))
789 {
790 CloseHandle(hFile);
791 MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_OLE_STORAGE_NOT_SUPPORTED),
792 wszAppTitle, MB_OK | MB_ICONEXCLAMATION);
793 return;
794 }
795 }
796
797 es.dwCookie = (DWORD_PTR)hFile;
798 es.pfnCallback = stream_in;
799
800 clear_formatting();
801 set_fileformat(format);
802 SendMessageW(hEditorWnd, EM_STREAMIN, format, (LPARAM)&es);
803
804 CloseHandle(hFile);
805
806 SetFocus(hEditorWnd);
807
808 set_caption(szOpenFileName);
809
810 lstrcpyW(wszFileName, szOpenFileName);
811 SendMessageW(hEditorWnd, EM_SETMODIFY, FALSE, 0);
812 registry_set_filelist(szOpenFileName, hMainWnd);
813 update_font_list();
814 }
815
816 static void ShowWriteError(DWORD Code)
817 {
818 LPWSTR Message;
819
820 switch(Code)
821 {
822 case ERROR_ACCESS_DENIED:
823 Message = MAKEINTRESOURCEW(STRING_WRITE_ACCESS_DENIED);
824 break;
825
826 default:
827 Message = MAKEINTRESOURCEW(STRING_WRITE_FAILED);
828 }
829 MessageBoxW(hMainWnd, Message, wszAppTitle, MB_ICONEXCLAMATION | MB_OK);
830 }
831
832 static void DoSaveFile(LPCWSTR wszSaveFileName, WPARAM format)
833 {
834 HANDLE hFile;
835 EDITSTREAM stream;
836 LRESULT ret;
837
838 hFile = CreateFileW(wszSaveFileName, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
839 FILE_ATTRIBUTE_NORMAL, NULL);
840
841 if(hFile == INVALID_HANDLE_VALUE)
842 {
843 ShowWriteError(GetLastError());
844 return;
845 }
846
847 if(format == (SF_TEXT | SF_UNICODE))
848 {
849 static const BYTE unicode[] = {0xff,0xfe};
850 DWORD writeOut;
851 WriteFile(hFile, &unicode, sizeof(unicode), &writeOut, 0);
852
853 if(writeOut != sizeof(unicode))
854 {
855 CloseHandle(hFile);
856 return;
857 }
858 }
859
860 stream.dwCookie = (DWORD_PTR)hFile;
861 stream.pfnCallback = stream_out;
862
863 ret = SendMessageW(hEditorWnd, EM_STREAMOUT, format, (LPARAM)&stream);
864
865 CloseHandle(hFile);
866
867 SetFocus(hEditorWnd);
868
869 if(!ret)
870 {
871 GETTEXTLENGTHEX gt;
872 gt.flags = GTL_DEFAULT;
873 gt.codepage = 1200;
874
875 if(SendMessageW(hEditorWnd, EM_GETTEXTLENGTHEX, (WPARAM)&gt, 0))
876 return;
877 }
878
879 lstrcpyW(wszFileName, wszSaveFileName);
880 set_caption(wszFileName);
881 SendMessageW(hEditorWnd, EM_SETMODIFY, FALSE, 0);
882 set_fileformat(format);
883 }
884
885 static void DialogSaveFile(void)
886 {
887 OPENFILENAMEW sfn;
888
889 WCHAR wszFile[MAX_PATH] = {'\0'};
890 static const WCHAR wszDefExt[] = {'r','t','f','\0'};
891
892 ZeroMemory(&sfn, sizeof(sfn));
893
894 sfn.lStructSize = sizeof(sfn);
895 sfn.Flags = OFN_HIDEREADONLY | OFN_PATHMUSTEXIST | OFN_OVERWRITEPROMPT | OFN_ENABLESIZING;
896 sfn.hwndOwner = hMainWnd;
897 sfn.lpstrFilter = wszFilter;
898 sfn.lpstrFile = wszFile;
899 sfn.nMaxFile = MAX_PATH;
900 sfn.lpstrDefExt = wszDefExt;
901 sfn.nFilterIndex = fileformat_number(fileFormat)+1;
902
903 while(GetSaveFileNameW(&sfn))
904 {
905 if(fileformat_flags(sfn.nFilterIndex-1) != SF_RTF)
906 {
907 if(MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_SAVE_LOSEFORMATTING),
908 wszAppTitle, MB_YESNO | MB_ICONEXCLAMATION) != IDYES)
909 {
910 continue;
911 } else
912 {
913 DoSaveFile(sfn.lpstrFile, fileformat_flags(sfn.nFilterIndex-1));
914 break;
915 }
916 } else
917 {
918 DoSaveFile(sfn.lpstrFile, fileformat_flags(sfn.nFilterIndex-1));
919 break;
920 }
921 }
922 }
923
924 static BOOL prompt_save_changes(void)
925 {
926 if(!wszFileName[0])
927 {
928 GETTEXTLENGTHEX gt;
929 gt.flags = GTL_NUMCHARS;
930 gt.codepage = 1200;
931 if(!SendMessageW(hEditorWnd, EM_GETTEXTLENGTHEX, (WPARAM)&gt, 0))
932 return TRUE;
933 }
934
935 if(!SendMessageW(hEditorWnd, EM_GETMODIFY, 0, 0))
936 {
937 return TRUE;
938 } else
939 {
940 LPWSTR displayFileName;
941 WCHAR *text;
942 int ret;
943
944 if(!wszFileName[0])
945 displayFileName = wszDefaultFileName;
946 else
947 displayFileName = file_basename(wszFileName);
948
949 text = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
950 (lstrlenW(displayFileName)+lstrlenW(wszSaveChanges))*sizeof(WCHAR));
951
952 if(!text)
953 return FALSE;
954
955 wsprintfW(text, wszSaveChanges, displayFileName);
956
957 ret = MessageBoxW(hMainWnd, text, wszAppTitle, MB_YESNOCANCEL | MB_ICONEXCLAMATION);
958
959 HeapFree(GetProcessHeap(), 0, text);
960
961 switch(ret)
962 {
963 case IDNO:
964 return TRUE;
965
966 case IDYES:
967 if(wszFileName[0])
968 DoSaveFile(wszFileName, fileFormat);
969 else
970 DialogSaveFile();
971 return TRUE;
972
973 default:
974 return FALSE;
975 }
976 }
977 }
978
979 static void DialogOpenFile(void)
980 {
981 OPENFILENAMEW ofn;
982
983 WCHAR wszFile[MAX_PATH] = {'\0'};
984 static const WCHAR wszDefExt[] = {'r','t','f','\0'};
985
986 ZeroMemory(&ofn, sizeof(ofn));
987
988 ofn.lStructSize = sizeof(ofn);
989 ofn.Flags = OFN_HIDEREADONLY | OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST | OFN_ENABLESIZING;
990 ofn.hwndOwner = hMainWnd;
991 ofn.lpstrFilter = wszFilter;
992 ofn.lpstrFile = wszFile;
993 ofn.nMaxFile = MAX_PATH;
994 ofn.lpstrDefExt = wszDefExt;
995 ofn.nFilterIndex = fileformat_number(fileFormat)+1;
996
997 if(GetOpenFileNameW(&ofn))
998 {
999 if(prompt_save_changes())
1000 DoOpenFile(ofn.lpstrFile);
1001 }
1002 }
1003
1004 static void dialog_about(void)
1005 {
1006 HICON icon = LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_WORDPAD), IMAGE_ICON, 48, 48, LR_SHARED);
1007 ShellAboutW(hMainWnd, wszAppTitle, 0, icon);
1008 }
1009
1010 static INT_PTR CALLBACK formatopts_proc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1011 {
1012 switch(message)
1013 {
1014 case WM_INITDIALOG:
1015 {
1016 LPPROPSHEETPAGEW ps = (LPPROPSHEETPAGEW)lParam;
1017 int wrap = -1;
1018 char id[4];
1019 HWND hIdWnd = GetDlgItem(hWnd, IDC_PAGEFMT_ID);
1020
1021 sprintf(id, "%d\n", (int)ps->lParam);
1022 SetWindowTextA(hIdWnd, id);
1023 if(wordWrap[ps->lParam] == ID_WORDWRAP_NONE)
1024 wrap = IDC_PAGEFMT_WN;
1025 else if(wordWrap[ps->lParam] == ID_WORDWRAP_WINDOW)
1026 wrap = IDC_PAGEFMT_WW;
1027 else if(wordWrap[ps->lParam] == ID_WORDWRAP_MARGIN)
1028 wrap = IDC_PAGEFMT_WM;
1029
1030 if(wrap != -1)
1031 CheckRadioButton(hWnd, IDC_PAGEFMT_WN,
1032 IDC_PAGEFMT_WM, wrap);
1033
1034 if(barState[ps->lParam] & (1 << BANDID_TOOLBAR))
1035 CheckDlgButton(hWnd, IDC_PAGEFMT_TB, TRUE);
1036 if(barState[ps->lParam] & (1 << BANDID_FORMATBAR))
1037 CheckDlgButton(hWnd, IDC_PAGEFMT_FB, TRUE);
1038 if(barState[ps->lParam] & (1 << BANDID_RULER))
1039 CheckDlgButton(hWnd, IDC_PAGEFMT_RU, TRUE);
1040 if(barState[ps->lParam] & (1 << BANDID_STATUSBAR))
1041 CheckDlgButton(hWnd, IDC_PAGEFMT_SB, TRUE);
1042 }
1043 break;
1044
1045 case WM_COMMAND:
1046 switch(LOWORD(wParam))
1047 {
1048 case IDC_PAGEFMT_WN:
1049 case IDC_PAGEFMT_WW:
1050 case IDC_PAGEFMT_WM:
1051 CheckRadioButton(hWnd, IDC_PAGEFMT_WN, IDC_PAGEFMT_WM,
1052 LOWORD(wParam));
1053 break;
1054
1055 case IDC_PAGEFMT_TB:
1056 case IDC_PAGEFMT_FB:
1057 case IDC_PAGEFMT_RU:
1058 case IDC_PAGEFMT_SB:
1059 CheckDlgButton(hWnd, LOWORD(wParam),
1060 !IsDlgButtonChecked(hWnd, LOWORD(wParam)));
1061 break;
1062 }
1063 break;
1064 case WM_NOTIFY:
1065 {
1066 LPNMHDR header = (LPNMHDR)lParam;
1067 if(header->code == PSN_APPLY)
1068 {
1069 HWND hIdWnd = GetDlgItem(hWnd, IDC_PAGEFMT_ID);
1070 char sid[4];
1071 int id;
1072
1073 GetWindowTextA(hIdWnd, sid, 4);
1074 id = atoi(sid);
1075 if(IsDlgButtonChecked(hWnd, IDC_PAGEFMT_WN))
1076 wordWrap[id] = ID_WORDWRAP_NONE;
1077 else if(IsDlgButtonChecked(hWnd, IDC_PAGEFMT_WW))
1078 wordWrap[id] = ID_WORDWRAP_WINDOW;
1079 else if(IsDlgButtonChecked(hWnd, IDC_PAGEFMT_WM))
1080 wordWrap[id] = ID_WORDWRAP_MARGIN;
1081
1082 if(IsDlgButtonChecked(hWnd, IDC_PAGEFMT_TB))
1083 barState[id] |= (1 << BANDID_TOOLBAR);
1084 else
1085 barState[id] &= ~(1 << BANDID_TOOLBAR);
1086
1087 if(IsDlgButtonChecked(hWnd, IDC_PAGEFMT_FB))
1088 barState[id] |= (1 << BANDID_FORMATBAR);
1089 else
1090 barState[id] &= ~(1 << BANDID_FORMATBAR);
1091
1092 if(IsDlgButtonChecked(hWnd, IDC_PAGEFMT_RU))
1093 barState[id] |= (1 << BANDID_RULER);
1094 else
1095 barState[id] &= ~(1 << BANDID_RULER);
1096
1097 if(IsDlgButtonChecked(hWnd, IDC_PAGEFMT_SB))
1098 barState[id] |= (1 << BANDID_STATUSBAR);
1099 else
1100 barState[id] &= ~(1 << BANDID_STATUSBAR);
1101 }
1102 }
1103 break;
1104 }
1105 return FALSE;
1106 }
1107
1108 static void dialog_viewproperties(void)
1109 {
1110 PROPSHEETPAGEW psp[2];
1111 PROPSHEETHEADERW psh;
1112 size_t i;
1113 HINSTANCE hInstance = GetModuleHandleW(0);
1114 LPCPROPSHEETPAGEW ppsp = (LPCPROPSHEETPAGEW)&psp;
1115
1116 psp[0].dwSize = sizeof(PROPSHEETPAGEW);
1117 psp[0].dwFlags = PSP_USETITLE;
1118 U(psp[0]).pszTemplate = MAKEINTRESOURCEW(IDD_FORMATOPTS);
1119 psp[0].pfnDlgProc = formatopts_proc;
1120 psp[0].hInstance = hInstance;
1121 psp[0].lParam = reg_formatindex(SF_TEXT);
1122 psp[0].pfnCallback = NULL;
1123 psp[0].pszTitle = MAKEINTRESOURCEW(STRING_VIEWPROPS_TEXT);
1124 for(i = 1; i < sizeof(psp)/sizeof(psp[0]); i++)
1125 {
1126 psp[i].dwSize = psp[0].dwSize;
1127 psp[i].dwFlags = psp[0].dwFlags;
1128 U(psp[i]).pszTemplate = U(psp[0]).pszTemplate;
1129 psp[i].pfnDlgProc = psp[0].pfnDlgProc;
1130 psp[i].hInstance = psp[0].hInstance;
1131 psp[i].lParam = reg_formatindex(SF_RTF);
1132 psp[i].pfnCallback = psp[0].pfnCallback;
1133 psp[i].pszTitle = MAKEINTRESOURCEW(STRING_VIEWPROPS_RICHTEXT);
1134 }
1135
1136 psh.dwSize = sizeof(psh);
1137 psh.dwFlags = PSH_USEICONID | PSH_PROPSHEETPAGE | PSH_NOAPPLYNOW;
1138 psh.hwndParent = hMainWnd;
1139 psh.hInstance = hInstance;
1140 psh.pszCaption = MAKEINTRESOURCEW(STRING_VIEWPROPS_TITLE);
1141 psh.nPages = sizeof(psp)/sizeof(psp[0]);
1142 U3(psh).ppsp = ppsp;
1143 U(psh).pszIcon = MAKEINTRESOURCEW(IDI_WORDPAD);
1144
1145 if(fileFormat & SF_RTF)
1146 U2(psh).nStartPage = 1;
1147 else
1148 U2(psh).nStartPage = 0;
1149 PropertySheetW(&psh);
1150 set_bar_states();
1151 target_device(hMainWnd, wordWrap[reg_formatindex(fileFormat)]);
1152 }
1153
1154 static void HandleCommandLine(LPWSTR cmdline)
1155 {
1156 WCHAR delimiter;
1157 int opt_print = 0;
1158
1159 /* skip white space */
1160 while (*cmdline == ' ') cmdline++;
1161
1162 /* skip executable name */
1163 delimiter = (*cmdline == '"' ? '"' : ' ');
1164
1165 if (*cmdline == delimiter) cmdline++;
1166 while (*cmdline && *cmdline != delimiter) cmdline++;
1167 if (*cmdline == delimiter) cmdline++;
1168
1169 while (*cmdline)
1170 {
1171 while (isspace(*cmdline)) cmdline++;
1172
1173 if (*cmdline == '-' || *cmdline == '/')
1174 {
1175 if (!cmdline[2] || isspace(cmdline[2]))
1176 {
1177 switch (cmdline[1])
1178 {
1179 case 'P':
1180 case 'p':
1181 opt_print = 1;
1182 cmdline += 2;
1183 continue;
1184 }
1185 }
1186 /* a filename starting by / */
1187 }
1188 break;
1189 }
1190
1191 if (*cmdline)
1192 {
1193 /* file name is passed on the command line */
1194 if (cmdline[0] == '"')
1195 {
1196 cmdline++;
1197 cmdline[lstrlenW(cmdline) - 1] = 0;
1198 }
1199 DoOpenFile(cmdline);
1200 InvalidateRect(hMainWnd, NULL, FALSE);
1201 }
1202
1203 if (opt_print)
1204 MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_PRINTING_NOT_IMPLEMENTED), wszAppTitle, MB_OK);
1205 }
1206
1207 static LRESULT handle_findmsg(LPFINDREPLACEW pFr)
1208 {
1209 if(pFr->Flags & FR_DIALOGTERM)
1210 {
1211 hFindWnd = 0;
1212 pFr->Flags = FR_FINDNEXT;
1213 return 0;
1214 }
1215
1216 if(pFr->Flags & FR_FINDNEXT || pFr->Flags & FR_REPLACE || pFr->Flags & FR_REPLACEALL)
1217 {
1218 DWORD flags = FR_DOWN;
1219 FINDTEXTW ft;
1220 static CHARRANGE cr;
1221 LRESULT end, ret;
1222 GETTEXTLENGTHEX gt;
1223 LRESULT length;
1224 int startPos;
1225 HMENU hMenu = GetMenu(hMainWnd);
1226 MENUITEMINFOW mi;
1227
1228 mi.cbSize = sizeof(mi);
1229 mi.fMask = MIIM_DATA;
1230 mi.dwItemData = 1;
1231 SetMenuItemInfoW(hMenu, ID_FIND_NEXT, FALSE, &mi);
1232
1233 gt.flags = GTL_NUMCHARS;
1234 gt.codepage = 1200;
1235
1236 length = SendMessageW(hEditorWnd, EM_GETTEXTLENGTHEX, (WPARAM)&gt, 0);
1237
1238 if(pFr->lCustData == -1)
1239 {
1240 SendMessageW(hEditorWnd, EM_GETSEL, (WPARAM)&startPos, (LPARAM)&end);
1241 cr.cpMin = startPos;
1242 pFr->lCustData = startPos;
1243 cr.cpMax = length;
1244 if(cr.cpMin == length)
1245 cr.cpMin = 0;
1246 } else
1247 {
1248 startPos = pFr->lCustData;
1249 }
1250
1251 if(cr.cpMax > length)
1252 {
1253 startPos = 0;
1254 cr.cpMin = 0;
1255 cr.cpMax = length;
1256 }
1257
1258 ft.chrg = cr;
1259 ft.lpstrText = pFr->lpstrFindWhat;
1260
1261 if(pFr->Flags & FR_MATCHCASE)
1262 flags |= FR_MATCHCASE;
1263 if(pFr->Flags & FR_WHOLEWORD)
1264 flags |= FR_WHOLEWORD;
1265
1266 ret = SendMessageW(hEditorWnd, EM_FINDTEXTW, flags, (LPARAM)&ft);
1267
1268 if(ret == -1)
1269 {
1270 if(cr.cpMax == length && cr.cpMax != startPos)
1271 {
1272 ft.chrg.cpMin = cr.cpMin = 0;
1273 ft.chrg.cpMax = cr.cpMax = startPos;
1274
1275 ret = SendMessageW(hEditorWnd, EM_FINDTEXTW, flags, (LPARAM)&ft);
1276 }
1277 }
1278
1279 if(ret == -1)
1280 {
1281 pFr->lCustData = -1;
1282 MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_SEARCH_FINISHED), wszAppTitle,
1283 MB_OK | MB_ICONASTERISK);
1284 } else
1285 {
1286 end = ret + lstrlenW(pFr->lpstrFindWhat);
1287 cr.cpMin = end;
1288 SendMessageW(hEditorWnd, EM_SETSEL, ret, end);
1289 SendMessageW(hEditorWnd, EM_SCROLLCARET, 0, 0);
1290
1291 if(pFr->Flags & FR_REPLACE || pFr->Flags & FR_REPLACEALL)
1292 SendMessageW(hEditorWnd, EM_REPLACESEL, TRUE, (LPARAM)pFr->lpstrReplaceWith);
1293
1294 if(pFr->Flags & FR_REPLACEALL)
1295 handle_findmsg(pFr);
1296 }
1297 }
1298
1299 return 0;
1300 }
1301
1302 static void dialog_find(LPFINDREPLACEW fr, BOOL replace)
1303 {
1304 static WCHAR findBuffer[MAX_STRING_LEN];
1305 static WCHAR replaceBuffer[MAX_STRING_LEN];
1306
1307 /* Allow only one search/replace dialog to open */
1308 if(hFindWnd != NULL)
1309 {
1310 SetActiveWindow(hFindWnd);
1311 return;
1312 }
1313
1314 ZeroMemory(fr, sizeof(FINDREPLACEW));
1315 fr->lStructSize = sizeof(FINDREPLACEW);
1316 fr->hwndOwner = hMainWnd;
1317 fr->Flags = FR_HIDEUPDOWN;
1318 fr->lpstrFindWhat = findBuffer;
1319 fr->lpstrReplaceWith = replaceBuffer;
1320 fr->lCustData = -1;
1321 fr->wFindWhatLen = sizeof(findBuffer);
1322 fr->wReplaceWithLen = sizeof(replaceBuffer);
1323
1324 if(replace)
1325 hFindWnd = ReplaceTextW(fr);
1326 else
1327 hFindWnd = FindTextW(fr);
1328 }
1329
1330 static int units_to_twips(UNIT unit, float number)
1331 {
1332 int twips = 0;
1333
1334 switch(unit)
1335 {
1336 case UNIT_CM:
1337 twips = (int)(number * 1000.0 / (float)CENTMM_PER_INCH * (float)TWIPS_PER_INCH);
1338 break;
1339
1340 case UNIT_INCH:
1341 twips = (int)(number * (float)TWIPS_PER_INCH);
1342 break;
1343
1344 case UNIT_PT:
1345 twips = (int)(number * (0.0138 * (float)TWIPS_PER_INCH));
1346 break;
1347 }
1348
1349 return twips;
1350 }
1351
1352 static void append_current_units(LPWSTR buffer)
1353 {
1354 static const WCHAR space[] = {' ', 0};
1355 lstrcatW(buffer, space);
1356 lstrcatW(buffer, units_cmW);
1357 }
1358
1359 static void number_with_units(LPWSTR buffer, int number)
1360 {
1361 static const WCHAR fmt[] = {'%','.','2','f',' ','%','s','\0'};
1362 float converted = (float)number / (float)TWIPS_PER_INCH *(float)CENTMM_PER_INCH / 1000.0;
1363
1364 sprintfW(buffer, fmt, converted, units_cmW);
1365 }
1366
1367 static BOOL get_comboexlist_selection(HWND hComboEx, LPWSTR wszBuffer, UINT bufferLength)
1368 {
1369 COMBOBOXEXITEMW cbItem;
1370 COMBOBOXINFO cbInfo;
1371 HWND hCombo, hList;
1372 int idx, result;
1373
1374 hCombo = (HWND)SendMessage(hComboEx, CBEM_GETCOMBOCONTROL, 0, 0);
1375 if (!hCombo)
1376 return FALSE;
1377 cbInfo.cbSize = sizeof(COMBOBOXINFO);
1378 result = SendMessage(hCombo, CB_GETCOMBOBOXINFO, 0, (LPARAM)&cbInfo);
1379 if (!result)
1380 return FALSE;
1381 hList = cbInfo.hwndList;
1382 idx = SendMessage(hList, LB_GETCURSEL, 0, 0);
1383 if (idx < 0)
1384 return FALSE;
1385
1386 ZeroMemory(&cbItem, sizeof(cbItem));
1387 cbItem.mask = CBEIF_TEXT;
1388 cbItem.iItem = idx;
1389 cbItem.pszText = wszBuffer;
1390 cbItem.cchTextMax = bufferLength-1;
1391 result = SendMessageW(hComboEx, CBEM_GETITEMW, 0, (LPARAM)&cbItem);
1392
1393 return result != 0;
1394 }
1395
1396 static INT_PTR CALLBACK datetime_proc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1397 {
1398 switch(message)
1399 {
1400 case WM_INITDIALOG:
1401 {
1402 WCHAR buffer[MAX_STRING_LEN];
1403 SYSTEMTIME st;
1404 HWND hListWnd = GetDlgItem(hWnd, IDC_DATETIME);
1405 GetLocalTime(&st);
1406
1407 GetDateFormatW(LOCALE_USER_DEFAULT, DATE_SHORTDATE, &st, 0, (LPWSTR)&buffer,
1408 MAX_STRING_LEN);
1409 SendMessageW(hListWnd, LB_ADDSTRING, 0, (LPARAM)&buffer);
1410 GetDateFormatW(LOCALE_USER_DEFAULT, DATE_LONGDATE, &st, 0, (LPWSTR)&buffer,
1411 MAX_STRING_LEN);
1412 SendMessageW(hListWnd, LB_ADDSTRING, 0, (LPARAM)&buffer);
1413 GetTimeFormatW(LOCALE_USER_DEFAULT, 0, &st, 0, (LPWSTR)&buffer, MAX_STRING_LEN);
1414 SendMessageW(hListWnd, LB_ADDSTRING, 0, (LPARAM)&buffer);
1415
1416 SendMessageW(hListWnd, LB_SETSEL, TRUE, 0);
1417 }
1418 break;
1419
1420 case WM_COMMAND:
1421 switch(LOWORD(wParam))
1422 {
1423 case IDC_DATETIME:
1424 if (HIWORD(wParam) != LBN_DBLCLK)
1425 break;
1426 /* Fall through */
1427
1428 case IDOK:
1429 {
1430 LRESULT index;
1431 HWND hListWnd = GetDlgItem(hWnd, IDC_DATETIME);
1432
1433 index = SendMessageW(hListWnd, LB_GETCURSEL, 0, 0);
1434
1435 if(index != LB_ERR)
1436 {
1437 WCHAR buffer[MAX_STRING_LEN];
1438 SendMessageW(hListWnd, LB_GETTEXT, index, (LPARAM)&buffer);
1439 SendMessageW(hEditorWnd, EM_REPLACESEL, TRUE, (LPARAM)&buffer);
1440 }
1441 }
1442 /* Fall through */
1443
1444 case IDCANCEL:
1445 EndDialog(hWnd, wParam);
1446 return TRUE;
1447 }
1448 }
1449 return FALSE;
1450 }
1451
1452 static INT_PTR CALLBACK newfile_proc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1453 {
1454 switch(message)
1455 {
1456 case WM_INITDIALOG:
1457 {
1458 HINSTANCE hInstance = GetModuleHandleW(0);
1459 WCHAR buffer[MAX_STRING_LEN];
1460 HWND hListWnd = GetDlgItem(hWnd, IDC_NEWFILE);
1461
1462 LoadStringW(hInstance, STRING_NEWFILE_RICHTEXT, buffer, MAX_STRING_LEN);
1463 SendMessageW(hListWnd, LB_ADDSTRING, 0, (LPARAM)&buffer);
1464 LoadStringW(hInstance, STRING_NEWFILE_TXT, buffer, MAX_STRING_LEN);
1465 SendMessageW(hListWnd, LB_ADDSTRING, 0, (LPARAM)&buffer);
1466 LoadStringW(hInstance, STRING_NEWFILE_TXT_UNICODE, buffer, MAX_STRING_LEN);
1467 SendMessageW(hListWnd, LB_ADDSTRING, 0, (LPARAM)&buffer);
1468
1469 SendMessageW(hListWnd, LB_SETSEL, TRUE, 0);
1470 }
1471 break;
1472
1473 case WM_COMMAND:
1474 switch(LOWORD(wParam))
1475 {
1476 case IDOK:
1477 {
1478 LRESULT index;
1479 HWND hListWnd = GetDlgItem(hWnd, IDC_NEWFILE);
1480 index = SendMessageW(hListWnd, LB_GETCURSEL, 0, 0);
1481
1482 if(index != LB_ERR)
1483 EndDialog(hWnd, MAKELONG(fileformat_flags(index),0));
1484 }
1485 return TRUE;
1486
1487 case IDCANCEL:
1488 EndDialog(hWnd, MAKELONG(ID_NEWFILE_ABORT,0));
1489 return TRUE;
1490 }
1491 }
1492 return FALSE;
1493 }
1494
1495 static INT_PTR CALLBACK paraformat_proc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1496 {
1497 static const WORD ALIGNMENT_VALUES[] = {PFA_LEFT, PFA_RIGHT, PFA_CENTER};
1498
1499 switch(message)
1500 {
1501 case WM_INITDIALOG:
1502 {
1503 HINSTANCE hInstance = GetModuleHandleW(0);
1504 WCHAR buffer[MAX_STRING_LEN];
1505 HWND hListWnd = GetDlgItem(hWnd, IDC_PARA_ALIGN);
1506 HWND hLeftWnd = GetDlgItem(hWnd, IDC_PARA_LEFT);
1507 HWND hRightWnd = GetDlgItem(hWnd, IDC_PARA_RIGHT);
1508 HWND hFirstWnd = GetDlgItem(hWnd, IDC_PARA_FIRST);
1509 PARAFORMAT2 pf;
1510 int index = 0;
1511
1512 LoadStringW(hInstance, STRING_ALIGN_LEFT, buffer,
1513 MAX_STRING_LEN);
1514 SendMessageW(hListWnd, CB_ADDSTRING, 0, (LPARAM)buffer);
1515 LoadStringW(hInstance, STRING_ALIGN_RIGHT, buffer,
1516 MAX_STRING_LEN);
1517 SendMessageW(hListWnd, CB_ADDSTRING, 0, (LPARAM)buffer);
1518 LoadStringW(hInstance, STRING_ALIGN_CENTER, buffer,
1519 MAX_STRING_LEN);
1520 SendMessageW(hListWnd, CB_ADDSTRING, 0, (LPARAM)buffer);
1521
1522 pf.cbSize = sizeof(pf);
1523 pf.dwMask = PFM_ALIGNMENT | PFM_OFFSET | PFM_RIGHTINDENT |
1524 PFM_STARTINDENT;
1525 SendMessageW(hEditorWnd, EM_GETPARAFORMAT, 0, (LPARAM)&pf);
1526
1527 if(pf.wAlignment == PFA_RIGHT)
1528 index ++;
1529 else if(pf.wAlignment == PFA_CENTER)
1530 index += 2;
1531
1532 SendMessageW(hListWnd, CB_SETCURSEL, index, 0);
1533
1534 number_with_units(buffer, pf.dxStartIndent + pf.dxOffset);
1535 SetWindowTextW(hLeftWnd, buffer);
1536 number_with_units(buffer, pf.dxRightIndent);
1537 SetWindowTextW(hRightWnd, buffer);
1538 number_with_units(buffer, -pf.dxOffset);
1539 SetWindowTextW(hFirstWnd, buffer);
1540 }
1541 break;
1542
1543 case WM_COMMAND:
1544 switch(LOWORD(wParam))
1545 {
1546 case IDOK:
1547 {
1548 HWND hListWnd = GetDlgItem(hWnd, IDC_PARA_ALIGN);
1549 HWND hLeftWnd = GetDlgItem(hWnd, IDC_PARA_LEFT);
1550 HWND hRightWnd = GetDlgItem(hWnd, IDC_PARA_RIGHT);
1551 HWND hFirstWnd = GetDlgItem(hWnd, IDC_PARA_FIRST);
1552 WCHAR buffer[MAX_STRING_LEN];
1553 int index;
1554 float num;
1555 int ret = 0;
1556 PARAFORMAT pf;
1557 UNIT unit;
1558
1559 index = SendMessageW(hListWnd, CB_GETCURSEL, 0, 0);
1560 pf.wAlignment = ALIGNMENT_VALUES[index];
1561
1562 GetWindowTextW(hLeftWnd, buffer, MAX_STRING_LEN);
1563 if(number_from_string(buffer, &num, &unit))
1564 ret++;
1565 pf.dxOffset = units_to_twips(unit, num);
1566 GetWindowTextW(hRightWnd, buffer, MAX_STRING_LEN);
1567 if(number_from_string(buffer, &num, &unit))
1568 ret++;
1569 pf.dxRightIndent = units_to_twips(unit, num);
1570 GetWindowTextW(hFirstWnd, buffer, MAX_STRING_LEN);
1571 if(number_from_string(buffer, &num, &unit))
1572 ret++;
1573 pf.dxStartIndent = units_to_twips(unit, num);
1574
1575 if(ret != 3)
1576 {
1577 MessageBoxWithResStringW(hMainWnd, MAKEINTRESOURCEW(STRING_INVALID_NUMBER),
1578 wszAppTitle, MB_OK | MB_ICONASTERISK);
1579 return FALSE;
1580 } else
1581 {
1582 if (pf.dxOffset + pf.dxStartIndent < 0
1583 && pf.dxStartIndent < 0)
1584 {
1585 /* The first line is before the left edge, so
1586 * make sure it is at the left edge. */
1587 pf.dxOffset = -pf.dxStartIndent;
1588 } else if (pf.dxOffset < 0) {
1589 /* The second and following lines are before
1590 * the left edge, so set it to be at the left
1591 * edge, and adjust the first line since it
1592 * is relative to it. */
1593 pf.dxStartIndent = max(pf.dxStartIndent + pf.dxOffset, 0);
1594 pf.dxOffset = 0;
1595 }
1596 /* Internally the dxStartIndent is the absolute
1597 * offset for the first line and dxOffset is
1598 * to it value as opposed how it is displayed with
1599 * the first line being the relative value.
1600 * These two lines make the adjustments. */
1601 pf.dxStartIndent = pf.dxStartIndent + pf.dxOffset;
1602 pf.dxOffset = pf.dxOffset - pf.dxStartIndent;
1603
1604 pf.cbSize = sizeof(pf);
1605 pf.dwMask = PFM_ALIGNMENT | PFM_OFFSET | PFM_RIGHTINDENT |
1606 PFM_STARTINDENT;
1607 SendMessageW(hEditorWnd, EM_SETPARAFORMAT, 0, (LPARAM)&pf);
1608 }
1609 }
1610 /* Fall through */
1611
1612 case IDCANCEL:
1613 EndDialog(hWnd, wParam);
1614 return TRUE;
1615 }
1616 }
1617 return FALSE;
1618 }
1619
1620 static INT_PTR CALLBACK tabstops_proc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1621 {
1622 switch(message)
1623 {
1624 case WM_INITDIALOG:
1625 {
1626 HWND hTabWnd = GetDlgItem(hWnd, IDC_TABSTOPS);
1627 PARAFORMAT pf;
1628 WCHAR buffer[MAX_STRING_LEN];
1629 int i;
1630
1631 pf.cbSize = sizeof(pf);
1632 pf.dwMask = PFM_TABSTOPS;
1633 SendMessageW(hEditorWnd, EM_GETPARAFORMAT, 0, (LPARAM)&pf);
1634 SendMessageW(hTabWnd, CB_LIMITTEXT, MAX_STRING_LEN-1, 0);
1635
1636 for(i = 0; i < pf.cTabCount; i++)
1637 {
1638 number_with_units(buffer, pf.rgxTabs[i]);
1639 SendMessageW(hTabWnd, CB_ADDSTRING, 0, (LPARAM)&buffer);
1640 }
1641 SetFocus(hTabWnd);
1642 }
1643 break;
1644
1645 case WM_COMMAND:
1646 switch(LOWORD(wParam))
1647 {
1648 case IDC_TABSTOPS:
1649 {
1650 HWND hTabWnd = (HWND)lParam;
1651 HWND hAddWnd = GetDlgItem(hWnd, ID_TAB_ADD);
1652 HWND hDelWnd = GetDlgItem(hWnd, ID_TAB_DEL);
1653 HWND hEmptyWnd = GetDlgItem(hWnd, ID_TAB_EMPTY);
1654
1655 if(GetWindowTextLengthW(hTabWnd))
1656 EnableWindow(hAddWnd, TRUE);
1657 else
1658 EnableWindow(hAddWnd, FALSE);
1659
1660 if(SendMessageW(hTabWnd, CB_GETCOUNT, 0, 0))
1661 {
1662 EnableWindow(hEmptyWnd, TRUE);
1663
1664 if(SendMessageW(hTabWnd, CB_GETCURSEL, 0, 0) == CB_ERR)
1665 EnableWindow(hDelWnd, FALSE);
1666 else
1667 EnableWindow(hDelWnd, TRUE);
1668 } else
1669 {
1670 EnableWindow(hEmptyWnd, FALSE);
1671 }
1672 }
1673 break;
1674
1675 case ID_TAB_ADD:
1676 {
1677 HWND hTabWnd = GetDlgItem(hWnd, IDC_TABSTOPS);
1678 WCHAR buffer[MAX_STRING_LEN];
1679 UNIT unit;
1680
1681 GetWindowTextW(hTabWnd, buffer, MAX_STRING_LEN);
1682 append_current_units(buffer);
1683
1684 if(SendMessageW(hTabWnd, CB_FINDSTRINGEXACT, -1, (LPARAM)&buffer) == CB_ERR)
1685 {
1686 float number = 0;
1687 int item_count = SendMessage(hTabWnd, CB_GETCOUNT, 0, 0);
1688
1689 if(!number_from_string(buffer, &number, &unit))
1690 {
1691 MessageBoxWithResStringW(hWnd, MAKEINTRESOURCEW(STRING_INVALID_NUMBER),
1692 wszAppTitle, MB_OK | MB_ICONINFORMATION);
1693 } else if (item_count >= MAX_TAB_STOPS) {
1694 MessageBoxWithResStringW(hWnd, MAKEINTRESOURCEW(STRING_MAX_TAB_STOPS),
1695 wszAppTitle, MB_OK | MB_ICONINFORMATION);
1696 } else {
1697 int i;
1698 float next_number = -1;
1699 int next_number_in_twips = -1;
1700 int insert_number = units_to_twips(unit, number);
1701
1702 /* linear search for position to insert the string */
1703 for(i = 0; i < item_count; i++)
1704 {
1705 SendMessageW(hTabWnd, CB_GETLBTEXT, i, (LPARAM)&buffer);
1706 number_from_string(buffer, &next_number, &unit);
1707 next_number_in_twips = units_to_twips(unit, next_number);
1708 if (insert_number <= next_number_in_twips)
1709 break;
1710 }
1711 if (insert_number != next_number_in_twips)
1712 {
1713 number_with_units(buffer, insert_number);
1714 SendMessageW(hTabWnd, CB_INSERTSTRING, i, (LPARAM)&buffer);
1715 SetWindowTextW(hTabWnd, 0);
1716 }
1717 }
1718 }
1719 SetFocus(hTabWnd);
1720 }
1721 break;
1722
1723 case ID_TAB_DEL:
1724 {
1725 HWND hTabWnd = GetDlgItem(hWnd, IDC_TABSTOPS);
1726 LRESULT ret;
1727 ret = SendMessageW(hTabWnd, CB_GETCURSEL, 0, 0);
1728 if(ret != CB_ERR)
1729 SendMessageW(hTabWnd, CB_DELETESTRING, ret, 0);
1730 }
1731 break;
1732
1733 case ID_TAB_EMPTY:
1734 {
1735 HWND hTabWnd = GetDlgItem(hWnd, IDC_TABSTOPS);
1736 SendMessageW(hTabWnd, CB_RESETCONTENT, 0, 0);
1737 SetFocus(hTabWnd);
1738 }
1739 break;
1740
1741 case IDOK:
1742 {
1743 HWND hTabWnd = GetDlgItem(hWnd, IDC_TABSTOPS);
1744 int i;
1745 WCHAR buffer[MAX_STRING_LEN];
1746 PARAFORMAT pf;
1747 float number;
1748 UNIT unit;
1749
1750 pf.cbSize = sizeof(pf);
1751 pf.dwMask = PFM_TABSTOPS;
1752
1753 for(i = 0; SendMessageW(hTabWnd, CB_GETLBTEXT, i,
1754 (LPARAM)&buffer) != CB_ERR &&
1755 i < MAX_TAB_STOPS; i++)
1756 {
1757 number_from_string(buffer, &number, &unit);
1758 pf.rgxTabs[i] = units_to_twips(unit, number);
1759 }
1760 pf.cTabCount = i;
1761 SendMessageW(hEditorWnd, EM_SETPARAFORMAT, 0, (LPARAM)&pf);
1762 }
1763 /* Fall through */
1764 case IDCANCEL:
1765 EndDialog(hWnd, wParam);
1766 return TRUE;
1767 }
1768 }
1769 return FALSE;
1770 }
1771
1772 static int context_menu(LPARAM lParam)
1773 {
1774 int x = (int)(short)LOWORD(lParam);
1775 int y = (int)(short)HIWORD(lParam);
1776 HMENU hPop = GetSubMenu(hPopupMenu, 0);
1777
1778 if(x == -1)
1779 {
1780 int from = 0, to = 0;
1781 POINTL pt;
1782 SendMessageW(hEditorWnd, EM_GETSEL, (WPARAM)&from, (LPARAM)&to);
1783 SendMessageW(hEditorWnd, EM_POSFROMCHAR, (WPARAM)&pt, to);
1784 ClientToScreen(hEditorWnd, (POINT*)&pt);
1785 x = pt.x;
1786 y = pt.y;
1787 }
1788
1789 TrackPopupMenu(hPop, TPM_LEFTALIGN | TPM_TOPALIGN | TPM_RIGHTBUTTON,
1790 x, y, 0, hMainWnd, 0);
1791
1792 return 0;
1793 }
1794
1795 static LRESULT OnCreate( HWND hWnd )
1796 {
1797 HWND hToolBarWnd, hFormatBarWnd, hReBarWnd, hFontListWnd, hSizeListWnd, hRulerWnd;
1798 HINSTANCE hInstance = GetModuleHandleW(0);
1799 HANDLE hDLL;
1800 TBADDBITMAP ab;
1801 int nStdBitmaps = 0;
1802 REBARINFO rbi;
1803 REBARBANDINFOW rbb;
1804 static const WCHAR wszRichEditDll[] = {'R','I','C','H','E','D','2','0','.','D','L','L','\0'};
1805 static const WCHAR wszRichEditText[] = {'R','i','c','h','E','d','i','t',' ','t','e','x','t','\0'};
1806
1807 CreateStatusWindowW(CCS_NODIVIDER|WS_CHILD|WS_VISIBLE, wszRichEditText, hWnd, IDC_STATUSBAR);
1808
1809 hReBarWnd = CreateWindowExW(WS_EX_TOOLWINDOW, REBARCLASSNAMEW, NULL,
1810 CCS_NODIVIDER|WS_CHILD|WS_VISIBLE|WS_CLIPSIBLINGS|WS_CLIPCHILDREN|RBS_VARHEIGHT|CCS_TOP,
1811 CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, hWnd, (HMENU)IDC_REBAR, hInstance, NULL);
1812
1813 rbi.cbSize = sizeof(rbi);
1814 rbi.fMask = 0;
1815 rbi.himl = NULL;
1816 if(!SendMessageW(hReBarWnd, RB_SETBARINFO, 0, (LPARAM)&rbi))
1817 return -1;
1818
1819 hToolBarWnd = CreateToolbarEx(hReBarWnd, CCS_NOPARENTALIGN|CCS_NOMOVEY|WS_VISIBLE|WS_CHILD|TBSTYLE_TOOLTIPS|TBSTYLE_BUTTON,
1820 IDC_TOOLBAR,
1821 1, hInstance, IDB_TOOLBAR,
1822 NULL, 0,
1823 24, 24, 16, 16, sizeof(TBBUTTON));
1824
1825 ab.hInst = HINST_COMMCTRL;
1826 ab.nID = IDB_STD_SMALL_COLOR;
1827 nStdBitmaps = SendMessageW(hToolBarWnd, TB_ADDBITMAP, 0, (LPARAM)&ab);
1828
1829 AddButton(hToolBarWnd, nStdBitmaps+STD_FILENEW, ID_FILE_NEW);
1830 AddButton(hToolBarWnd, nStdBitmaps+STD_FILEOPEN, ID_FILE_OPEN);
1831 AddButton(hToolBarWnd, nStdBitmaps+STD_FILESAVE, ID_FILE_SAVE);
1832 AddSeparator(hToolBarWnd);
1833 AddButton(hToolBarWnd, nStdBitmaps+STD_PRINT, ID_PRINT_QUICK);
1834 AddButton(hToolBarWnd, nStdBitmaps+STD_PRINTPRE, ID_PREVIEW);
1835 AddSeparator(hToolBarWnd);
1836 AddButton(hToolBarWnd, nStdBitmaps+STD_FIND, ID_FIND);
1837 AddSeparator(hToolBarWnd);
1838 AddButton(hToolBarWnd, nStdBitmaps+STD_CUT, ID_EDIT_CUT);
1839 AddButton(hToolBarWnd, nStdBitmaps+STD_COPY, ID_EDIT_COPY);
1840 AddButton(hToolBarWnd, nStdBitmaps+STD_PASTE, ID_EDIT_PASTE);
1841 AddButton(hToolBarWnd, nStdBitmaps+STD_UNDO, ID_EDIT_UNDO);
1842 AddButton(hToolBarWnd, nStdBitmaps+STD_REDOW, ID_EDIT_REDO);
1843 AddSeparator(hToolBarWnd);
1844 AddButton(hToolBarWnd, 0, ID_DATETIME);
1845
1846 SendMessageW(hToolBarWnd, TB_AUTOSIZE, 0, 0);
1847
1848 rbb.cbSize = REBARBANDINFOW_V6_SIZE;
1849 rbb.fMask = RBBIM_SIZE | RBBIM_CHILDSIZE | RBBIM_CHILD | RBBIM_STYLE | RBBIM_ID;
1850 rbb.fStyle = RBBS_CHILDEDGE | RBBS_BREAK | RBBS_NOGRIPPER;
1851 rbb.cx = 0;
1852 rbb.hwndChild = hToolBarWnd;
1853 rbb.cxMinChild = 0;
1854 rbb.cyChild = rbb.cyMinChild = HIWORD(SendMessageW(hToolBarWnd, TB_GETBUTTONSIZE, 0, 0));
1855 rbb.wID = BANDID_TOOLBAR;
1856
1857 SendMessageW(hReBarWnd, RB_INSERTBAND, -1, (LPARAM)&rbb);
1858
1859 hFontListWnd = CreateWindowExW(0, WC_COMBOBOXEXW, NULL,
1860 WS_BORDER | WS_VISIBLE | WS_CHILD | CBS_DROPDOWN | CBS_SORT,
1861 0, 0, 200, 150, hReBarWnd, (HMENU)IDC_FONTLIST, hInstance, NULL);
1862
1863 rbb.hwndChild = hFontListWnd;
1864 rbb.cx = 200;
1865 rbb.wID = BANDID_FONTLIST;
1866
1867 SendMessageW(hReBarWnd, RB_INSERTBAND, -1, (LPARAM)&rbb);
1868
1869 hSizeListWnd = CreateWindowExW(0, WC_COMBOBOXEXW, NULL,
1870 WS_BORDER | WS_VISIBLE | WS_CHILD | CBS_DROPDOWN,
1871 0, 0, 50, 150, hReBarWnd, (HMENU)IDC_SIZELIST, hInstance, NULL);
1872
1873 rbb.hwndChild = hSizeListWnd;
1874 rbb.cx = 50;
1875 rbb.fStyle ^= RBBS_BREAK;
1876 rbb.wID = BANDID_SIZELIST;
1877
1878 SendMessageW(hReBarWnd, RB_INSERTBAND, -1, (LPARAM)&rbb);
1879
1880 hFormatBarWnd = CreateToolbarEx(hReBarWnd,
1881 CCS_NOPARENTALIGN | CCS_NOMOVEY | WS_VISIBLE | TBSTYLE_TOOLTIPS | TBSTYLE_BUTTON,
1882 IDC_FORMATBAR, 8, hInstance, IDB_FORMATBAR, NULL, 0, 16, 16, 16, 16, sizeof(TBBUTTON));
1883
1884 AddButton(hFormatBarWnd, 0, ID_FORMAT_BOLD);
1885 AddButton(hFormatBarWnd, 1, ID_FORMAT_ITALIC);
1886 AddButton(hFormatBarWnd, 2, ID_FORMAT_UNDERLINE);
1887 AddButton(hFormatBarWnd, 3, ID_FORMAT_COLOR);
1888 AddSeparator(hFormatBarWnd);
1889 AddButton(hFormatBarWnd, 4, ID_ALIGN_LEFT);
1890 AddButton(hFormatBarWnd, 5, ID_ALIGN_CENTER);
1891 AddButton(hFormatBarWnd, 6, ID_ALIGN_RIGHT);
1892 AddSeparator(hFormatBarWnd);
1893 AddButton(hFormatBarWnd, 7, ID_BULLET);
1894
1895 SendMessageW(hFormatBarWnd, TB_AUTOSIZE, 0, 0);
1896
1897 rbb.hwndChild = hFormatBarWnd;
1898 rbb.wID = BANDID_FORMATBAR;
1899
1900 SendMessageW(hReBarWnd, RB_INSERTBAND, -1, (LPARAM)&rbb);
1901
1902 hRulerWnd = CreateWindowExW(0, WC_STATICW, NULL, WS_VISIBLE | WS_CHILD,
1903 0, 0, 200, 10, hReBarWnd, (HMENU)IDC_RULER, hInstance, NULL);
1904
1905
1906 rbb.hwndChild = hRulerWnd;
1907 rbb.wID = BANDID_RULER;
1908 rbb.fStyle |= RBBS_BREAK;
1909
1910 SendMessageW(hReBarWnd, RB_INSERTBAND, -1, (LPARAM)&rbb);
1911
1912 hDLL = LoadLibraryW(wszRichEditDll);
1913 if(!hDLL)
1914 {
1915 MessageBoxWithResStringW(hWnd, MAKEINTRESOURCEW(STRING_LOAD_RICHED_FAILED), wszAppTitle,
1916 MB_OK | MB_ICONEXCLAMATION);
1917 PostQuitMessage(1);
1918 }
1919
1920 hEditorWnd = CreateWindowExW(WS_EX_CLIENTEDGE, RICHEDIT_CLASS20W, NULL,
1921 WS_CHILD|WS_VISIBLE|ES_SELECTIONBAR|ES_MULTILINE|ES_AUTOVSCROLL
1922 |ES_WANTRETURN|WS_VSCROLL|ES_NOHIDESEL|WS_HSCROLL,
1923 0, 0, 1000, 100, hWnd, (HMENU)IDC_EDITOR, hInstance, NULL);
1924
1925 if (!hEditorWnd)
1926 {
1927 fprintf(stderr, "Error code %u\n", GetLastError());
1928 return -1;
1929 }
1930 assert(hEditorWnd);
1931
1932 SetFocus(hEditorWnd);
1933 SendMessageW(hEditorWnd, EM_SETEVENTMASK, 0, ENM_SELCHANGE);
1934
1935 set_default_font();
1936
1937 populate_font_list(hFontListWnd);
1938 populate_size_list(hSizeListWnd);
1939 DoLoadStrings();
1940 SendMessageW(hEditorWnd, EM_SETMODIFY, FALSE, 0);
1941
1942 ID_FINDMSGSTRING = RegisterWindowMessageW(FINDMSGSTRINGW);
1943
1944 registry_read_filelist(hWnd);
1945 registry_read_formatopts_all(barState, wordWrap);
1946 registry_read_options();
1947 DragAcceptFiles(hWnd, TRUE);
1948
1949 return 0;
1950 }
1951
1952 static LRESULT OnUser( HWND hWnd )
1953 {
1954 HWND hwndEditor = GetDlgItem(hWnd, IDC_EDITOR);
1955 HWND hwndReBar = GetDlgItem(hWnd, IDC_REBAR);
1956 HWND hwndToolBar = GetDlgItem(hwndReBar, IDC_TOOLBAR);
1957 HWND hwndFormatBar = GetDlgItem(hwndReBar, IDC_FORMATBAR);
1958 int from, to;
1959 CHARFORMAT2W fmt;
1960 PARAFORMAT2 pf;
1961 GETTEXTLENGTHEX gt;
1962
1963 ZeroMemory(&fmt, sizeof(fmt));
1964 fmt.cbSize = sizeof(fmt);
1965
1966 ZeroMemory(&pf, sizeof(pf));
1967 pf.cbSize = sizeof(pf);
1968
1969 gt.flags = GTL_NUMCHARS;
1970 gt.codepage = 1200;
1971
1972 SendMessageW(hwndToolBar, TB_ENABLEBUTTON, ID_FIND,
1973 SendMessageW(hwndEditor, EM_GETTEXTLENGTHEX, (WPARAM)&gt, 0) ? 1 : 0);
1974
1975 SendMessageW(hwndEditor, EM_GETCHARFORMAT, TRUE, (LPARAM)&fmt);
1976
1977 SendMessageW(hwndEditor, EM_GETSEL, (WPARAM)&from, (LPARAM)&to);
1978 SendMessageW(hwndToolBar, TB_ENABLEBUTTON, ID_EDIT_UNDO,
1979 SendMessageW(hwndEditor, EM_CANUNDO, 0, 0));
1980 SendMessageW(hwndToolBar, TB_ENABLEBUTTON, ID_EDIT_REDO,
1981 SendMessageW(hwndEditor, EM_CANREDO, 0, 0));
1982 SendMessageW(hwndToolBar, TB_ENABLEBUTTON, ID_EDIT_CUT, from == to ? 0 : 1);
1983 SendMessageW(hwndToolBar, TB_ENABLEBUTTON, ID_EDIT_COPY, from == to ? 0 : 1);
1984
1985 SendMessageW(hwndFormatBar, TB_CHECKBUTTON, ID_FORMAT_BOLD, (fmt.dwMask & CFM_BOLD) &&
1986 (fmt.dwEffects & CFE_BOLD));
1987 SendMessageW(hwndFormatBar, TB_INDETERMINATE, ID_FORMAT_BOLD, !(fmt.dwMask & CFM_BOLD));
1988 SendMessageW(hwndFormatBar, TB_CHECKBUTTON, ID_FORMAT_ITALIC, (fmt.dwMask & CFM_ITALIC) &&
1989 (fmt.dwEffects & CFE_ITALIC));
1990 SendMessageW(hwndFormatBar, TB_INDETERMINATE, ID_FORMAT_ITALIC, !(fmt.dwMask & CFM_ITALIC));
1991 SendMessageW(hwndFormatBar, TB_CHECKBUTTON, ID_FORMAT_UNDERLINE, (fmt.dwMask & CFM_UNDERLINE) &&
1992 (fmt.dwEffects & CFE_UNDERLINE));
1993 SendMessageW(hwndFormatBar, TB_INDETERMINATE, ID_FORMAT_UNDERLINE, !(fmt.dwMask & CFM_UNDERLINE));
1994
1995 SendMessageW(hwndEditor, EM_GETPARAFORMAT, 0, (LPARAM)&pf);
1996 SendMessageW(hwndFormatBar, TB_CHECKBUTTON, ID_ALIGN_LEFT, (pf.wAlignment == PFA_LEFT));
1997 SendMessageW(hwndFormatBar, TB_CHECKBUTTON, ID_ALIGN_CENTER, (pf.wAlignment == PFA_CENTER));
1998 SendMessageW(hwndFormatBar, TB_CHECKBUTTON, ID_ALIGN_RIGHT, (pf.wAlignment == PFA_RIGHT));
1999
2000 SendMessageW(hwndFormatBar, TB_CHECKBUTTON, ID_BULLET, (pf.wNumbering & PFN_BULLET));
2001 return 0;
2002 }
2003
2004 static LRESULT OnNotify( HWND hWnd, LPARAM lParam)
2005 {
2006 HWND hwndEditor = GetDlgItem(hWnd, IDC_EDITOR);
2007 HWND hwndReBar = GetDlgItem(hWnd, IDC_REBAR);
2008 NMHDR *pHdr = (NMHDR *)lParam;
2009 HWND hwndFontList = GetDlgItem(hwndReBar, IDC_FONTLIST);
2010 HWND hwndSizeList = GetDlgItem(hwndReBar, IDC_SIZELIST);
2011
2012 if (pHdr->hwndFrom == hwndFontList || pHdr->hwndFrom == hwndSizeList)
2013 {
2014 if (pHdr->code == CBEN_ENDEDITW)
2015 {
2016 NMCBEENDEDIT *endEdit = (NMCBEENDEDIT *)lParam;
2017 if(pHdr->hwndFrom == hwndFontList)
2018 {
2019 on_fontlist_modified((LPWSTR)endEdit->szText);
2020 } else if (pHdr->hwndFrom == hwndSizeList)
2021 {
2022 on_sizelist_modified(hwndFontList,(LPWSTR)endEdit->szText);
2023 }
2024 }
2025 return 0;
2026 }
2027
2028 if (pHdr->hwndFrom != hwndEditor)
2029 return 0;
2030
2031 if (pHdr->code == EN_SELCHANGE)
2032 {
2033 SELCHANGE *pSC = (SELCHANGE *)lParam;
2034 char buf[128];
2035
2036 update_font_list();
2037
2038 sprintf( buf,"selection = %d..%d, line count=%ld",
2039 pSC->chrg.cpMin, pSC->chrg.cpMax,
2040 SendMessage(hwndEditor, EM_GETLINECOUNT, 0, 0));
2041 SetWindowTextA(GetDlgItem(hWnd, IDC_STATUSBAR), buf);
2042 SendMessage(hWnd, WM_USER, 0, 0);
2043 return 1;
2044 }
2045 return 0;
2046 }
2047
2048 /* Copied from dlls/comdlg32/fontdlg.c */
2049 static const COLORREF textcolors[]=
2050 {
2051 0x00000000L,0x00000080L,0x00008000L,0x00008080L,
2052 0x00800000L,0x00800080L,0x00808000L,0x00808080L,
2053 0x00c0c0c0L,0x000000ffL,0x0000ff00L,0x0000ffffL,
2054 0x00ff0000L,0x00ff00ffL,0x00ffff00L,0x00FFFFFFL
2055 };
2056
2057 static LRESULT OnCommand( HWND hWnd, WPARAM wParam, LPARAM lParam)
2058 {
2059 HWND hwndEditor = GetDlgItem(hWnd, IDC_EDITOR);
2060 static FINDREPLACEW findreplace;
2061
2062 if ((HWND)lParam == hwndEditor)
2063 return 0;
2064
2065 switch(LOWORD(wParam))
2066 {
2067
2068 case ID_FILE_EXIT:
2069 PostMessageW(hWnd, WM_CLOSE, 0, 0);
2070 break;
2071
2072 case ID_FILE_NEW:
2073 {
2074 HINSTANCE hInstance = GetModuleHandleW(0);
2075 int ret = DialogBox(hInstance, MAKEINTRESOURCE(IDD_NEWFILE), hWnd,
2076 newfile_proc);
2077
2078 if(ret != ID_NEWFILE_ABORT)
2079 {
2080 if(prompt_save_changes())
2081 {
2082 SETTEXTEX st;
2083
2084 set_caption(NULL);
2085 wszFileName[0] = '\0';
2086
2087 clear_formatting();
2088
2089 st.flags = ST_DEFAULT;
2090 st.codepage = 1200;
2091 SendMessageW(hEditorWnd, EM_SETTEXTEX, (WPARAM)&st, 0);
2092
2093 SendMessageW(hEditorWnd, EM_SETMODIFY, FALSE, 0);
2094 set_fileformat(ret);
2095 update_font_list();
2096 }
2097 }
2098 }
2099 break;
2100
2101 case ID_FILE_OPEN:
2102 DialogOpenFile();
2103 break;
2104
2105 case ID_FILE_SAVE:
2106 if(wszFileName[0])
2107 {
2108 DoSaveFile(wszFileName, fileFormat);
2109 break;
2110 }
2111 /* Fall through */
2112
2113 case ID_FILE_SAVEAS:
2114 DialogSaveFile();
2115 break;
2116
2117 case ID_FILE_RECENT1:
2118 case ID_FILE_RECENT2:
2119 case ID_FILE_RECENT3:
2120 case ID_FILE_RECENT4:
2121 {
2122 HMENU hMenu = GetMenu(hWnd);
2123 MENUITEMINFOW mi;
2124
2125 mi.cbSize = sizeof(MENUITEMINFOW);
2126 mi.fMask = MIIM_DATA;
2127 if(GetMenuItemInfoW(hMenu, LOWORD(wParam), FALSE, &mi))
2128 DoOpenFile((LPWSTR)mi.dwItemData);
2129 }
2130 break;
2131
2132 case ID_FIND:
2133 dialog_find(&findreplace, FALSE);
2134 break;
2135
2136 case ID_FIND_NEXT:
2137 handle_findmsg(&findreplace);
2138 break;
2139
2140 case ID_REPLACE:
2141 dialog_find(&findreplace, TRUE);
2142 break;
2143
2144 case ID_FONTSETTINGS:
2145 dialog_choose_font();
2146 break;
2147
2148 case ID_PRINT:
2149 dialog_print(hWnd, wszFileName);
2150 target_device(hMainWnd, wordWrap[reg_formatindex(fileFormat)]);
2151 break;
2152
2153 case ID_PRINT_QUICK:
2154 print_quick(hMainWnd, wszFileName);
2155 target_device(hMainWnd, wordWrap[reg_formatindex(fileFormat)]);
2156 break;
2157
2158 case ID_PREVIEW:
2159 {
2160 int index = reg_formatindex(fileFormat);
2161 DWORD tmp = barState[index];
2162 barState[index] = 1 << BANDID_STATUSBAR;
2163 set_bar_states();
2164 barState[index] = tmp;
2165 ShowWindow(hEditorWnd, FALSE);
2166
2167 init_preview(hWnd, wszFileName);
2168
2169 SetMenu(hWnd, NULL);
2170 InvalidateRect(0, 0, TRUE);
2171 }
2172 break;
2173
2174 case ID_PRINTSETUP:
2175 dialog_printsetup(hWnd);
2176 target_device(hMainWnd, wordWrap[reg_formatindex(fileFormat)]);
2177 break;
2178
2179 case ID_FORMAT_BOLD:
2180 case ID_FORMAT_ITALIC:
2181 case ID_FORMAT_UNDERLINE:
2182 {
2183 CHARFORMAT2W fmt;
2184 int effects = CFE_BOLD;
2185
2186 ZeroMemory(&fmt, sizeof(fmt));
2187 fmt.cbSize = sizeof(fmt);
2188 SendMessageW(hwndEditor, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
2189
2190 fmt.dwMask = CFM_BOLD;
2191
2192 if (LOWORD(wParam) == ID_FORMAT_ITALIC)
2193 {
2194 effects = CFE_ITALIC;
2195 fmt.dwMask = CFM_ITALIC;
2196 } else if (LOWORD(wParam) == ID_FORMAT_UNDERLINE)
2197 {
2198 effects = CFE_UNDERLINE;
2199 fmt.dwMask = CFM_UNDERLINE;
2200 }
2201
2202 fmt.dwEffects ^= effects;
2203
2204 SendMessageW(hwndEditor, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
2205 break;
2206 }
2207
2208 case ID_FORMAT_COLOR:
2209 {
2210 HWND hReBarWnd = GetDlgItem(hWnd, IDC_REBAR);
2211 HWND hFormatBarWnd = GetDlgItem(hReBarWnd, IDC_FORMATBAR);
2212 HMENU hPop;
2213 RECT itemrc;
2214 POINT pt;
2215 int mid;
2216 int itemidx = SendMessage(hFormatBarWnd, TB_COMMANDTOINDEX, ID_FORMAT_COLOR, 0);
2217
2218 SendMessage(hFormatBarWnd, TB_GETITEMRECT, itemidx, (LPARAM)&itemrc);
2219 pt.x = itemrc.left;
2220 pt.y = itemrc.bottom;
2221 ClientToScreen(hFormatBarWnd, &pt);
2222 hPop = GetSubMenu(hColorPopupMenu, 0);
2223 mid = TrackPopupMenu(hPop, TPM_LEFTALIGN | TPM_TOPALIGN | TPM_LEFTBUTTON |
2224 TPM_RETURNCMD | TPM_NONOTIFY,
2225 pt.x, pt.y, 0, hWnd, 0);
2226 if (mid >= ID_COLOR_FIRST && mid <= ID_COLOR_AUTOMATIC)
2227 {
2228 CHARFORMAT2W fmt;
2229
2230 ZeroMemory(&fmt, sizeof(fmt));
2231 fmt.cbSize = sizeof(fmt);
2232 SendMessageW(hwndEditor, EM_GETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
2233
2234 fmt.dwMask = CFM_COLOR;
2235
2236 if (mid < ID_COLOR_AUTOMATIC) {
2237 fmt.crTextColor = textcolors[mid - ID_COLOR_FIRST];
2238 fmt.dwEffects &= ~CFE_AUTOCOLOR;
2239 } else {
2240 fmt.dwEffects |= CFE_AUTOCOLOR;
2241 }
2242
2243 SendMessageW(hwndEditor, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&fmt);
2244 }
2245 break;
2246 }
2247
2248 case ID_EDIT_CUT:
2249 PostMessageW(hwndEditor, WM_CUT, 0, 0);
2250 break;
2251
2252 case ID_EDIT_COPY:
2253 PostMessageW(hwndEditor, WM_COPY, 0, 0);
2254 break;
2255
2256 case ID_EDIT_PASTE:
2257 PostMessageW(hwndEditor, WM_PASTE, 0, 0);
2258 break;
2259
2260 case ID_EDIT_CLEAR:
2261 PostMessageW(hwndEditor, WM_CLEAR, 0, 0);
2262 break;
2263
2264 case ID_EDIT_SELECTALL:
2265 {
2266 CHARRANGE range = {0, -1};
2267 SendMessageW(hwndEditor, EM_EXSETSEL, 0, (LPARAM)&range);
2268 /* SendMessage(hwndEditor, EM_SETSEL, 0, -1); */
2269 return 0;
2270 }
2271
2272 case ID_EDIT_GETTEXT:
2273 {
2274 int nLen = GetWindowTextLengthW(hwndEditor);
2275 LPWSTR data = HeapAlloc( GetProcessHeap(), 0, (nLen+1)*sizeof(WCHAR) );
2276 TEXTRANGEW tr;
2277
2278 GetWindowTextW(hwndEditor, data, nLen+1);
2279 MessageBoxW(NULL, data, wszAppTitle, MB_OK);
2280
2281 HeapFree( GetProcessHeap(), 0, data);
2282 data = HeapAlloc(GetProcessHeap(), 0, (nLen+1)*sizeof(WCHAR));
2283 tr.chrg.cpMin = 0;
2284 tr.chrg.cpMax = nLen;
2285 tr.lpstrText = data;
2286 SendMessage (hwndEditor, EM_GETTEXTRANGE, 0, (LPARAM)&tr);
2287 MessageBoxW(NULL, data, wszAppTitle, MB_OK);
2288 HeapFree( GetProcessHeap(), 0, data );
2289
2290 /* SendMessage(hwndEditor, EM_SETSEL, 0, -1); */
2291 return 0;
2292 }
2293
2294 case ID_EDIT_CHARFORMAT:
2295 case ID_EDIT_DEFCHARFORMAT:
2296 {
2297 CHARFORMAT2W cf;
2298
2299 ZeroMemory(&cf, sizeof(cf));
2300 cf.cbSize = sizeof(cf);
2301 cf.dwMask = 0;
2302 SendMessageW(hwndEditor, EM_GETCHARFORMAT,
2303 LOWORD(wParam) == ID_EDIT_CHARFORMAT, (LPARAM)&cf);
2304 return 0;
2305 }
2306
2307 case ID_EDIT_PARAFORMAT:
2308 {
2309 PARAFORMAT2 pf;
2310 ZeroMemory(&pf, sizeof(pf));
2311 pf.cbSize = sizeof(pf);
2312 SendMessageW(hwndEditor, EM_GETPARAFORMAT, 0, (LPARAM)&pf);
2313 return 0;
2314 }
2315
2316 case ID_EDIT_SELECTIONINFO:
2317 {
2318 CHARRANGE range = {0, -1};
2319 char buf[128];
2320 WCHAR *data = NULL;
2321
2322 SendMessage(hwndEditor, EM_EXGETSEL, 0, (LPARAM)&range);
2323 data = HeapAlloc(GetProcessHeap(), 0, sizeof(*data) * (range.cpMax-range.cpMin+1));
2324 SendMessage(hwndEditor, EM_GETSELTEXT, 0, (LPARAM)data);
2325 sprintf(buf, "Start = %d, End = %d", range.cpMin, range.cpMax);
2326 MessageBoxA(hWnd, buf, "Editor", MB_OK);
2327 MessageBoxW(hWnd, data, wszAppTitle, MB_OK);
2328 HeapFree( GetProcessHeap(), 0, data);
2329 /* SendMessage(hwndEditor, EM_SETSEL, 0, -1); */
2330 return 0;
2331 }
2332
2333 case ID_EDIT_READONLY:
2334 {
2335 LONG nStyle = GetWindowLong(hwndEditor, GWL_STYLE);
2336 if (nStyle & ES_READONLY)
2337 SendMessageW(hwndEditor, EM_SETREADONLY, 0, 0);
2338 else
2339 SendMessageW(hwndEditor, EM_SETREADONLY, 1, 0);
2340 return 0;
2341 }
2342
2343 case ID_EDIT_MODIFIED:
2344 if (SendMessageW(hwndEditor, EM_GETMODIFY, 0, 0))
2345 SendMessageW(hwndEditor, EM_SETMODIFY, 0, 0);
2346 else
2347 SendMessageW(hwndEditor, EM_SETMODIFY, 1, 0);
2348 return 0;
2349
2350 case ID_EDIT_UNDO:
2351 SendMessageW(hwndEditor, EM_UNDO, 0, 0);
2352 return 0;
2353
2354 case ID_EDIT_REDO:
2355 SendMessageW(hwndEditor, EM_REDO, 0, 0);
2356 return 0;
2357
2358 case ID_BULLET:
2359 {
2360 PARAFORMAT pf;
2361
2362 pf.cbSize = sizeof(pf);
2363 pf.dwMask = PFM_NUMBERING;
2364 SendMessageW(hwndEditor, EM_GETPARAFORMAT, 0, (LPARAM)&pf);
2365
2366 pf.dwMask |= PFM_OFFSET;
2367
2368 if(pf.wNumbering == PFN_BULLET)
2369 {
2370 pf.wNumbering = 0;
2371 pf.dxOffset = 0;
2372 } else
2373 {
2374 pf.wNumbering = PFN_BULLET;
2375 pf.dxOffset = 720;
2376 }
2377
2378 SendMessageW(hwndEditor, EM_SETPARAFORMAT, 0, (LPARAM)&pf);
2379 }
2380 break;
2381
2382 case ID_ALIGN_LEFT:
2383 case ID_ALIGN_CENTER:
2384 case ID_ALIGN_RIGHT:
2385 {
2386 PARAFORMAT2 pf;
2387
2388 pf.cbSize = sizeof(pf);
2389 pf.dwMask = PFM_ALIGNMENT;
2390 switch(LOWORD(wParam)) {
2391 case ID_ALIGN_LEFT: pf.wAlignment = PFA_LEFT; break;
2392 case ID_ALIGN_CENTER: pf.wAlignment = PFA_CENTER; break;
2393 case ID_ALIGN_RIGHT: pf.wAlignment = PFA_RIGHT; break;
2394 }
2395 SendMessageW(hwndEditor, EM_SETPARAFORMAT, 0, (LPARAM)&pf);
2396 break;
2397 }
2398
2399 case ID_BACK_1:
2400 SendMessageW(hwndEditor, EM_SETBKGNDCOLOR, 1, 0);
2401 break;
2402
2403 case ID_BACK_2:
2404 SendMessageW(hwndEditor, EM_SETBKGNDCOLOR, 0, RGB(255,255,192));
2405 break;
2406
2407 case ID_TOGGLE_TOOLBAR:
2408 set_toolbar_state(BANDID_TOOLBAR, !is_bar_visible(BANDID_TOOLBAR));
2409 update_window();
2410 break;
2411
2412 case ID_TOGGLE_FORMATBAR:
2413 set_toolbar_state(BANDID_FONTLIST, !is_bar_visible(BANDID_FORMATBAR));
2414 set_toolbar_state(BANDID_SIZELIST, !is_bar_visible(BANDID_FORMATBAR));
2415 set_toolbar_state(BANDID_FORMATBAR, !is_bar_visible(BANDID_FORMATBAR));
2416 update_window();
2417 break;
2418
2419 case ID_TOGGLE_STATUSBAR:
2420 set_statusbar_state(!is_bar_visible(BANDID_STATUSBAR));
2421 update_window();
2422 break;
2423
2424 case ID_TOGGLE_RULER:
2425 set_toolbar_state(BANDID_RULER, !is_bar_visible(BANDID_RULER));
2426 update_window();
2427 break;
2428
2429 case ID_DATETIME:
2430 DialogBoxW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDD_DATETIME), hWnd, datetime_proc);
2431 break;
2432
2433 case ID_PARAFORMAT:
2434 DialogBoxW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDD_PARAFORMAT), hWnd, paraformat_proc);
2435 break;
2436
2437 case ID_TABSTOPS:
2438 DialogBoxW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDD_TABSTOPS), hWnd, tabstops_proc);
2439 break;
2440
2441 case ID_ABOUT:
2442 dialog_about();
2443 break;
2444
2445 case ID_VIEWPROPERTIES:
2446 dialog_viewproperties();
2447 break;
2448
2449 case IDC_FONTLIST:
2450 if (HIWORD(wParam) == CBN_SELENDOK)
2451 {
2452 WCHAR buffer[LF_FACESIZE];
2453 HWND hwndFontList = (HWND)lParam;
2454 get_comboexlist_selection(hwndFontList, buffer, LF_FACESIZE);
2455 on_fontlist_modified(buffer);
2456 }
2457 break;
2458
2459 case IDC_SIZELIST:
2460 if (HIWORD(wParam) == CBN_SELENDOK)
2461 {
2462 WCHAR buffer[MAX_STRING_LEN+1];
2463 HWND hwndSizeList = (HWND)lParam;
2464 get_comboexlist_selection(hwndSizeList, buffer, MAX_STRING_LEN+1);
2465 on_sizelist_modified(hwndSizeList, buffer);
2466 }
2467 break;
2468
2469 default:
2470 SendMessageW(hwndEditor, WM_COMMAND, wParam, lParam);
2471 break;
2472 }
2473 return 0;
2474 }
2475
2476 static LRESULT OnInitPopupMenu( HWND hWnd, WPARAM wParam )
2477 {
2478 HMENU hMenu = (HMENU)wParam;
2479 HWND hwndEditor = GetDlgItem(hWnd, IDC_EDITOR);
2480 HWND hwndStatus = GetDlgItem(hWnd, IDC_STATUSBAR);
2481 PARAFORMAT pf;
2482 int nAlignment = -1;
2483 int selFrom, selTo;
2484 GETTEXTLENGTHEX gt;
2485 LRESULT textLength;
2486 MENUITEMINFOW mi;
2487
2488 SendMessageW(hEditorWnd, EM_GETSEL, (WPARAM)&selFrom, (LPARAM)&selTo);
2489 EnableMenuItem(hMenu, ID_EDIT_COPY, MF_BYCOMMAND|(selFrom == selTo) ? MF_GRAYED : MF_ENABLED);
2490 EnableMenuItem(hMenu, ID_EDIT_CUT, MF_BYCOMMAND|(selFrom == selTo) ? MF_GRAYED : MF_ENABLED);
2491
2492 pf.cbSize = sizeof(PARAFORMAT);
2493 SendMessageW(hwndEditor, EM_GETPARAFORMAT, 0, (LPARAM)&pf);
2494 CheckMenuItem(hMenu, ID_EDIT_READONLY,
2495 MF_BYCOMMAND|(GetWindowLong(hwndEditor, GWL_STYLE)&ES_READONLY ? MF_CHECKED : MF_UNCHECKED));
2496 CheckMenuItem(hMenu, ID_EDIT_MODIFIED,
2497 MF_BYCOMMAND|(SendMessage(hwndEditor, EM_GETMODIFY, 0, 0) ? MF_CHECKED : MF_UNCHECKED));
2498 if (pf.dwMask & PFM_ALIGNMENT)
2499 nAlignment = pf.wAlignment;
2500 CheckMenuItem(hMenu, ID_ALIGN_LEFT, MF_BYCOMMAND|(nAlignment == PFA_LEFT) ?
2501 MF_CHECKED : MF_UNCHECKED);
2502 CheckMenuItem(hMenu, ID_ALIGN_CENTER, MF_BYCOMMAND|(nAlignment == PFA_CENTER) ?
2503 MF_CHECKED : MF_UNCHECKED);
2504 CheckMenuItem(hMenu, ID_ALIGN_RIGHT, MF_BYCOMMAND|(nAlignment == PFA_RIGHT) ?
2505 MF_CHECKED : MF_UNCHECKED);
2506 CheckMenuItem(hMenu, ID_BULLET, MF_BYCOMMAND | ((pf.wNumbering == PFN_BULLET) ?
2507 MF_CHECKED : MF_UNCHECKED));
2508 EnableMenuItem(hMenu, ID_EDIT_UNDO, MF_BYCOMMAND|(SendMessageW(hwndEditor, EM_CANUNDO, 0, 0)) ?
2509 MF_ENABLED : MF_GRAYED);
2510 EnableMenuItem(hMenu, ID_EDIT_REDO, MF_BYCOMMAND|(SendMessageW(hwndEditor, EM_CANREDO, 0, 0)) ?
2511 MF_ENABLED : MF_GRAYED);
2512
2513 CheckMenuItem(hMenu, ID_TOGGLE_TOOLBAR, MF_BYCOMMAND|(is_bar_visible(BANDID_TOOLBAR)) ?
2514 MF_CHECKED : MF_UNCHECKED);
2515
2516 CheckMenuItem(hMenu, ID_TOGGLE_FORMATBAR, MF_BYCOMMAND|(is_bar_visible(BANDID_FORMATBAR)) ?
2517 MF_CHECKED : MF_UNCHECKED);
2518
2519 CheckMenuItem(hMenu, ID_TOGGLE_STATUSBAR, MF_BYCOMMAND|IsWindowVisible(hwndStatus) ?
2520 MF_CHECKED : MF_UNCHECKED);
2521
2522 CheckMenuItem(hMenu, ID_TOGGLE_RULER, MF_BYCOMMAND|(is_bar_visible(BANDID_RULER)) ? MF_CHECKED : MF_UNCHECKED);
2523
2524 gt.flags = GTL_NUMCHARS;
2525 gt.codepage = 1200;
2526 textLength = SendMessageW(hEditorWnd, EM_GETTEXTLENGTHEX, (WPARAM)&gt, 0);
2527 EnableMenuItem(hMenu, ID_FIND, MF_BYCOMMAND|(textLength ? MF_ENABLED : MF_GRAYED));
2528
2529 mi.cbSize = sizeof(mi);
2530 mi.fMask = MIIM_DATA;
2531
2532 GetMenuItemInfoW(hMenu, ID_FIND_NEXT, FALSE, &mi);
2533
2534 EnableMenuItem(hMenu, ID_FIND_NEXT, MF_BYCOMMAND|((textLength && mi.dwItemData) ?
2535 MF_ENABLED : MF_GRAYED));
2536
2537 EnableMenuItem(hMenu, ID_REPLACE, MF_BYCOMMAND|(textLength ? MF_ENABLED : MF_GRAYED));
2538
2539 return 0;
2540 }
2541
2542 static LRESULT OnSize( HWND hWnd, WPARAM wParam, LPARAM lParam )
2543 {
2544 int nStatusSize = 0;
2545 RECT rc;
2546 HWND hwndEditor = preview_isactive() ? GetDlgItem(hWnd, IDC_PREVIEW) : GetDlgItem(hWnd, IDC_EDITOR);
2547 HWND hwndStatusBar = GetDlgItem(hWnd, IDC_STATUSBAR);
2548 HWND hwndReBar = GetDlgItem(hWnd, IDC_REBAR);
2549 HWND hRulerWnd = GetDlgItem(hwndReBar, IDC_RULER);
2550 int rebarHeight = 0;
2551
2552 if (hwndStatusBar)
2553 {
2554 SendMessageW(hwndStatusBar, WM_SIZE, 0, 0);
2555 if (IsWindowVisible(hwndStatusBar))
2556 {
2557 GetClientRect(hwndStatusBar, &rc);
2558 nStatusSize = rc.bottom - rc.top;
2559 } else
2560 {
2561 nStatusSize = 0;
2562 }
2563 }
2564 if (hwndReBar)
2565 {
2566 rebarHeight = SendMessageW(hwndReBar, RB_GETBARHEIGHT, 0, 0);
2567
2568 MoveWindow(hwndReBar, 0, 0, LOWORD(lParam), rebarHeight, TRUE);
2569 }
2570 if (hwndEditor)
2571 {
2572 GetClientRect(hWnd, &rc);
2573 MoveWindow(hwndEditor, 0, rebarHeight, rc.right, rc.bottom-nStatusSize-rebarHeight, TRUE);
2574 }
2575
2576 redraw_ruler(hRulerWnd);
2577
2578 return DefWindowProcW(hWnd, WM_SIZE, wParam, lParam);
2579 }
2580
2581 static LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
2582 {
2583 if(msg == ID_FINDMSGSTRING)
2584 return handle_findmsg((LPFINDREPLACEW)lParam);
2585
2586 switch(msg)
2587 {
2588 case WM_CREATE:
2589 return OnCreate( hWnd );
2590
2591 case WM_USER:
2592 return OnUser( hWnd );
2593
2594 case WM_NOTIFY:
2595 return OnNotify( hWnd, lParam );
2596
2597 case WM_COMMAND:
2598 if(preview_isactive())
2599 {
2600 return preview_command( hWnd, wParam );
2601 }
2602
2603 return OnCommand( hWnd, wParam, lParam );
2604
2605 case WM_DESTROY:
2606 PostQuitMessage(0);
2607 break;
2608
2609 case WM_CLOSE:
2610 if(preview_isactive())
2611 {
2612 preview_exit(hWnd);
2613 } else if(prompt_save_changes())
2614 {
2615 registry_set_options(hMainWnd);
2616 registry_set_formatopts_all(barState);
2617 PostQuitMessage(0);
2618 }
2619 break;
2620
2621 case WM_ACTIVATE:
2622 if (LOWORD(wParam))
2623 SetFocus(GetDlgItem(hWnd, IDC_EDITOR));
2624 return 0;
2625
2626 case WM_INITMENUPOPUP:
2627 return OnInitPopupMenu( hWnd, wParam );
2628
2629 case WM_SIZE:
2630 return OnSize( hWnd, wParam, lParam );
2631
2632 case WM_CONTEXTMENU:
2633 if((HWND)wParam == hEditorWnd)
2634 return context_menu(lParam);
2635 else
2636 return DefWindowProcW(hWnd, msg, wParam, lParam);
2637
2638 case WM_DROPFILES:
2639 {
2640 WCHAR file[MAX_PATH];
2641 DragQueryFileW((HDROP)wParam, 0, file, MAX_PATH);
2642 DragFinish((HDROP)wParam);
2643
2644 if(prompt_save_changes())
2645 DoOpenFile(file);
2646 }
2647 break;
2648 case WM_PAINT:
2649 if(!preview_isactive())
2650 return DefWindowProcW(hWnd, msg, wParam, lParam);
2651
2652 default:
2653 return DefWindowProcW(hWnd, msg, wParam, lParam);
2654 }
2655
2656 return 0;
2657 }
2658
2659 int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hOldInstance, LPSTR szCmdParagraph, int nCmdShow)
2660 {
2661 INITCOMMONCONTROLSEX classes = {8, ICC_BAR_CLASSES|ICC_COOL_CLASSES|ICC_USEREX_CLASSES};
2662 HACCEL hAccel;
2663 WNDCLASSEXW wc;
2664 MSG msg;
2665 RECT rc;
2666 UINT_PTR hPrevRulerProc;
2667 HWND hRulerWnd;
2668 POINTL EditPoint;
2669 DWORD bMaximized;
2670 static const WCHAR wszAccelTable[] = {'M','A','I','N','A','C','C','E','L',
2671 'T','A','B','L','E','\0'};
2672
2673 InitCommonControlsEx(&classes);
2674
2675 hAccel = LoadAcceleratorsW(hInstance, wszAccelTable);
2676
2677 wc.cbSize = sizeof(wc);
2678 wc.style = CS_HREDRAW | CS_VREDRAW;
2679 wc.lpfnWndProc = WndProc;
2680 wc.cbClsExtra = 0;
2681 wc.cbWndExtra = 4;
2682 wc.hInstance = hInstance;
2683 wc.hIcon = LoadIconW(hInstance, MAKEINTRESOURCEW(IDI_WORDPAD));
2684 wc.hIconSm = LoadImageW(hInstance, MAKEINTRESOURCEW(IDI_WORDPAD), IMAGE_ICON,
2685 GetSystemMetrics(SM_CXSMICON), GetSystemMetrics(SM_CYSMICON), LR_SHARED);
2686 wc.hCursor = LoadCursor(NULL, IDC_IBEAM);
2687 wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW);
2688 wc.lpszMenuName = MAKEINTRESOURCEW(IDM_MAINMENU);
2689 wc.lpszClassName = wszMainWndClass;
2690 RegisterClassExW(&wc);
2691
2692 wc.style = CS_HREDRAW | CS_VREDRAW;
2693 wc.lpfnWndProc = preview_proc;
2694 wc.cbClsExtra = 0;
2695 wc.cbWndExtra = 0;
2696 wc.hInstance = hInstance;
2697 wc.hIcon = NULL;
2698 wc.hIconSm = NULL;
2699 wc.hCursor = LoadCursor(NULL, IDC_IBEAM);
2700 wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW);
2701 wc.lpszMenuName = NULL;
2702 wc.lpszClassName = wszPreviewWndClass;
2703 RegisterClassExW(&wc);
2704
2705 registry_read_winrect(&rc);
2706 hMainWnd = CreateWindowExW(0, wszMainWndClass, wszAppTitle, WS_CLIPCHILDREN|WS_OVERLAPPEDWINDOW,
2707 rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top, NULL, NULL, hInstance, NULL);
2708 registry_read_maximized(&bMaximized);
2709 if ((nCmdShow == SW_SHOWNORMAL || nCmdShow == SW_SHOWDEFAULT)
2710 && bMaximized)
2711 nCmdShow = SW_SHOWMAXIMIZED;
2712 ShowWindow(hMainWnd, nCmdShow);
2713
2714 set_caption(NULL);
2715 set_bar_states();
2716 set_fileformat(SF_RTF);
2717 hPopupMenu = LoadMenuW(hInstance, MAKEINTRESOURCEW(IDM_POPUP));
2718 hColorPopupMenu = LoadMenuW(hInstance, MAKEINTRESOURCEW(IDM_COLOR_POPUP));
2719 get_default_printer_opts();
2720 target_device(hMainWnd, wordWrap[reg_formatindex(fileFormat)]);
2721
2722 hRulerWnd = GetDlgItem(GetDlgItem(hMainWnd, IDC_REBAR), IDC_RULER);
2723 SendMessageW(GetDlgItem(hMainWnd, IDC_EDITOR), EM_POSFROMCHAR, (WPARAM)&EditPoint, 0);
2724 hPrevRulerProc = SetWindowLongPtrW(hRulerWnd, GWLP_WNDPROC, (UINT_PTR)ruler_proc);
2725 SendMessageW(hRulerWnd, WM_USER, (WPARAM)&EditPoint, hPrevRulerProc);
2726
2727 HandleCommandLine(GetCommandLineW());
2728
2729 while(GetMessageW(&msg,0,0,0))
2730 {
2731 if (IsDialogMessage(hFindWnd, &msg))
2732 continue;
2733
2734 if (TranslateAcceleratorW(hMainWnd, hAccel, &msg))
2735 continue;
2736 TranslateMessage(&msg);
2737 DispatchMessageW(&msg);
2738 if (!PeekMessageW(&msg, 0, 0, 0, PM_NOREMOVE))
2739 SendMessageW(hMainWnd, WM_USER, 0, 0);
2740 }
2741
2742 return 0;
2743 }