2 * Wordpad implementation
4 * Copyright 2004 by Krzysztof Foltman
5 * Copyright 2007-2008 by Alexander N. Sørnes <alex@thehandofagony.com>
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.
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.
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
22 #define WIN32_LEAN_AND_MEAN
23 #define _WIN32_IE 0x0400
39 #include "wine/unicode.h"
42 #ifdef NONAMELESSUNION
53 static const WCHAR wszAppTitle
[] = {'W','i','n','e',' ','W','o','r','d','p','a','d',0};
55 static const WCHAR wszMainWndClass
[] = {'W','O','R','D','P','A','D','T','O','P',0};
57 static const WCHAR stringFormat
[] = {'%','2','d','\0'};
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
);
63 static HWND hEditorWnd
;
65 static HMENU hPopupMenu
;
66 static HMENU hColorPopupMenu
;
68 static UINT ID_FINDMSGSTRING
;
70 static DWORD wordWrap
[2];
71 static DWORD barState
[2];
72 static WPARAM fileFormat
= SF_RTF
;
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
];
83 static LRESULT
OnSize( HWND hWnd
, WPARAM wParam
, LPARAM lParam
);
92 /* Load string resources */
93 static void DoLoadStrings(void)
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'};
100 HINSTANCE hInstance
= GetModuleHandleW(0);
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;
120 p
= wszDefaultFileName
;
121 LoadStringW(hInstance
, STRING_DEFAULT_FILENAME
, p
, MAX_STRING_LEN
);
124 LoadStringW(hInstance
, STRING_PROMPT_SAVE_CHANGES
, p
, MAX_STRING_LEN
);
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
);
132 /* Show a message box with resource strings */
133 static int MessageBoxWithResStringW(HWND hWnd
, LPCWSTR lpText
, LPCWSTR lpCaption
, UINT uType
)
135 MSGBOXPARAMSW params
;
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(¶ms
);
151 static void AddButton(HWND hwndToolBar
, int nImage
, int nCommand
)
155 ZeroMemory(&button
, sizeof(button
));
156 button
.iBitmap
= nImage
;
157 button
.idCommand
= nCommand
;
158 button
.fsState
= TBSTATE_ENABLED
;
159 button
.fsStyle
= TBSTYLE_BUTTON
;
162 SendMessageW(hwndToolBar
, TB_ADDBUTTONSW
, 1, (LPARAM
)&button
);
165 static void AddSeparator(HWND hwndToolBar
)
169 ZeroMemory(&button
, sizeof(button
));
171 button
.idCommand
= 0;
173 button
.fsStyle
= TBSTYLE_SEP
;
176 SendMessageW(hwndToolBar
, TB_ADDBUTTONSW
, 1, (LPARAM
)&button
);
179 static DWORD CALLBACK
stream_in(DWORD_PTR cookie
, LPBYTE buffer
, LONG cb
, LONG
*pcb
)
181 HANDLE hFile
= (HANDLE
)cookie
;
184 if(!ReadFile(hFile
, buffer
, cb
, &read
, 0))
192 static DWORD CALLBACK
stream_out(DWORD_PTR cookie
, LPBYTE buffer
, LONG cb
, LONG
*pcb
)
196 HANDLE hFile
= (HANDLE
)cookie
;
198 ret
= WriteFile(hFile
, buffer
, cb
, &written
, 0);
200 if(!ret
|| (cb
!= written
))
208 LPWSTR
file_basename(LPWSTR path
)
210 LPWSTR pos
= path
+ lstrlenW(path
);
214 if(*pos
== '\\' || *pos
== '/')
224 static void set_caption(LPCWSTR wszNewFileName
)
226 static const WCHAR wszSeparator
[] = {' ','-',' '};
231 wszNewFileName
= wszDefaultFileName
;
233 wszNewFileName
= file_basename((LPWSTR
)wszNewFileName
);
235 wszCaption
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
236 lstrlenW(wszNewFileName
)*sizeof(WCHAR
)+sizeof(wszSeparator
)+sizeof(wszAppTitle
));
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
));
247 SetWindowTextW(hMainWnd
, wszCaption
);
249 HeapFree(GetProcessHeap(), 0, wszCaption
);
252 static BOOL
validate_endptr(LPCWSTR endptr
, UNIT
*punit
)
261 while(*endptr
== ' ')
265 return *endptr
== '\0';
267 if(!lstrcmpW(endptr
, units_cmW
))
270 endptr
+= lstrlenW(units_cmW
);
272 else if (!lstrcmpW(endptr
, units_inW
))
275 endptr
+= lstrlenW(units_inW
);
277 else if (!lstrcmpW(endptr
, units_inchW
))
280 endptr
+= lstrlenW(units_inchW
);
282 else if (!lstrcmpW(endptr
, units_ptW
))
285 endptr
+= lstrlenW(units_ptW
);
288 return *endptr
== '\0';
291 static BOOL
number_from_string(LPCWSTR string
, float *num
, UNIT
*punit
)
298 ret
= wcstod(string
, &endptr
);
302 if((ret
== 0 && errno
!= 0) || endptr
== string
|| !validate_endptr(endptr
, punit
))
312 static void set_size(float size
)
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
);
323 static void on_sizelist_modified(HWND hwndSizeList
, LPWSTR wszNewFontSize
)
325 WCHAR sizeBuffer
[MAX_STRING_LEN
];
328 ZeroMemory(&format
, sizeof(format
));
329 format
.cbSize
= sizeof(format
);
330 SendMessageW(hEditorWnd
, EM_GETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&format
);
332 wsprintfW(sizeBuffer
, stringFormat
, format
.yHeight
/ 20);
333 if(lstrcmpW(sizeBuffer
, wszNewFontSize
))
336 if(number_from_string(wszNewFontSize
, &size
, NULL
)
342 SetWindowTextW(hwndSizeList
, sizeBuffer
);
343 MessageBoxWithResStringW(hMainWnd
, MAKEINTRESOURCEW(STRING_INVALID_NUMBER
),
344 wszAppTitle
, MB_OK
| MB_ICONINFORMATION
);
349 static void add_size(HWND hSizeListWnd
, unsigned size
)
352 COMBOBOXEXITEMW cbItem
;
353 cbItem
.mask
= CBEIF_TEXT
;
356 wsprintfW(buffer
, stringFormat
, size
);
357 cbItem
.pszText
= buffer
;
358 SendMessageW(hSizeListWnd
, CBEM_INSERTITEMW
, 0, (LPARAM
)&cbItem
);
361 static void populate_size_list(HWND hSizeListWnd
)
363 HWND hReBarWnd
= GetDlgItem(hMainWnd
, IDC_REBAR
);
364 HWND hFontListWnd
= GetDlgItem(hReBarWnd
, IDC_FONTLIST
);
365 COMBOBOXEXITEMW cbFontItem
;
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};
374 ZeroMemory(&fmt
, sizeof(fmt
));
375 fmt
.cbSize
= sizeof(fmt
);
376 SendMessageW(hEditorWnd
, EM_GETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
378 cbFontItem
.mask
= CBEIF_LPARAM
;
379 cbFontItem
.iItem
= SendMessageW(hFontListWnd
, CB_FINDSTRINGEXACT
, -1, (LPARAM
)fmt
.szFaceName
);
380 SendMessageW(hFontListWnd
, CBEM_GETITEMW
, 0, (LPARAM
)&cbFontItem
);
382 fontStyle
= (DWORD
)LOWORD(cbFontItem
.lParam
);
384 SendMessageW(hSizeListWnd
, CB_RESETCONTENT
, 0, 0);
386 if((fontStyle
& RASTER_FONTTYPE
) && cbFontItem
.iItem
)
388 add_size(hSizeListWnd
, (BYTE
)MulDiv(HIWORD(cbFontItem
.lParam
), 72,
389 GetDeviceCaps(hdc
, LOGPIXELSY
)));
392 for(i
= 0; i
< sizeof(choices
)/sizeof(choices
[0]); i
++)
393 add_size(hSizeListWnd
, choices
[i
]);
396 wsprintfW(buffer
, stringFormat
, fmt
.yHeight
/ 20);
397 SendMessageW(hListEditWnd
, WM_SETTEXT
, 0, (LPARAM
)buffer
);
400 static void update_size_list(void)
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
];
408 ZeroMemory(&fmt
, sizeof(fmt
));
409 fmt
.cbSize
= sizeof(fmt
);
411 SendMessageW(hEditorWnd
, EM_GETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
413 SendMessageW(hwndSizeListEdit
, WM_GETTEXT
, MAX_PATH
, (LPARAM
)fontSize
);
414 wsprintfW(sizeBuffer
, stringFormat
, fmt
.yHeight
/ 20);
416 if(lstrcmpW(fontSize
, sizeBuffer
))
417 SendMessageW(hwndSizeListEdit
, WM_SETTEXT
, 0, (LPARAM
)sizeBuffer
);
420 static void update_font_list(void)
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
];
428 ZeroMemory(&fmt
, sizeof(fmt
));
429 fmt
.cbSize
= sizeof(fmt
);
431 SendMessageW(hEditorWnd
, EM_GETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
432 if (!SendMessageW(hFontListEdit
, WM_GETTEXT
, MAX_PATH
, (LPARAM
)fontName
)) return;
434 if(lstrcmpW(fontName
, fmt
.szFaceName
))
436 SendMessageW(hFontListEdit
, WM_SETTEXT
, 0, (LPARAM
)fmt
.szFaceName
);
437 populate_size_list(GetDlgItem(hReBar
, IDC_SIZELIST
));
444 static void clear_formatting(void)
448 pf
.cbSize
= sizeof(pf
);
449 pf
.dwMask
= PFM_ALIGNMENT
;
450 pf
.wAlignment
= PFA_LEFT
;
451 SendMessageW(hEditorWnd
, EM_SETPARAFORMAT
, 0, (LPARAM
)&pf
);
454 static int fileformat_number(WPARAM format
)
458 if(format
== SF_TEXT
)
461 } else if (format
== (SF_TEXT
| SF_UNICODE
))
468 static WPARAM
fileformat_flags(int format
)
470 WPARAM flags
[] = { SF_RTF
, SF_TEXT
, SF_TEXT
| SF_UNICODE
};
472 return flags
[format
];
475 static void set_font(LPCWSTR wszFaceName
)
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);
483 ZeroMemory(&fmt
, sizeof(fmt
));
485 fmt
.cbSize
= sizeof(fmt
);
486 fmt
.dwMask
= CFM_FACE
;
488 lstrcpyW(fmt
.szFaceName
, wszFaceName
);
490 SendMessageW(hEditorWnd
, EM_SETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
492 populate_size_list(hSizeListWnd
);
494 SendMessageW(hFontListEditWnd
, WM_SETTEXT
, 0, (LPARAM
)wszFaceName
);
497 static void set_default_font(void)
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};
505 ZeroMemory(&fmt
, sizeof(fmt
));
507 fmt
.cbSize
= sizeof(fmt
);
508 fmt
.dwMask
= CFM_FACE
| CFM_BOLD
| CFM_ITALIC
| CFM_UNDERLINE
;
511 if(fileFormat
& SF_RTF
)
514 font
= plainTextFont
;
516 lstrcpyW(fmt
.szFaceName
, font
);
518 SendMessageW(hEditorWnd
, EM_SETCHARFORMAT
, SCF_DEFAULT
, (LPARAM
)&fmt
);
521 static void on_fontlist_modified(LPWSTR wszNewFaceName
)
524 ZeroMemory(&format
, sizeof(format
));
525 format
.cbSize
= sizeof(format
);
526 SendMessageW(hEditorWnd
, EM_GETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&format
);
528 if(lstrcmpW(format
.szFaceName
, wszNewFaceName
))
529 set_font(wszNewFaceName
);
532 static void add_font(LPCWSTR fontName
, DWORD fontType
, HWND hListWnd
, const NEWTEXTMETRICEXW
*ntmc
)
534 COMBOBOXEXITEMW cbItem
;
535 WCHAR buffer
[MAX_PATH
];
538 cbItem
.mask
= CBEIF_TEXT
;
539 cbItem
.pszText
= buffer
;
540 cbItem
.cchTextMax
= MAX_STRING_LEN
;
543 while(SendMessageW(hListWnd
, CBEM_GETITEMW
, 0, (LPARAM
)&cbItem
))
545 if(lstrcmpiW(cbItem
.pszText
, fontName
) <= 0)
550 cbItem
.pszText
= HeapAlloc( GetProcessHeap(), 0, (lstrlenW(fontName
) + 1)*sizeof(WCHAR
) );
551 lstrcpyW( cbItem
.pszText
, fontName
);
553 cbItem
.mask
|= CBEIF_LPARAM
;
554 if(fontType
& RASTER_FONTTYPE
)
555 fontHeight
= ntmc
->ntmTm
.tmHeight
- ntmc
->ntmTm
.tmInternalLeading
;
557 cbItem
.lParam
= MAKELONG(fontType
,fontHeight
);
558 SendMessageW(hListWnd
, CBEM_INSERTITEMW
, 0, (LPARAM
)&cbItem
);
559 HeapFree( GetProcessHeap(), 0, cbItem
.pszText
);
562 static void dialog_choose_font(void)
567 HDC hDC
= GetDC(hMainWnd
);
569 ZeroMemory(&cf
, sizeof(cf
));
570 cf
.lStructSize
= sizeof(cf
);
571 cf
.hwndOwner
= hMainWnd
;
573 cf
.Flags
= CF_SCREENFONTS
| CF_NOSCRIPTSEL
| CF_INITTOLOGFONTSTRUCT
| CF_EFFECTS
;
575 ZeroMemory(&fmt
, sizeof(fmt
));
576 fmt
.cbSize
= sizeof(fmt
);
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
;
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;
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
;
603 fmt
.crTextColor
= cf
.rgbColors
;
605 SendMessageW(hEditorWnd
, EM_SETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
606 set_font(cf
.lpLogFont
->lfFaceName
);
611 static int CALLBACK
enum_font_proc(const LOGFONTW
*lpelfe
, const TEXTMETRICW
*lpntme
,
612 DWORD FontType
, LPARAM lParam
)
614 HWND hListWnd
= (HWND
) lParam
;
616 if(SendMessageW(hListWnd
, CB_FINDSTRINGEXACT
, -1, (LPARAM
)lpelfe
->lfFaceName
) == CB_ERR
)
619 add_font(lpelfe
->lfFaceName
, FontType
, hListWnd
, (const NEWTEXTMETRICEXW
*)lpntme
);
625 static void populate_font_list(HWND hListWnd
)
627 HDC hdc
= GetDC(hMainWnd
);
629 HWND hListEditWnd
= (HWND
)SendMessageW(hListWnd
, CBEM_GETEDITCONTROL
, 0, 0);
632 fontinfo
.lfCharSet
= DEFAULT_CHARSET
;
633 *fontinfo
.lfFaceName
= '\0';
634 fontinfo
.lfPitchAndFamily
= 0;
636 EnumFontFamiliesExW(hdc
, &fontinfo
, enum_font_proc
,
637 (LPARAM
)hListWnd
, 0);
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
);
645 static void update_window(void)
649 GetClientRect(hMainWnd
, &rect
);
651 OnSize(hMainWnd
, SIZE_RESTORED
, MAKELPARAM(rect
.right
, rect
.bottom
));
654 static BOOL
is_bar_visible(int bandId
)
656 return barState
[reg_formatindex(fileFormat
)] & (1 << bandId
);
659 static void store_bar_state(int bandId
, BOOL show
)
661 int formatIndex
= reg_formatindex(fileFormat
);
664 barState
[formatIndex
] |= (1 << bandId
);
666 barState
[formatIndex
] &= ~(1 << bandId
);
669 static void set_toolbar_state(int bandId
, BOOL show
)
671 HWND hwndReBar
= GetDlgItem(hMainWnd
, IDC_REBAR
);
673 SendMessageW(hwndReBar
, RB_SHOWBAND
, SendMessageW(hwndReBar
, RB_IDTOINDEX
, bandId
, 0), show
);
675 if(bandId
== BANDID_TOOLBAR
)
677 REBARBANDINFOW rbbinfo
;
678 int index
= SendMessageW(hwndReBar
, RB_IDTOINDEX
, BANDID_FONTLIST
, 0);
680 rbbinfo
.cbSize
= REBARBANDINFOW_V6_SIZE
;
681 rbbinfo
.fMask
= RBBIM_STYLE
;
683 SendMessageW(hwndReBar
, RB_GETBANDINFO
, index
, (LPARAM
)&rbbinfo
);
686 rbbinfo
.fStyle
&= ~RBBS_BREAK
;
688 rbbinfo
.fStyle
|= RBBS_BREAK
;
690 SendMessageW(hwndReBar
, RB_SETBANDINFO
, index
, (LPARAM
)&rbbinfo
);
693 if(bandId
== BANDID_TOOLBAR
|| bandId
== BANDID_FORMATBAR
|| bandId
== BANDID_RULER
)
694 store_bar_state(bandId
, show
);
697 static void set_statusbar_state(BOOL show
)
699 HWND hStatusWnd
= GetDlgItem(hMainWnd
, IDC_STATUSBAR
);
701 ShowWindow(hStatusWnd
, show
? SW_SHOW
: SW_HIDE
);
702 store_bar_state(BANDID_STATUSBAR
, show
);
705 static void set_bar_states(void)
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
));
717 static void preview_exit(HWND hMainWnd
)
719 HMENU hMenu
= LoadMenuW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDM_MAINMENU
));
720 HWND hEditorWnd
= GetDlgItem(hMainWnd
, IDC_EDITOR
);
723 ShowWindow(hEditorWnd
, TRUE
);
725 close_preview(hMainWnd
);
727 SetMenu(hMainWnd
, hMenu
);
728 registry_read_filelist(hMainWnd
);
733 static void set_fileformat(WPARAM format
)
739 target_device(hMainWnd
, wordWrap
[reg_formatindex(fileFormat
)]);
742 static void ShowOpenError(DWORD Code
)
748 case ERROR_ACCESS_DENIED
:
749 Message
= MAKEINTRESOURCEW(STRING_OPEN_ACCESS_DENIED
);
753 Message
= MAKEINTRESOURCEW(STRING_OPEN_FAILED
);
755 MessageBoxW(hMainWnd
, Message
, wszAppTitle
, MB_ICONEXCLAMATION
| MB_OK
);
758 static void DoOpenFile(LPCWSTR szOpenFileName
)
764 WPARAM format
= SF_TEXT
;
766 hFile
= CreateFileW(szOpenFileName
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
767 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
768 if (hFile
== INVALID_HANDLE_VALUE
)
770 ShowOpenError(GetLastError());
774 ReadFile(hFile
, fileStart
, 5, &readOut
, NULL
);
775 SetFilePointer(hFile
, 0, NULL
, FILE_BEGIN
);
777 if(readOut
>= 2 && (BYTE
)fileStart
[0] == 0xff && (BYTE
)fileStart
[1] == 0xfe)
779 format
= SF_TEXT
| SF_UNICODE
;
780 SetFilePointer(hFile
, 2, NULL
, FILE_BEGIN
);
781 } else if(readOut
>= 5)
783 static const char header
[] = "{\\rtf";
784 static const BYTE STG_magic
[] = { 0xd0,0xcf,0x11,0xe0 };
786 if(!memcmp(header
, fileStart
, 5))
788 else if (!memcmp(STG_magic
, fileStart
, sizeof(STG_magic
)))
791 MessageBoxWithResStringW(hMainWnd
, MAKEINTRESOURCEW(STRING_OLE_STORAGE_NOT_SUPPORTED
),
792 wszAppTitle
, MB_OK
| MB_ICONEXCLAMATION
);
797 es
.dwCookie
= (DWORD_PTR
)hFile
;
798 es
.pfnCallback
= stream_in
;
801 set_fileformat(format
);
802 SendMessageW(hEditorWnd
, EM_STREAMIN
, format
, (LPARAM
)&es
);
806 SetFocus(hEditorWnd
);
808 set_caption(szOpenFileName
);
810 lstrcpyW(wszFileName
, szOpenFileName
);
811 SendMessageW(hEditorWnd
, EM_SETMODIFY
, FALSE
, 0);
812 registry_set_filelist(szOpenFileName
, hMainWnd
);
816 static void ShowWriteError(DWORD Code
)
822 case ERROR_ACCESS_DENIED
:
823 Message
= MAKEINTRESOURCEW(STRING_WRITE_ACCESS_DENIED
);
827 Message
= MAKEINTRESOURCEW(STRING_WRITE_FAILED
);
829 MessageBoxW(hMainWnd
, Message
, wszAppTitle
, MB_ICONEXCLAMATION
| MB_OK
);
832 static void DoSaveFile(LPCWSTR wszSaveFileName
, WPARAM format
)
838 hFile
= CreateFileW(wszSaveFileName
, GENERIC_WRITE
, 0, NULL
, CREATE_ALWAYS
,
839 FILE_ATTRIBUTE_NORMAL
, NULL
);
841 if(hFile
== INVALID_HANDLE_VALUE
)
843 ShowWriteError(GetLastError());
847 if(format
== (SF_TEXT
| SF_UNICODE
))
849 static const BYTE unicode
[] = {0xff,0xfe};
851 WriteFile(hFile
, &unicode
, sizeof(unicode
), &writeOut
, 0);
853 if(writeOut
!= sizeof(unicode
))
860 stream
.dwCookie
= (DWORD_PTR
)hFile
;
861 stream
.pfnCallback
= stream_out
;
863 ret
= SendMessageW(hEditorWnd
, EM_STREAMOUT
, format
, (LPARAM
)&stream
);
867 SetFocus(hEditorWnd
);
872 gt
.flags
= GTL_DEFAULT
;
875 if(SendMessageW(hEditorWnd
, EM_GETTEXTLENGTHEX
, (WPARAM
)>
, 0))
879 lstrcpyW(wszFileName
, wszSaveFileName
);
880 set_caption(wszFileName
);
881 SendMessageW(hEditorWnd
, EM_SETMODIFY
, FALSE
, 0);
882 set_fileformat(format
);
885 static void DialogSaveFile(void)
889 WCHAR wszFile
[MAX_PATH
] = {'\0'};
890 static const WCHAR wszDefExt
[] = {'r','t','f','\0'};
892 ZeroMemory(&sfn
, sizeof(sfn
));
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;
903 while(GetSaveFileNameW(&sfn
))
905 if(fileformat_flags(sfn
.nFilterIndex
-1) != SF_RTF
)
907 if(MessageBoxWithResStringW(hMainWnd
, MAKEINTRESOURCEW(STRING_SAVE_LOSEFORMATTING
),
908 wszAppTitle
, MB_YESNO
| MB_ICONEXCLAMATION
) != IDYES
)
913 DoSaveFile(sfn
.lpstrFile
, fileformat_flags(sfn
.nFilterIndex
-1));
918 DoSaveFile(sfn
.lpstrFile
, fileformat_flags(sfn
.nFilterIndex
-1));
924 static BOOL
prompt_save_changes(void)
929 gt
.flags
= GTL_NUMCHARS
;
931 if(!SendMessageW(hEditorWnd
, EM_GETTEXTLENGTHEX
, (WPARAM
)>
, 0))
935 if(!SendMessageW(hEditorWnd
, EM_GETMODIFY
, 0, 0))
940 LPWSTR displayFileName
;
945 displayFileName
= wszDefaultFileName
;
947 displayFileName
= file_basename(wszFileName
);
949 text
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
950 (lstrlenW(displayFileName
)+lstrlenW(wszSaveChanges
))*sizeof(WCHAR
));
955 wsprintfW(text
, wszSaveChanges
, displayFileName
);
957 ret
= MessageBoxW(hMainWnd
, text
, wszAppTitle
, MB_YESNOCANCEL
| MB_ICONEXCLAMATION
);
959 HeapFree(GetProcessHeap(), 0, text
);
968 DoSaveFile(wszFileName
, fileFormat
);
979 static void DialogOpenFile(void)
983 WCHAR wszFile
[MAX_PATH
] = {'\0'};
984 static const WCHAR wszDefExt
[] = {'r','t','f','\0'};
986 ZeroMemory(&ofn
, sizeof(ofn
));
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;
997 if(GetOpenFileNameW(&ofn
))
999 if(prompt_save_changes())
1000 DoOpenFile(ofn
.lpstrFile
);
1004 static void dialog_about(void)
1006 HICON icon
= LoadImageW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDI_WORDPAD
), IMAGE_ICON
, 48, 48, LR_SHARED
);
1007 ShellAboutW(hMainWnd
, wszAppTitle
, 0, icon
);
1010 static INT_PTR CALLBACK
formatopts_proc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1016 LPPROPSHEETPAGEW ps
= (LPPROPSHEETPAGEW
)lParam
;
1019 HWND hIdWnd
= GetDlgItem(hWnd
, IDC_PAGEFMT_ID
);
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
;
1031 CheckRadioButton(hWnd
, IDC_PAGEFMT_WN
,
1032 IDC_PAGEFMT_WM
, wrap
);
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
);
1046 switch(LOWORD(wParam
))
1048 case IDC_PAGEFMT_WN
:
1049 case IDC_PAGEFMT_WW
:
1050 case IDC_PAGEFMT_WM
:
1051 CheckRadioButton(hWnd
, IDC_PAGEFMT_WN
, IDC_PAGEFMT_WM
,
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
)));
1066 LPNMHDR header
= (LPNMHDR
)lParam
;
1067 if(header
->code
== PSN_APPLY
)
1069 HWND hIdWnd
= GetDlgItem(hWnd
, IDC_PAGEFMT_ID
);
1073 GetWindowTextA(hIdWnd
, sid
, 4);
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
;
1082 if(IsDlgButtonChecked(hWnd
, IDC_PAGEFMT_TB
))
1083 barState
[id
] |= (1 << BANDID_TOOLBAR
);
1085 barState
[id
] &= ~(1 << BANDID_TOOLBAR
);
1087 if(IsDlgButtonChecked(hWnd
, IDC_PAGEFMT_FB
))
1088 barState
[id
] |= (1 << BANDID_FORMATBAR
);
1090 barState
[id
] &= ~(1 << BANDID_FORMATBAR
);
1092 if(IsDlgButtonChecked(hWnd
, IDC_PAGEFMT_RU
))
1093 barState
[id
] |= (1 << BANDID_RULER
);
1095 barState
[id
] &= ~(1 << BANDID_RULER
);
1097 if(IsDlgButtonChecked(hWnd
, IDC_PAGEFMT_SB
))
1098 barState
[id
] |= (1 << BANDID_STATUSBAR
);
1100 barState
[id
] &= ~(1 << BANDID_STATUSBAR
);
1108 static void dialog_viewproperties(void)
1110 PROPSHEETPAGEW psp
[2];
1111 PROPSHEETHEADERW psh
;
1113 HINSTANCE hInstance
= GetModuleHandleW(0);
1114 LPCPROPSHEETPAGEW ppsp
= (LPCPROPSHEETPAGEW
)&psp
;
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
++)
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
);
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
);
1145 if(fileFormat
& SF_RTF
)
1146 U2(psh
).nStartPage
= 1;
1148 U2(psh
).nStartPage
= 0;
1149 PropertySheetW(&psh
);
1151 target_device(hMainWnd
, wordWrap
[reg_formatindex(fileFormat
)]);
1154 static void HandleCommandLine(LPWSTR cmdline
)
1159 /* skip white space */
1160 while (*cmdline
== ' ') cmdline
++;
1162 /* skip executable name */
1163 delimiter
= (*cmdline
== '"' ? '"' : ' ');
1165 if (*cmdline
== delimiter
) cmdline
++;
1166 while (*cmdline
&& *cmdline
!= delimiter
) cmdline
++;
1167 if (*cmdline
== delimiter
) cmdline
++;
1171 while (isspace(*cmdline
)) cmdline
++;
1173 if (*cmdline
== '-' || *cmdline
== '/')
1175 if (!cmdline
[2] || isspace(cmdline
[2]))
1186 /* a filename starting by / */
1193 /* file name is passed on the command line */
1194 if (cmdline
[0] == '"')
1197 cmdline
[lstrlenW(cmdline
) - 1] = 0;
1199 DoOpenFile(cmdline
);
1200 InvalidateRect(hMainWnd
, NULL
, FALSE
);
1204 MessageBoxWithResStringW(hMainWnd
, MAKEINTRESOURCEW(STRING_PRINTING_NOT_IMPLEMENTED
), wszAppTitle
, MB_OK
);
1207 static LRESULT
handle_findmsg(LPFINDREPLACEW pFr
)
1209 if(pFr
->Flags
& FR_DIALOGTERM
)
1212 pFr
->Flags
= FR_FINDNEXT
;
1216 if(pFr
->Flags
& FR_FINDNEXT
|| pFr
->Flags
& FR_REPLACE
|| pFr
->Flags
& FR_REPLACEALL
)
1218 DWORD flags
= FR_DOWN
;
1220 static CHARRANGE cr
;
1225 HMENU hMenu
= GetMenu(hMainWnd
);
1228 mi
.cbSize
= sizeof(mi
);
1229 mi
.fMask
= MIIM_DATA
;
1231 SetMenuItemInfoW(hMenu
, ID_FIND_NEXT
, FALSE
, &mi
);
1233 gt
.flags
= GTL_NUMCHARS
;
1236 length
= SendMessageW(hEditorWnd
, EM_GETTEXTLENGTHEX
, (WPARAM
)>
, 0);
1238 if(pFr
->lCustData
== -1)
1240 SendMessageW(hEditorWnd
, EM_GETSEL
, (WPARAM
)&startPos
, (LPARAM
)&end
);
1241 cr
.cpMin
= startPos
;
1242 pFr
->lCustData
= startPos
;
1244 if(cr
.cpMin
== length
)
1248 startPos
= pFr
->lCustData
;
1251 if(cr
.cpMax
> length
)
1259 ft
.lpstrText
= pFr
->lpstrFindWhat
;
1261 if(pFr
->Flags
& FR_MATCHCASE
)
1262 flags
|= FR_MATCHCASE
;
1263 if(pFr
->Flags
& FR_WHOLEWORD
)
1264 flags
|= FR_WHOLEWORD
;
1266 ret
= SendMessageW(hEditorWnd
, EM_FINDTEXTW
, flags
, (LPARAM
)&ft
);
1270 if(cr
.cpMax
== length
&& cr
.cpMax
!= startPos
)
1272 ft
.chrg
.cpMin
= cr
.cpMin
= 0;
1273 ft
.chrg
.cpMax
= cr
.cpMax
= startPos
;
1275 ret
= SendMessageW(hEditorWnd
, EM_FINDTEXTW
, flags
, (LPARAM
)&ft
);
1281 pFr
->lCustData
= -1;
1282 MessageBoxWithResStringW(hMainWnd
, MAKEINTRESOURCEW(STRING_SEARCH_FINISHED
), wszAppTitle
,
1283 MB_OK
| MB_ICONASTERISK
);
1286 end
= ret
+ lstrlenW(pFr
->lpstrFindWhat
);
1288 SendMessageW(hEditorWnd
, EM_SETSEL
, ret
, end
);
1289 SendMessageW(hEditorWnd
, EM_SCROLLCARET
, 0, 0);
1291 if(pFr
->Flags
& FR_REPLACE
|| pFr
->Flags
& FR_REPLACEALL
)
1292 SendMessageW(hEditorWnd
, EM_REPLACESEL
, TRUE
, (LPARAM
)pFr
->lpstrReplaceWith
);
1294 if(pFr
->Flags
& FR_REPLACEALL
)
1295 handle_findmsg(pFr
);
1302 static void dialog_find(LPFINDREPLACEW fr
, BOOL replace
)
1304 static WCHAR findBuffer
[MAX_STRING_LEN
];
1305 static WCHAR replaceBuffer
[MAX_STRING_LEN
];
1307 /* Allow only one search/replace dialog to open */
1308 if(hFindWnd
!= NULL
)
1310 SetActiveWindow(hFindWnd
);
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
;
1321 fr
->wFindWhatLen
= sizeof(findBuffer
);
1322 fr
->wReplaceWithLen
= sizeof(replaceBuffer
);
1325 hFindWnd
= ReplaceTextW(fr
);
1327 hFindWnd
= FindTextW(fr
);
1330 static int units_to_twips(UNIT unit
, float number
)
1337 twips
= (int)(number
* 1000.0 / (float)CENTMM_PER_INCH
* (float)TWIPS_PER_INCH
);
1341 twips
= (int)(number
* (float)TWIPS_PER_INCH
);
1345 twips
= (int)(number
* (0.0138 * (float)TWIPS_PER_INCH
));
1352 static void append_current_units(LPWSTR buffer
)
1354 static const WCHAR space
[] = {' ', 0};
1355 lstrcatW(buffer
, space
);
1356 lstrcatW(buffer
, units_cmW
);
1359 static void number_with_units(LPWSTR buffer
, int number
)
1361 static const WCHAR fmt
[] = {'%','.','2','f',' ','%','s','\0'};
1362 float converted
= (float)number
/ (float)TWIPS_PER_INCH
*(float)CENTMM_PER_INCH
/ 1000.0;
1364 sprintfW(buffer
, fmt
, converted
, units_cmW
);
1367 static BOOL
get_comboexlist_selection(HWND hComboEx
, LPWSTR wszBuffer
, UINT bufferLength
)
1369 COMBOBOXEXITEMW cbItem
;
1370 COMBOBOXINFO cbInfo
;
1374 hCombo
= (HWND
)SendMessage(hComboEx
, CBEM_GETCOMBOCONTROL
, 0, 0);
1377 cbInfo
.cbSize
= sizeof(COMBOBOXINFO
);
1378 result
= SendMessage(hCombo
, CB_GETCOMBOBOXINFO
, 0, (LPARAM
)&cbInfo
);
1381 hList
= cbInfo
.hwndList
;
1382 idx
= SendMessage(hList
, LB_GETCURSEL
, 0, 0);
1386 ZeroMemory(&cbItem
, sizeof(cbItem
));
1387 cbItem
.mask
= CBEIF_TEXT
;
1389 cbItem
.pszText
= wszBuffer
;
1390 cbItem
.cchTextMax
= bufferLength
-1;
1391 result
= SendMessageW(hComboEx
, CBEM_GETITEMW
, 0, (LPARAM
)&cbItem
);
1396 static INT_PTR CALLBACK
datetime_proc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1402 WCHAR buffer
[MAX_STRING_LEN
];
1404 HWND hListWnd
= GetDlgItem(hWnd
, IDC_DATETIME
);
1407 GetDateFormatW(LOCALE_USER_DEFAULT
, DATE_SHORTDATE
, &st
, 0, (LPWSTR
)&buffer
,
1409 SendMessageW(hListWnd
, LB_ADDSTRING
, 0, (LPARAM
)&buffer
);
1410 GetDateFormatW(LOCALE_USER_DEFAULT
, DATE_LONGDATE
, &st
, 0, (LPWSTR
)&buffer
,
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
);
1416 SendMessageW(hListWnd
, LB_SETSEL
, TRUE
, 0);
1421 switch(LOWORD(wParam
))
1424 if (HIWORD(wParam
) != LBN_DBLCLK
)
1431 HWND hListWnd
= GetDlgItem(hWnd
, IDC_DATETIME
);
1433 index
= SendMessageW(hListWnd
, LB_GETCURSEL
, 0, 0);
1437 WCHAR buffer
[MAX_STRING_LEN
];
1438 SendMessageW(hListWnd
, LB_GETTEXT
, index
, (LPARAM
)&buffer
);
1439 SendMessageW(hEditorWnd
, EM_REPLACESEL
, TRUE
, (LPARAM
)&buffer
);
1445 EndDialog(hWnd
, wParam
);
1452 static INT_PTR CALLBACK
newfile_proc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1458 HINSTANCE hInstance
= GetModuleHandleW(0);
1459 WCHAR buffer
[MAX_STRING_LEN
];
1460 HWND hListWnd
= GetDlgItem(hWnd
, IDC_NEWFILE
);
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
);
1469 SendMessageW(hListWnd
, LB_SETSEL
, TRUE
, 0);
1474 switch(LOWORD(wParam
))
1479 HWND hListWnd
= GetDlgItem(hWnd
, IDC_NEWFILE
);
1480 index
= SendMessageW(hListWnd
, LB_GETCURSEL
, 0, 0);
1483 EndDialog(hWnd
, MAKELONG(fileformat_flags(index
),0));
1488 EndDialog(hWnd
, MAKELONG(ID_NEWFILE_ABORT
,0));
1495 static INT_PTR CALLBACK
paraformat_proc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1497 static const WORD ALIGNMENT_VALUES
[] = {PFA_LEFT
, PFA_RIGHT
, PFA_CENTER
};
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
);
1512 LoadStringW(hInstance
, STRING_ALIGN_LEFT
, buffer
,
1514 SendMessageW(hListWnd
, CB_ADDSTRING
, 0, (LPARAM
)buffer
);
1515 LoadStringW(hInstance
, STRING_ALIGN_RIGHT
, buffer
,
1517 SendMessageW(hListWnd
, CB_ADDSTRING
, 0, (LPARAM
)buffer
);
1518 LoadStringW(hInstance
, STRING_ALIGN_CENTER
, buffer
,
1520 SendMessageW(hListWnd
, CB_ADDSTRING
, 0, (LPARAM
)buffer
);
1522 pf
.cbSize
= sizeof(pf
);
1523 pf
.dwMask
= PFM_ALIGNMENT
| PFM_OFFSET
| PFM_RIGHTINDENT
|
1525 SendMessageW(hEditorWnd
, EM_GETPARAFORMAT
, 0, (LPARAM
)&pf
);
1527 if(pf
.wAlignment
== PFA_RIGHT
)
1529 else if(pf
.wAlignment
== PFA_CENTER
)
1532 SendMessageW(hListWnd
, CB_SETCURSEL
, index
, 0);
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
);
1544 switch(LOWORD(wParam
))
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
];
1559 index
= SendMessageW(hListWnd
, CB_GETCURSEL
, 0, 0);
1560 pf
.wAlignment
= ALIGNMENT_VALUES
[index
];
1562 GetWindowTextW(hLeftWnd
, buffer
, MAX_STRING_LEN
);
1563 if(number_from_string(buffer
, &num
, &unit
))
1565 pf
.dxOffset
= units_to_twips(unit
, num
);
1566 GetWindowTextW(hRightWnd
, buffer
, MAX_STRING_LEN
);
1567 if(number_from_string(buffer
, &num
, &unit
))
1569 pf
.dxRightIndent
= units_to_twips(unit
, num
);
1570 GetWindowTextW(hFirstWnd
, buffer
, MAX_STRING_LEN
);
1571 if(number_from_string(buffer
, &num
, &unit
))
1573 pf
.dxStartIndent
= units_to_twips(unit
, num
);
1577 MessageBoxWithResStringW(hMainWnd
, MAKEINTRESOURCEW(STRING_INVALID_NUMBER
),
1578 wszAppTitle
, MB_OK
| MB_ICONASTERISK
);
1582 if (pf
.dxOffset
+ pf
.dxStartIndent
< 0
1583 && pf
.dxStartIndent
< 0)
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);
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
;
1604 pf
.cbSize
= sizeof(pf
);
1605 pf
.dwMask
= PFM_ALIGNMENT
| PFM_OFFSET
| PFM_RIGHTINDENT
|
1607 SendMessageW(hEditorWnd
, EM_SETPARAFORMAT
, 0, (LPARAM
)&pf
);
1613 EndDialog(hWnd
, wParam
);
1620 static INT_PTR CALLBACK
tabstops_proc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1626 HWND hTabWnd
= GetDlgItem(hWnd
, IDC_TABSTOPS
);
1628 WCHAR buffer
[MAX_STRING_LEN
];
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);
1636 for(i
= 0; i
< pf
.cTabCount
; i
++)
1638 number_with_units(buffer
, pf
.rgxTabs
[i
]);
1639 SendMessageW(hTabWnd
, CB_ADDSTRING
, 0, (LPARAM
)&buffer
);
1646 switch(LOWORD(wParam
))
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
);
1655 if(GetWindowTextLengthW(hTabWnd
))
1656 EnableWindow(hAddWnd
, TRUE
);
1658 EnableWindow(hAddWnd
, FALSE
);
1660 if(SendMessageW(hTabWnd
, CB_GETCOUNT
, 0, 0))
1662 EnableWindow(hEmptyWnd
, TRUE
);
1664 if(SendMessageW(hTabWnd
, CB_GETCURSEL
, 0, 0) == CB_ERR
)
1665 EnableWindow(hDelWnd
, FALSE
);
1667 EnableWindow(hDelWnd
, TRUE
);
1670 EnableWindow(hEmptyWnd
, FALSE
);
1677 HWND hTabWnd
= GetDlgItem(hWnd
, IDC_TABSTOPS
);
1678 WCHAR buffer
[MAX_STRING_LEN
];
1681 GetWindowTextW(hTabWnd
, buffer
, MAX_STRING_LEN
);
1682 append_current_units(buffer
);
1684 if(SendMessageW(hTabWnd
, CB_FINDSTRINGEXACT
, -1, (LPARAM
)&buffer
) == CB_ERR
)
1687 int item_count
= SendMessage(hTabWnd
, CB_GETCOUNT
, 0, 0);
1689 if(!number_from_string(buffer
, &number
, &unit
))
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
);
1698 float next_number
= -1;
1699 int next_number_in_twips
= -1;
1700 int insert_number
= units_to_twips(unit
, number
);
1702 /* linear search for position to insert the string */
1703 for(i
= 0; i
< item_count
; i
++)
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
)
1711 if (insert_number
!= next_number_in_twips
)
1713 number_with_units(buffer
, insert_number
);
1714 SendMessageW(hTabWnd
, CB_INSERTSTRING
, i
, (LPARAM
)&buffer
);
1715 SetWindowTextW(hTabWnd
, 0);
1725 HWND hTabWnd
= GetDlgItem(hWnd
, IDC_TABSTOPS
);
1727 ret
= SendMessageW(hTabWnd
, CB_GETCURSEL
, 0, 0);
1729 SendMessageW(hTabWnd
, CB_DELETESTRING
, ret
, 0);
1735 HWND hTabWnd
= GetDlgItem(hWnd
, IDC_TABSTOPS
);
1736 SendMessageW(hTabWnd
, CB_RESETCONTENT
, 0, 0);
1743 HWND hTabWnd
= GetDlgItem(hWnd
, IDC_TABSTOPS
);
1745 WCHAR buffer
[MAX_STRING_LEN
];
1750 pf
.cbSize
= sizeof(pf
);
1751 pf
.dwMask
= PFM_TABSTOPS
;
1753 for(i
= 0; SendMessageW(hTabWnd
, CB_GETLBTEXT
, i
,
1754 (LPARAM
)&buffer
) != CB_ERR
&&
1755 i
< MAX_TAB_STOPS
; i
++)
1757 number_from_string(buffer
, &number
, &unit
);
1758 pf
.rgxTabs
[i
] = units_to_twips(unit
, number
);
1761 SendMessageW(hEditorWnd
, EM_SETPARAFORMAT
, 0, (LPARAM
)&pf
);
1765 EndDialog(hWnd
, wParam
);
1772 static int context_menu(LPARAM lParam
)
1774 int x
= (int)(short)LOWORD(lParam
);
1775 int y
= (int)(short)HIWORD(lParam
);
1776 HMENU hPop
= GetSubMenu(hPopupMenu
, 0);
1780 int from
= 0, to
= 0;
1782 SendMessageW(hEditorWnd
, EM_GETSEL
, (WPARAM
)&from
, (LPARAM
)&to
);
1783 SendMessageW(hEditorWnd
, EM_POSFROMCHAR
, (WPARAM
)&pt
, to
);
1784 ClientToScreen(hEditorWnd
, (POINT
*)&pt
);
1789 TrackPopupMenu(hPop
, TPM_LEFTALIGN
| TPM_TOPALIGN
| TPM_RIGHTBUTTON
,
1790 x
, y
, 0, hMainWnd
, 0);
1795 static LRESULT
OnCreate( HWND hWnd
)
1797 HWND hToolBarWnd
, hFormatBarWnd
, hReBarWnd
, hFontListWnd
, hSizeListWnd
, hRulerWnd
;
1798 HINSTANCE hInstance
= GetModuleHandleW(0);
1801 int nStdBitmaps
= 0;
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'};
1807 CreateStatusWindowW(CCS_NODIVIDER
|WS_CHILD
|WS_VISIBLE
, wszRichEditText
, hWnd
, IDC_STATUSBAR
);
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
);
1813 rbi
.cbSize
= sizeof(rbi
);
1816 if(!SendMessageW(hReBarWnd
, RB_SETBARINFO
, 0, (LPARAM
)&rbi
))
1819 hToolBarWnd
= CreateToolbarEx(hReBarWnd
, CCS_NOPARENTALIGN
|CCS_NOMOVEY
|WS_VISIBLE
|WS_CHILD
|TBSTYLE_TOOLTIPS
|TBSTYLE_BUTTON
,
1821 1, hInstance
, IDB_TOOLBAR
,
1823 24, 24, 16, 16, sizeof(TBBUTTON
));
1825 ab
.hInst
= HINST_COMMCTRL
;
1826 ab
.nID
= IDB_STD_SMALL_COLOR
;
1827 nStdBitmaps
= SendMessageW(hToolBarWnd
, TB_ADDBITMAP
, 0, (LPARAM
)&ab
);
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
);
1846 SendMessageW(hToolBarWnd
, TB_AUTOSIZE
, 0, 0);
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
;
1852 rbb
.hwndChild
= hToolBarWnd
;
1854 rbb
.cyChild
= rbb
.cyMinChild
= HIWORD(SendMessageW(hToolBarWnd
, TB_GETBUTTONSIZE
, 0, 0));
1855 rbb
.wID
= BANDID_TOOLBAR
;
1857 SendMessageW(hReBarWnd
, RB_INSERTBAND
, -1, (LPARAM
)&rbb
);
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
);
1863 rbb
.hwndChild
= hFontListWnd
;
1865 rbb
.wID
= BANDID_FONTLIST
;
1867 SendMessageW(hReBarWnd
, RB_INSERTBAND
, -1, (LPARAM
)&rbb
);
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
);
1873 rbb
.hwndChild
= hSizeListWnd
;
1875 rbb
.fStyle
^= RBBS_BREAK
;
1876 rbb
.wID
= BANDID_SIZELIST
;
1878 SendMessageW(hReBarWnd
, RB_INSERTBAND
, -1, (LPARAM
)&rbb
);
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
));
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
);
1895 SendMessageW(hFormatBarWnd
, TB_AUTOSIZE
, 0, 0);
1897 rbb
.hwndChild
= hFormatBarWnd
;
1898 rbb
.wID
= BANDID_FORMATBAR
;
1900 SendMessageW(hReBarWnd
, RB_INSERTBAND
, -1, (LPARAM
)&rbb
);
1902 hRulerWnd
= CreateWindowExW(0, WC_STATICW
, NULL
, WS_VISIBLE
| WS_CHILD
,
1903 0, 0, 200, 10, hReBarWnd
, (HMENU
)IDC_RULER
, hInstance
, NULL
);
1906 rbb
.hwndChild
= hRulerWnd
;
1907 rbb
.wID
= BANDID_RULER
;
1908 rbb
.fStyle
|= RBBS_BREAK
;
1910 SendMessageW(hReBarWnd
, RB_INSERTBAND
, -1, (LPARAM
)&rbb
);
1912 hDLL
= LoadLibraryW(wszRichEditDll
);
1915 MessageBoxWithResStringW(hWnd
, MAKEINTRESOURCEW(STRING_LOAD_RICHED_FAILED
), wszAppTitle
,
1916 MB_OK
| MB_ICONEXCLAMATION
);
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
);
1927 fprintf(stderr
, "Error code %u\n", GetLastError());
1932 SetFocus(hEditorWnd
);
1933 SendMessageW(hEditorWnd
, EM_SETEVENTMASK
, 0, ENM_SELCHANGE
);
1937 populate_font_list(hFontListWnd
);
1938 populate_size_list(hSizeListWnd
);
1940 SendMessageW(hEditorWnd
, EM_SETMODIFY
, FALSE
, 0);
1942 ID_FINDMSGSTRING
= RegisterWindowMessageW(FINDMSGSTRINGW
);
1944 registry_read_filelist(hWnd
);
1945 registry_read_formatopts_all(barState
, wordWrap
);
1946 registry_read_options();
1947 DragAcceptFiles(hWnd
, TRUE
);
1952 static LRESULT
OnUser( HWND hWnd
)
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
);
1963 ZeroMemory(&fmt
, sizeof(fmt
));
1964 fmt
.cbSize
= sizeof(fmt
);
1966 ZeroMemory(&pf
, sizeof(pf
));
1967 pf
.cbSize
= sizeof(pf
);
1969 gt
.flags
= GTL_NUMCHARS
;
1972 SendMessageW(hwndToolBar
, TB_ENABLEBUTTON
, ID_FIND
,
1973 SendMessageW(hwndEditor
, EM_GETTEXTLENGTHEX
, (WPARAM
)>
, 0) ? 1 : 0);
1975 SendMessageW(hwndEditor
, EM_GETCHARFORMAT
, TRUE
, (LPARAM
)&fmt
);
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);
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
));
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
));
2000 SendMessageW(hwndFormatBar
, TB_CHECKBUTTON
, ID_BULLET
, (pf
.wNumbering
& PFN_BULLET
));
2004 static LRESULT
OnNotify( HWND hWnd
, LPARAM lParam
)
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
);
2012 if (pHdr
->hwndFrom
== hwndFontList
|| pHdr
->hwndFrom
== hwndSizeList
)
2014 if (pHdr
->code
== CBEN_ENDEDITW
)
2016 NMCBEENDEDIT
*endEdit
= (NMCBEENDEDIT
*)lParam
;
2017 if(pHdr
->hwndFrom
== hwndFontList
)
2019 on_fontlist_modified((LPWSTR
)endEdit
->szText
);
2020 } else if (pHdr
->hwndFrom
== hwndSizeList
)
2022 on_sizelist_modified(hwndFontList
,(LPWSTR
)endEdit
->szText
);
2028 if (pHdr
->hwndFrom
!= hwndEditor
)
2031 if (pHdr
->code
== EN_SELCHANGE
)
2033 SELCHANGE
*pSC
= (SELCHANGE
*)lParam
;
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);
2048 /* Copied from dlls/comdlg32/fontdlg.c */
2049 static const COLORREF textcolors
[]=
2051 0x00000000L
,0x00000080L
,0x00008000L
,0x00008080L
,
2052 0x00800000L
,0x00800080L
,0x00808000L
,0x00808080L
,
2053 0x00c0c0c0L
,0x000000ffL
,0x0000ff00L
,0x0000ffffL
,
2054 0x00ff0000L
,0x00ff00ffL
,0x00ffff00L
,0x00FFFFFFL
2057 static LRESULT
OnCommand( HWND hWnd
, WPARAM wParam
, LPARAM lParam
)
2059 HWND hwndEditor
= GetDlgItem(hWnd
, IDC_EDITOR
);
2060 static FINDREPLACEW findreplace
;
2062 if ((HWND
)lParam
== hwndEditor
)
2065 switch(LOWORD(wParam
))
2069 PostMessageW(hWnd
, WM_CLOSE
, 0, 0);
2074 HINSTANCE hInstance
= GetModuleHandleW(0);
2075 int ret
= DialogBox(hInstance
, MAKEINTRESOURCE(IDD_NEWFILE
), hWnd
,
2078 if(ret
!= ID_NEWFILE_ABORT
)
2080 if(prompt_save_changes())
2085 wszFileName
[0] = '\0';
2089 st
.flags
= ST_DEFAULT
;
2091 SendMessageW(hEditorWnd
, EM_SETTEXTEX
, (WPARAM
)&st
, 0);
2093 SendMessageW(hEditorWnd
, EM_SETMODIFY
, FALSE
, 0);
2094 set_fileformat(ret
);
2108 DoSaveFile(wszFileName
, fileFormat
);
2113 case ID_FILE_SAVEAS
:
2117 case ID_FILE_RECENT1
:
2118 case ID_FILE_RECENT2
:
2119 case ID_FILE_RECENT3
:
2120 case ID_FILE_RECENT4
:
2122 HMENU hMenu
= GetMenu(hWnd
);
2125 mi
.cbSize
= sizeof(MENUITEMINFOW
);
2126 mi
.fMask
= MIIM_DATA
;
2127 if(GetMenuItemInfoW(hMenu
, LOWORD(wParam
), FALSE
, &mi
))
2128 DoOpenFile((LPWSTR
)mi
.dwItemData
);
2133 dialog_find(&findreplace
, FALSE
);
2137 handle_findmsg(&findreplace
);
2141 dialog_find(&findreplace
, TRUE
);
2144 case ID_FONTSETTINGS
:
2145 dialog_choose_font();
2149 dialog_print(hWnd
, wszFileName
);
2150 target_device(hMainWnd
, wordWrap
[reg_formatindex(fileFormat
)]);
2153 case ID_PRINT_QUICK
:
2154 print_quick(hMainWnd
, wszFileName
);
2155 target_device(hMainWnd
, wordWrap
[reg_formatindex(fileFormat
)]);
2160 int index
= reg_formatindex(fileFormat
);
2161 DWORD tmp
= barState
[index
];
2162 barState
[index
] = 1 << BANDID_STATUSBAR
;
2164 barState
[index
] = tmp
;
2165 ShowWindow(hEditorWnd
, FALSE
);
2167 init_preview(hWnd
, wszFileName
);
2169 SetMenu(hWnd
, NULL
);
2170 InvalidateRect(0, 0, TRUE
);
2175 dialog_printsetup(hWnd
);
2176 target_device(hMainWnd
, wordWrap
[reg_formatindex(fileFormat
)]);
2179 case ID_FORMAT_BOLD
:
2180 case ID_FORMAT_ITALIC
:
2181 case ID_FORMAT_UNDERLINE
:
2184 int effects
= CFE_BOLD
;
2186 ZeroMemory(&fmt
, sizeof(fmt
));
2187 fmt
.cbSize
= sizeof(fmt
);
2188 SendMessageW(hwndEditor
, EM_GETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
2190 fmt
.dwMask
= CFM_BOLD
;
2192 if (LOWORD(wParam
) == ID_FORMAT_ITALIC
)
2194 effects
= CFE_ITALIC
;
2195 fmt
.dwMask
= CFM_ITALIC
;
2196 } else if (LOWORD(wParam
) == ID_FORMAT_UNDERLINE
)
2198 effects
= CFE_UNDERLINE
;
2199 fmt
.dwMask
= CFM_UNDERLINE
;
2202 fmt
.dwEffects
^= effects
;
2204 SendMessageW(hwndEditor
, EM_SETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
2208 case ID_FORMAT_COLOR
:
2210 HWND hReBarWnd
= GetDlgItem(hWnd
, IDC_REBAR
);
2211 HWND hFormatBarWnd
= GetDlgItem(hReBarWnd
, IDC_FORMATBAR
);
2216 int itemidx
= SendMessage(hFormatBarWnd
, TB_COMMANDTOINDEX
, ID_FORMAT_COLOR
, 0);
2218 SendMessage(hFormatBarWnd
, TB_GETITEMRECT
, itemidx
, (LPARAM
)&itemrc
);
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
)
2230 ZeroMemory(&fmt
, sizeof(fmt
));
2231 fmt
.cbSize
= sizeof(fmt
);
2232 SendMessageW(hwndEditor
, EM_GETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
2234 fmt
.dwMask
= CFM_COLOR
;
2236 if (mid
< ID_COLOR_AUTOMATIC
) {
2237 fmt
.crTextColor
= textcolors
[mid
- ID_COLOR_FIRST
];
2238 fmt
.dwEffects
&= ~CFE_AUTOCOLOR
;
2240 fmt
.dwEffects
|= CFE_AUTOCOLOR
;
2243 SendMessageW(hwndEditor
, EM_SETCHARFORMAT
, SCF_SELECTION
, (LPARAM
)&fmt
);
2249 PostMessageW(hwndEditor
, WM_CUT
, 0, 0);
2253 PostMessageW(hwndEditor
, WM_COPY
, 0, 0);
2257 PostMessageW(hwndEditor
, WM_PASTE
, 0, 0);
2261 PostMessageW(hwndEditor
, WM_CLEAR
, 0, 0);
2264 case ID_EDIT_SELECTALL
:
2266 CHARRANGE range
= {0, -1};
2267 SendMessageW(hwndEditor
, EM_EXSETSEL
, 0, (LPARAM
)&range
);
2268 /* SendMessage(hwndEditor, EM_SETSEL, 0, -1); */
2272 case ID_EDIT_GETTEXT
:
2274 int nLen
= GetWindowTextLengthW(hwndEditor
);
2275 LPWSTR data
= HeapAlloc( GetProcessHeap(), 0, (nLen
+1)*sizeof(WCHAR
) );
2278 GetWindowTextW(hwndEditor
, data
, nLen
+1);
2279 MessageBoxW(NULL
, data
, wszAppTitle
, MB_OK
);
2281 HeapFree( GetProcessHeap(), 0, data
);
2282 data
= HeapAlloc(GetProcessHeap(), 0, (nLen
+1)*sizeof(WCHAR
));
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
);
2290 /* SendMessage(hwndEditor, EM_SETSEL, 0, -1); */
2294 case ID_EDIT_CHARFORMAT
:
2295 case ID_EDIT_DEFCHARFORMAT
:
2299 ZeroMemory(&cf
, sizeof(cf
));
2300 cf
.cbSize
= sizeof(cf
);
2302 SendMessageW(hwndEditor
, EM_GETCHARFORMAT
,
2303 LOWORD(wParam
) == ID_EDIT_CHARFORMAT
, (LPARAM
)&cf
);
2307 case ID_EDIT_PARAFORMAT
:
2310 ZeroMemory(&pf
, sizeof(pf
));
2311 pf
.cbSize
= sizeof(pf
);
2312 SendMessageW(hwndEditor
, EM_GETPARAFORMAT
, 0, (LPARAM
)&pf
);
2316 case ID_EDIT_SELECTIONINFO
:
2318 CHARRANGE range
= {0, -1};
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); */
2333 case ID_EDIT_READONLY
:
2335 LONG nStyle
= GetWindowLong(hwndEditor
, GWL_STYLE
);
2336 if (nStyle
& ES_READONLY
)
2337 SendMessageW(hwndEditor
, EM_SETREADONLY
, 0, 0);
2339 SendMessageW(hwndEditor
, EM_SETREADONLY
, 1, 0);
2343 case ID_EDIT_MODIFIED
:
2344 if (SendMessageW(hwndEditor
, EM_GETMODIFY
, 0, 0))
2345 SendMessageW(hwndEditor
, EM_SETMODIFY
, 0, 0);
2347 SendMessageW(hwndEditor
, EM_SETMODIFY
, 1, 0);
2351 SendMessageW(hwndEditor
, EM_UNDO
, 0, 0);
2355 SendMessageW(hwndEditor
, EM_REDO
, 0, 0);
2362 pf
.cbSize
= sizeof(pf
);
2363 pf
.dwMask
= PFM_NUMBERING
;
2364 SendMessageW(hwndEditor
, EM_GETPARAFORMAT
, 0, (LPARAM
)&pf
);
2366 pf
.dwMask
|= PFM_OFFSET
;
2368 if(pf
.wNumbering
== PFN_BULLET
)
2374 pf
.wNumbering
= PFN_BULLET
;
2378 SendMessageW(hwndEditor
, EM_SETPARAFORMAT
, 0, (LPARAM
)&pf
);
2383 case ID_ALIGN_CENTER
:
2384 case ID_ALIGN_RIGHT
:
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;
2395 SendMessageW(hwndEditor
, EM_SETPARAFORMAT
, 0, (LPARAM
)&pf
);
2400 SendMessageW(hwndEditor
, EM_SETBKGNDCOLOR
, 1, 0);
2404 SendMessageW(hwndEditor
, EM_SETBKGNDCOLOR
, 0, RGB(255,255,192));
2407 case ID_TOGGLE_TOOLBAR
:
2408 set_toolbar_state(BANDID_TOOLBAR
, !is_bar_visible(BANDID_TOOLBAR
));
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
));
2419 case ID_TOGGLE_STATUSBAR
:
2420 set_statusbar_state(!is_bar_visible(BANDID_STATUSBAR
));
2424 case ID_TOGGLE_RULER
:
2425 set_toolbar_state(BANDID_RULER
, !is_bar_visible(BANDID_RULER
));
2430 DialogBoxW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDD_DATETIME
), hWnd
, datetime_proc
);
2434 DialogBoxW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDD_PARAFORMAT
), hWnd
, paraformat_proc
);
2438 DialogBoxW(GetModuleHandleW(0), MAKEINTRESOURCEW(IDD_TABSTOPS
), hWnd
, tabstops_proc
);
2445 case ID_VIEWPROPERTIES
:
2446 dialog_viewproperties();
2450 if (HIWORD(wParam
) == CBN_SELENDOK
)
2452 WCHAR buffer
[LF_FACESIZE
];
2453 HWND hwndFontList
= (HWND
)lParam
;
2454 get_comboexlist_selection(hwndFontList
, buffer
, LF_FACESIZE
);
2455 on_fontlist_modified(buffer
);
2460 if (HIWORD(wParam
) == CBN_SELENDOK
)
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
);
2470 SendMessageW(hwndEditor
, WM_COMMAND
, wParam
, lParam
);
2476 static LRESULT
OnInitPopupMenu( HWND hWnd
, WPARAM wParam
)
2478 HMENU hMenu
= (HMENU
)wParam
;
2479 HWND hwndEditor
= GetDlgItem(hWnd
, IDC_EDITOR
);
2480 HWND hwndStatus
= GetDlgItem(hWnd
, IDC_STATUSBAR
);
2482 int nAlignment
= -1;
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
);
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
);
2513 CheckMenuItem(hMenu
, ID_TOGGLE_TOOLBAR
, MF_BYCOMMAND
|(is_bar_visible(BANDID_TOOLBAR
)) ?
2514 MF_CHECKED
: MF_UNCHECKED
);
2516 CheckMenuItem(hMenu
, ID_TOGGLE_FORMATBAR
, MF_BYCOMMAND
|(is_bar_visible(BANDID_FORMATBAR
)) ?
2517 MF_CHECKED
: MF_UNCHECKED
);
2519 CheckMenuItem(hMenu
, ID_TOGGLE_STATUSBAR
, MF_BYCOMMAND
|IsWindowVisible(hwndStatus
) ?
2520 MF_CHECKED
: MF_UNCHECKED
);
2522 CheckMenuItem(hMenu
, ID_TOGGLE_RULER
, MF_BYCOMMAND
|(is_bar_visible(BANDID_RULER
)) ? MF_CHECKED
: MF_UNCHECKED
);
2524 gt
.flags
= GTL_NUMCHARS
;
2526 textLength
= SendMessageW(hEditorWnd
, EM_GETTEXTLENGTHEX
, (WPARAM
)>
, 0);
2527 EnableMenuItem(hMenu
, ID_FIND
, MF_BYCOMMAND
|(textLength
? MF_ENABLED
: MF_GRAYED
));
2529 mi
.cbSize
= sizeof(mi
);
2530 mi
.fMask
= MIIM_DATA
;
2532 GetMenuItemInfoW(hMenu
, ID_FIND_NEXT
, FALSE
, &mi
);
2534 EnableMenuItem(hMenu
, ID_FIND_NEXT
, MF_BYCOMMAND
|((textLength
&& mi
.dwItemData
) ?
2535 MF_ENABLED
: MF_GRAYED
));
2537 EnableMenuItem(hMenu
, ID_REPLACE
, MF_BYCOMMAND
|(textLength
? MF_ENABLED
: MF_GRAYED
));
2542 static LRESULT
OnSize( HWND hWnd
, WPARAM wParam
, LPARAM lParam
)
2544 int nStatusSize
= 0;
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;
2554 SendMessageW(hwndStatusBar
, WM_SIZE
, 0, 0);
2555 if (IsWindowVisible(hwndStatusBar
))
2557 GetClientRect(hwndStatusBar
, &rc
);
2558 nStatusSize
= rc
.bottom
- rc
.top
;
2566 rebarHeight
= SendMessageW(hwndReBar
, RB_GETBARHEIGHT
, 0, 0);
2568 MoveWindow(hwndReBar
, 0, 0, LOWORD(lParam
), rebarHeight
, TRUE
);
2572 GetClientRect(hWnd
, &rc
);
2573 MoveWindow(hwndEditor
, 0, rebarHeight
, rc
.right
, rc
.bottom
-nStatusSize
-rebarHeight
, TRUE
);
2576 redraw_ruler(hRulerWnd
);
2578 return DefWindowProcW(hWnd
, WM_SIZE
, wParam
, lParam
);
2581 static LRESULT CALLBACK
WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
2583 if(msg
== ID_FINDMSGSTRING
)
2584 return handle_findmsg((LPFINDREPLACEW
)lParam
);
2589 return OnCreate( hWnd
);
2592 return OnUser( hWnd
);
2595 return OnNotify( hWnd
, lParam
);
2598 if(preview_isactive())
2600 return preview_command( hWnd
, wParam
);
2603 return OnCommand( hWnd
, wParam
, lParam
);
2610 if(preview_isactive())
2613 } else if(prompt_save_changes())
2615 registry_set_options(hMainWnd
);
2616 registry_set_formatopts_all(barState
);
2623 SetFocus(GetDlgItem(hWnd
, IDC_EDITOR
));
2626 case WM_INITMENUPOPUP
:
2627 return OnInitPopupMenu( hWnd
, wParam
);
2630 return OnSize( hWnd
, wParam
, lParam
);
2632 case WM_CONTEXTMENU
:
2633 if((HWND
)wParam
== hEditorWnd
)
2634 return context_menu(lParam
);
2636 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
2640 WCHAR file
[MAX_PATH
];
2641 DragQueryFileW((HDROP
)wParam
, 0, file
, MAX_PATH
);
2642 DragFinish((HDROP
)wParam
);
2644 if(prompt_save_changes())
2649 if(!preview_isactive())
2650 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
2653 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
2659 int CALLBACK
WinMain(HINSTANCE hInstance
, HINSTANCE hOldInstance
, LPSTR szCmdParagraph
, int nCmdShow
)
2661 INITCOMMONCONTROLSEX classes
= {8, ICC_BAR_CLASSES
|ICC_COOL_CLASSES
|ICC_USEREX_CLASSES
};
2666 UINT_PTR hPrevRulerProc
;
2670 static const WCHAR wszAccelTable
[] = {'M','A','I','N','A','C','C','E','L',
2671 'T','A','B','L','E','\0'};
2673 InitCommonControlsEx(&classes
);
2675 hAccel
= LoadAcceleratorsW(hInstance
, wszAccelTable
);
2677 wc
.cbSize
= sizeof(wc
);
2678 wc
.style
= CS_HREDRAW
| CS_VREDRAW
;
2679 wc
.lpfnWndProc
= WndProc
;
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
);
2692 wc
.style
= CS_HREDRAW
| CS_VREDRAW
;
2693 wc
.lpfnWndProc
= preview_proc
;
2696 wc
.hInstance
= hInstance
;
2699 wc
.hCursor
= LoadCursor(NULL
, IDC_IBEAM
);
2700 wc
.hbrBackground
= GetSysColorBrush(COLOR_WINDOW
);
2701 wc
.lpszMenuName
= NULL
;
2702 wc
.lpszClassName
= wszPreviewWndClass
;
2703 RegisterClassExW(&wc
);
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
)
2711 nCmdShow
= SW_SHOWMAXIMIZED
;
2712 ShowWindow(hMainWnd
, nCmdShow
);
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
)]);
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
);
2727 HandleCommandLine(GetCommandLineW());
2729 while(GetMessageW(&msg
,0,0,0))
2731 if (IsDialogMessage(hFindWnd
, &msg
))
2734 if (TranslateAcceleratorW(hMainWnd
, hAccel
, &msg
))
2736 TranslateMessage(&msg
);
2737 DispatchMessageW(&msg
);
2738 if (!PeekMessageW(&msg
, 0, 0, 0, PM_NOREMOVE
))
2739 SendMessageW(hMainWnd
, WM_USER
, 0, 0);