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