4 * Copyright 1998,99 Marcel Baur <mbaur@g26.ethz.ch>
5 * Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
6 * Copyright 2002 Andriy Palamarchuk
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.
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.
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 Street, Fifth Floor, Boston, MA 02110-1301 USA
29 LRESULT CALLBACK
EDIT_WndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
);
31 static const TCHAR helpfile
[] = _T("notepad.hlp");
32 static const TCHAR empty_str
[] = _T("");
33 static const TCHAR szDefaultExt
[] = _T("txt");
34 static const TCHAR txt_files
[] = _T("*.txt");
36 static UINT_PTR CALLBACK
DIALOG_PAGESETUP_Hook(HWND hDlg
, UINT msg
, WPARAM wParam
, LPARAM lParam
);
38 VOID
ShowLastError(VOID
)
40 DWORD error
= GetLastError();
41 if (error
!= NO_ERROR
)
43 LPTSTR lpMsgBuf
= NULL
;
44 TCHAR szTitle
[MAX_STRING_LEN
];
46 LoadString(Globals
.hInstance
, STRING_ERROR
, szTitle
, ARRAY_SIZE(szTitle
));
48 FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER
| FORMAT_MESSAGE_FROM_SYSTEM
,
56 MessageBox(NULL
, lpMsgBuf
, szTitle
, MB_OK
| MB_ICONERROR
);
62 * Sets the caption of the main window according to Globals.szFileTitle:
63 * (untitled) - Notepad if no file is open
64 * [filename] - Notepad if a file is given
66 void UpdateWindowCaption(BOOL clearModifyAlert
)
68 TCHAR szCaption
[MAX_STRING_LEN
];
69 TCHAR szNotepad
[MAX_STRING_LEN
];
70 TCHAR szFilename
[MAX_STRING_LEN
];
72 /* Load the name of the application */
73 LoadString(Globals
.hInstance
, STRING_NOTEPAD
, szNotepad
, ARRAY_SIZE(szNotepad
));
75 /* Determine if the file has been saved or if this is a new file */
76 if (Globals
.szFileTitle
[0] != 0)
77 StringCchCopy(szFilename
, ARRAY_SIZE(szFilename
), Globals
.szFileTitle
);
79 LoadString(Globals
.hInstance
, STRING_UNTITLED
, szFilename
, ARRAY_SIZE(szFilename
));
81 /* When a file is being opened or created, there is no need to have the edited flag shown
82 when the new or opened file has not been edited yet */
84 StringCbPrintf(szCaption
, ARRAY_SIZE(szCaption
), _T("%s - %s"), szFilename
, szNotepad
);
87 BOOL isModified
= (SendMessage(Globals
.hEdit
, EM_GETMODIFY
, 0, 0) ? TRUE
: FALSE
);
89 /* Update the caption based upon if the user has modified the contents of the file or not */
90 StringCbPrintf(szCaption
, ARRAY_SIZE(szCaption
), _T("%s%s - %s"),
91 (isModified
? _T("*") : _T("")), szFilename
, szNotepad
);
94 /* Update the window caption */
95 SetWindowText(Globals
.hMainWnd
, szCaption
);
98 int DIALOG_StringMsgBox(HWND hParent
, int formatId
, LPCTSTR szString
, DWORD dwFlags
)
100 TCHAR szMessage
[MAX_STRING_LEN
];
101 TCHAR szResource
[MAX_STRING_LEN
];
103 /* Load and format szMessage */
104 LoadString(Globals
.hInstance
, formatId
, szResource
, ARRAY_SIZE(szResource
));
105 _sntprintf(szMessage
, ARRAY_SIZE(szMessage
), szResource
, szString
);
108 if ((dwFlags
& MB_ICONMASK
) == MB_ICONEXCLAMATION
)
109 LoadString(Globals
.hInstance
, STRING_ERROR
, szResource
, ARRAY_SIZE(szResource
));
111 LoadString(Globals
.hInstance
, STRING_NOTEPAD
, szResource
, ARRAY_SIZE(szResource
));
113 /* Display Modal Dialog */
114 // if (hParent == NULL)
115 // hParent = Globals.hMainWnd;
116 return MessageBox(hParent
, szMessage
, szResource
, dwFlags
);
119 static void AlertFileNotFound(LPCTSTR szFileName
)
121 DIALOG_StringMsgBox(Globals
.hMainWnd
, STRING_NOTFOUND
, szFileName
, MB_ICONEXCLAMATION
| MB_OK
);
124 static int AlertFileNotSaved(LPCTSTR szFileName
)
126 TCHAR szUntitled
[MAX_STRING_LEN
];
128 LoadString(Globals
.hInstance
, STRING_UNTITLED
, szUntitled
, ARRAY_SIZE(szUntitled
));
130 return DIALOG_StringMsgBox(Globals
.hMainWnd
, STRING_NOTSAVED
,
131 szFileName
[0] ? szFileName
: szUntitled
,
132 MB_ICONQUESTION
| MB_YESNOCANCEL
);
135 static void AlertPrintError(void)
137 TCHAR szUntitled
[MAX_STRING_LEN
];
139 LoadString(Globals
.hInstance
, STRING_UNTITLED
, szUntitled
, ARRAY_SIZE(szUntitled
));
141 DIALOG_StringMsgBox(Globals
.hMainWnd
, STRING_PRINTERROR
,
142 Globals
.szFileName
[0] ? Globals
.szFileName
: szUntitled
,
143 MB_ICONEXCLAMATION
| MB_OK
);
148 * TRUE - if file exists
149 * FALSE - if file does not exist
151 BOOL
FileExists(LPCTSTR szFilename
)
153 WIN32_FIND_DATA entry
;
156 hFile
= FindFirstFile(szFilename
, &entry
);
159 return (hFile
!= INVALID_HANDLE_VALUE
);
162 BOOL
HasFileExtension(LPCTSTR szFilename
)
166 s
= _tcsrchr(szFilename
, _T('\\'));
169 return _tcsrchr(szFilename
, _T('.')) != NULL
;
172 int GetSelectionTextLength(HWND hWnd
)
177 SendMessage(hWnd
, EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
179 return dwEnd
- dwStart
;
182 int GetSelectionText(HWND hWnd
, LPTSTR lpString
, int nMaxCount
)
195 SendMessage(hWnd
, EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
197 if (dwStart
== dwEnd
)
202 dwSize
= GetWindowTextLength(hWnd
) + 1;
203 lpTemp
= HeapAlloc(GetProcessHeap(), 0, dwSize
* sizeof(TCHAR
));
209 dwSize
= GetWindowText(hWnd
, lpTemp
, dwSize
);
213 HeapFree(GetProcessHeap(), 0, lpTemp
);
217 hResult
= StringCchCopyN(lpString
, nMaxCount
, lpTemp
+ dwStart
, dwEnd
- dwStart
);
218 HeapFree(GetProcessHeap(), 0, lpTemp
);
224 return dwEnd
- dwStart
;
227 case STRSAFE_E_INSUFFICIENT_BUFFER
:
229 return nMaxCount
- 1;
240 GetPrintingRect(HDC hdc
, RECT margins
)
242 int iLogPixelsX
, iLogPixelsY
;
243 int iHorzRes
, iVertRes
;
244 int iPhysPageX
, iPhysPageY
, iPhysPageW
, iPhysPageH
;
247 iPhysPageX
= GetDeviceCaps(hdc
, PHYSICALOFFSETX
);
248 iPhysPageY
= GetDeviceCaps(hdc
, PHYSICALOFFSETY
);
249 iPhysPageW
= GetDeviceCaps(hdc
, PHYSICALWIDTH
);
250 iPhysPageH
= GetDeviceCaps(hdc
, PHYSICALHEIGHT
);
251 iLogPixelsX
= GetDeviceCaps(hdc
, LOGPIXELSX
);
252 iLogPixelsY
= GetDeviceCaps(hdc
, LOGPIXELSY
);
253 iHorzRes
= GetDeviceCaps(hdc
, HORZRES
);
254 iVertRes
= GetDeviceCaps(hdc
, VERTRES
);
256 rcPrintRect
.left
= (margins
.left
* iLogPixelsX
/ 2540) - iPhysPageX
;
257 rcPrintRect
.top
= (margins
.top
* iLogPixelsY
/ 2540) - iPhysPageY
;
258 rcPrintRect
.right
= iHorzRes
- (((margins
.left
* iLogPixelsX
/ 2540) - iPhysPageX
) + ((margins
.right
* iLogPixelsX
/ 2540) - (iPhysPageW
- iPhysPageX
- iHorzRes
)));
259 rcPrintRect
.bottom
= iVertRes
- (((margins
.top
* iLogPixelsY
/ 2540) - iPhysPageY
) + ((margins
.bottom
* iLogPixelsY
/ 2540) - (iPhysPageH
- iPhysPageY
- iVertRes
)));
264 static BOOL
DoSaveFile(VOID
)
271 hFile
= CreateFile(Globals
.szFileName
, GENERIC_WRITE
, FILE_SHARE_WRITE
,
272 NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
273 if(hFile
== INVALID_HANDLE_VALUE
)
279 size
= GetWindowTextLength(Globals
.hEdit
) + 1;
280 pTemp
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(*pTemp
));
287 size
= GetWindowText(Globals
.hEdit
, pTemp
, size
);
291 if (!WriteText(hFile
, (LPWSTR
)pTemp
, size
, Globals
.encFile
, Globals
.iEoln
))
298 SendMessage(Globals
.hEdit
, EM_SETMODIFY
, FALSE
, 0);
304 HeapFree(GetProcessHeap(), 0, pTemp
);
310 * TRUE - User agreed to close (both save/don't save)
311 * FALSE - User cancelled close by selecting "Cancel"
313 BOOL
DoCloseFile(VOID
)
317 if (SendMessage(Globals
.hEdit
, EM_GETMODIFY
, 0, 0))
319 /* prompt user to save changes */
320 nResult
= AlertFileNotSaved(Globals
.szFileName
);
324 if(!DIALOG_FileSave())
339 SetFileName(empty_str
);
340 UpdateWindowCaption(TRUE
);
345 VOID
DoOpenFile(LPCTSTR szFileName
)
347 static const TCHAR dotlog
[] = _T(".LOG");
349 LPTSTR pszText
= NULL
;
353 /* Close any files and prompt to save changes */
357 hFile
= CreateFile(szFileName
, GENERIC_READ
, FILE_SHARE_READ
| FILE_SHARE_WRITE
, NULL
,
358 OPEN_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
359 if (hFile
== INVALID_HANDLE_VALUE
)
365 if (!ReadText(hFile
, (LPWSTR
*)&pszText
, &dwTextLen
, &Globals
.encFile
, &Globals
.iEoln
))
370 SetWindowText(Globals
.hEdit
, pszText
);
372 SendMessage(Globals
.hEdit
, EM_SETMODIFY
, FALSE
, 0);
373 SendMessage(Globals
.hEdit
, EM_EMPTYUNDOBUFFER
, 0, 0);
374 SetFocus(Globals
.hEdit
);
376 /* If the file starts with .LOG, add a time/date at the end and set cursor after
377 * See http://support.microsoft.com/?kbid=260563
379 if (GetWindowText(Globals
.hEdit
, log
, ARRAY_SIZE(log
)) && !_tcscmp(log
, dotlog
))
381 static const TCHAR lf
[] = _T("\r\n");
382 SendMessage(Globals
.hEdit
, EM_SETSEL
, GetWindowTextLength(Globals
.hEdit
), -1);
383 SendMessage(Globals
.hEdit
, EM_REPLACESEL
, TRUE
, (LPARAM
)lf
);
384 DIALOG_EditTimeDate();
385 SendMessage(Globals
.hEdit
, EM_REPLACESEL
, TRUE
, (LPARAM
)lf
);
388 SetFileName(szFileName
);
389 UpdateWindowCaption(TRUE
);
390 NOTEPAD_EnableSearchMenu();
392 if (hFile
!= INVALID_HANDLE_VALUE
)
395 HeapFree(GetProcessHeap(), 0, pszText
);
398 VOID
DIALOG_FileNew(VOID
)
400 /* Close any files and prompt to save changes */
402 SetWindowText(Globals
.hEdit
, empty_str
);
403 SendMessage(Globals
.hEdit
, EM_EMPTYUNDOBUFFER
, 0, 0);
404 SetFocus(Globals
.hEdit
);
405 NOTEPAD_EnableSearchMenu();
409 VOID
DIALOG_FileOpen(VOID
)
411 OPENFILENAME openfilename
;
412 TCHAR szPath
[MAX_PATH
];
414 ZeroMemory(&openfilename
, sizeof(openfilename
));
416 if (Globals
.szFileName
[0] == 0)
417 _tcscpy(szPath
, txt_files
);
419 _tcscpy(szPath
, Globals
.szFileName
);
421 openfilename
.lStructSize
= sizeof(openfilename
);
422 openfilename
.hwndOwner
= Globals
.hMainWnd
;
423 openfilename
.hInstance
= Globals
.hInstance
;
424 openfilename
.lpstrFilter
= Globals
.szFilter
;
425 openfilename
.lpstrFile
= szPath
;
426 openfilename
.nMaxFile
= ARRAY_SIZE(szPath
);
427 openfilename
.Flags
= OFN_FILEMUSTEXIST
| OFN_PATHMUSTEXIST
| OFN_HIDEREADONLY
;
428 openfilename
.lpstrDefExt
= szDefaultExt
;
430 if (GetOpenFileName(&openfilename
)) {
431 if (FileExists(openfilename
.lpstrFile
))
432 DoOpenFile(openfilename
.lpstrFile
);
434 AlertFileNotFound(openfilename
.lpstrFile
);
438 BOOL
DIALOG_FileSave(VOID
)
440 if (Globals
.szFileName
[0] == 0)
441 return DIALOG_FileSaveAs();
448 DIALOG_FileSaveAs_Hook(HWND hDlg
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
453 UNREFERENCED_PARAMETER(wParam
);
458 hCombo
= GetDlgItem(hDlg
, ID_ENCODING
);
460 LoadString(Globals
.hInstance
, STRING_ANSI
, szText
, ARRAY_SIZE(szText
));
461 SendMessage(hCombo
, CB_ADDSTRING
, 0, (LPARAM
) szText
);
463 LoadString(Globals
.hInstance
, STRING_UNICODE
, szText
, ARRAY_SIZE(szText
));
464 SendMessage(hCombo
, CB_ADDSTRING
, 0, (LPARAM
) szText
);
466 LoadString(Globals
.hInstance
, STRING_UNICODE_BE
, szText
, ARRAY_SIZE(szText
));
467 SendMessage(hCombo
, CB_ADDSTRING
, 0, (LPARAM
) szText
);
469 LoadString(Globals
.hInstance
, STRING_UTF8
, szText
, ARRAY_SIZE(szText
));
470 SendMessage(hCombo
, CB_ADDSTRING
, 0, (LPARAM
) szText
);
472 SendMessage(hCombo
, CB_SETCURSEL
, Globals
.encFile
, 0);
474 hCombo
= GetDlgItem(hDlg
, ID_EOLN
);
476 LoadString(Globals
.hInstance
, STRING_CRLF
, szText
, ARRAY_SIZE(szText
));
477 SendMessage(hCombo
, CB_ADDSTRING
, 0, (LPARAM
) szText
);
479 LoadString(Globals
.hInstance
, STRING_LF
, szText
, ARRAY_SIZE(szText
));
480 SendMessage(hCombo
, CB_ADDSTRING
, 0, (LPARAM
) szText
);
482 LoadString(Globals
.hInstance
, STRING_CR
, szText
, ARRAY_SIZE(szText
));
483 SendMessage(hCombo
, CB_ADDSTRING
, 0, (LPARAM
) szText
);
485 SendMessage(hCombo
, CB_SETCURSEL
, Globals
.iEoln
, 0);
489 if (((NMHDR
*) lParam
)->code
== CDN_FILEOK
)
491 hCombo
= GetDlgItem(hDlg
, ID_ENCODING
);
493 Globals
.encFile
= (int) SendMessage(hCombo
, CB_GETCURSEL
, 0, 0);
495 hCombo
= GetDlgItem(hDlg
, ID_EOLN
);
497 Globals
.iEoln
= (int) SendMessage(hCombo
, CB_GETCURSEL
, 0, 0);
504 BOOL
DIALOG_FileSaveAs(VOID
)
507 TCHAR szPath
[MAX_PATH
];
509 ZeroMemory(&saveas
, sizeof(saveas
));
511 if (Globals
.szFileName
[0] == 0)
512 _tcscpy(szPath
, txt_files
);
514 _tcscpy(szPath
, Globals
.szFileName
);
516 saveas
.lStructSize
= sizeof(OPENFILENAME
);
517 saveas
.hwndOwner
= Globals
.hMainWnd
;
518 saveas
.hInstance
= Globals
.hInstance
;
519 saveas
.lpstrFilter
= Globals
.szFilter
;
520 saveas
.lpstrFile
= szPath
;
521 saveas
.nMaxFile
= ARRAY_SIZE(szPath
);
522 saveas
.Flags
= OFN_PATHMUSTEXIST
| OFN_OVERWRITEPROMPT
| OFN_HIDEREADONLY
|
523 OFN_EXPLORER
| OFN_ENABLETEMPLATE
| OFN_ENABLEHOOK
;
524 saveas
.lpstrDefExt
= szDefaultExt
;
525 saveas
.lpTemplateName
= MAKEINTRESOURCE(DIALOG_ENCODING
);
526 saveas
.lpfnHook
= DIALOG_FileSaveAs_Hook
;
528 if (GetSaveFileName(&saveas
))
530 /* HACK: Because in ROS, Save-As boxes don't check the validity
531 * of file names and thus, here, szPath can be invalid !! We only
532 * see its validity when we call DoSaveFile()... */
536 UpdateWindowCaption(TRUE
);
551 VOID
DIALOG_FilePrint(VOID
)
558 int xLeft
, yTop
, pagecount
, dopage
, copycount
;
561 HFONT font
, old_font
=0;
564 static const TCHAR times_new_roman
[] = _T("Times New Roman");
567 /* Get a small font and print some header info on each page */
568 ZeroMemory(&hdrFont
, sizeof(hdrFont
));
569 hdrFont
.lfHeight
= 100;
570 hdrFont
.lfWeight
= FW_BOLD
;
571 hdrFont
.lfCharSet
= ANSI_CHARSET
;
572 hdrFont
.lfOutPrecision
= OUT_DEFAULT_PRECIS
;
573 hdrFont
.lfClipPrecision
= CLIP_DEFAULT_PRECIS
;
574 hdrFont
.lfQuality
= PROOF_QUALITY
;
575 hdrFont
.lfPitchAndFamily
= VARIABLE_PITCH
| FF_ROMAN
;
576 _tcscpy(hdrFont
.lfFaceName
, times_new_roman
);
578 font
= CreateFontIndirect(&hdrFont
);
580 /* Get Current Settings */
581 ZeroMemory(&printer
, sizeof(printer
));
582 printer
.lStructSize
= sizeof(printer
);
583 printer
.hwndOwner
= Globals
.hMainWnd
;
584 printer
.hInstance
= Globals
.hInstance
;
586 /* Set some default flags */
587 printer
.Flags
= PD_RETURNDC
| PD_SELECTION
;
589 /* Disable the selection radio button if there is no text selected */
590 if (!GetSelectionTextLength(Globals
.hEdit
))
592 printer
.Flags
= printer
.Flags
| PD_NOSELECTION
;
595 printer
.nFromPage
= 0;
596 printer
.nMinPage
= 1;
597 /* we really need to calculate number of pages to set nMaxPage and nToPage */
598 printer
.nToPage
= (WORD
)-1;
599 printer
.nMaxPage
= (WORD
)-1;
601 /* Let commdlg manage copy settings */
602 printer
.nCopies
= (WORD
)PD_USEDEVMODECOPIES
;
604 printer
.hDevMode
= Globals
.hDevMode
;
605 printer
.hDevNames
= Globals
.hDevNames
;
607 if (!PrintDlg(&printer
))
613 Globals
.hDevMode
= printer
.hDevMode
;
614 Globals
.hDevNames
= printer
.hDevNames
;
616 assert(printer
.hDC
!= 0);
618 /* initialize DOCINFO */
619 di
.cbSize
= sizeof(DOCINFO
);
620 di
.lpszDocName
= Globals
.szFileTitle
;
621 di
.lpszOutput
= NULL
;
622 di
.lpszDatatype
= NULL
;
625 if (StartDoc(printer
.hDC
, &di
) <= 0)
632 /* Get the file text */
633 if (printer
.Flags
& PD_SELECTION
)
635 size
= GetSelectionTextLength(Globals
.hEdit
) + 1;
639 size
= GetWindowTextLength(Globals
.hEdit
) + 1;
642 pTemp
= HeapAlloc(GetProcessHeap(), 0, size
* sizeof(TCHAR
));
651 if (printer
.Flags
& PD_SELECTION
)
653 size
= GetSelectionText(Globals
.hEdit
, pTemp
, size
);
657 size
= GetWindowText(Globals
.hEdit
, pTemp
, size
);
660 /* Get the current printing area */
661 rcPrintRect
= GetPrintingRect(printer
.hDC
, Globals
.lMargins
);
663 /* Ensure that each logical unit maps to one pixel */
664 SetMapMode(printer
.hDC
, MM_TEXT
);
666 /* Needed to get the correct height of a text line */
667 GetTextMetrics(printer
.hDC
, &tm
);
670 for (copycount
=1; copycount
<= printer
.nCopies
; copycount
++) {
674 /* Don't start a page if none of the conditions below are true */
677 /* The user wants to print the current selection */
678 if (printer
.Flags
& PD_SELECTION
)
683 /* The user wants to print the entire document */
684 if (!(printer
.Flags
& PD_PAGENUMS
) && !(printer
.Flags
& PD_SELECTION
))
689 /* The user wants to print a specified range of pages */
690 if ((pagecount
>= printer
.nFromPage
&& pagecount
<= printer
.nToPage
))
695 old_font
= SelectObject(printer
.hDC
, font
);
698 if (StartPage(printer
.hDC
) <= 0) {
699 SelectObject(printer
.hDC
, old_font
);
701 DeleteDC(printer
.hDC
);
702 HeapFree(GetProcessHeap(), 0, pTemp
);
708 SetViewportOrgEx(printer
.hDC
, rcPrintRect
.left
, rcPrintRect
.top
, NULL
);
710 /* Write a rectangle and header at the top of each page */
711 Rectangle(printer
.hDC
, border
, border
, rcPrintRect
.right
- border
, border
+ tm
.tmHeight
* 2);
712 /* I don't know what's up with this TextOut command. This comes out
717 border
+ tm
.tmHeight
/ 2,
719 lstrlen(Globals
.szFileTitle
));
722 /* The starting point for the main text */
724 yTop
= border
+ tm
.tmHeight
* 4;
726 SelectObject(printer
.hDC
, old_font
);
728 /* Since outputting strings is giving me problems, output the main
729 * text one character at a time. */
731 if (pTemp
[i
] == '\n') {
735 else if (pTemp
[i
] != '\r') {
737 TextOut(printer
.hDC
, xLeft
, yTop
, &pTemp
[i
], 1);
739 /* We need to get the width for each individual char, since a proportional font may be used */
740 GetTextExtentPoint32(printer
.hDC
, &pTemp
[i
], 1, &szMetric
);
741 xLeft
+= szMetric
.cx
;
743 /* Insert a line break if the current line does not fit into the printing area */
744 if (xLeft
> rcPrintRect
.right
)
747 yTop
= yTop
+ tm
.tmHeight
;
750 } while (i
++ < size
&& yTop
< rcPrintRect
.bottom
);
753 EndPage(printer
.hDC
);
759 SelectObject(printer
.hDC
, old_font
);
761 DeleteDC(printer
.hDC
);
762 HeapFree(GetProcessHeap(), 0, pTemp
);
766 VOID
DIALOG_FileExit(VOID
)
768 PostMessage(Globals
.hMainWnd
, WM_CLOSE
, 0, 0l);
771 VOID
DIALOG_EditUndo(VOID
)
773 SendMessage(Globals
.hEdit
, EM_UNDO
, 0, 0);
776 VOID
DIALOG_EditCut(VOID
)
778 SendMessage(Globals
.hEdit
, WM_CUT
, 0, 0);
781 VOID
DIALOG_EditCopy(VOID
)
783 SendMessage(Globals
.hEdit
, WM_COPY
, 0, 0);
786 VOID
DIALOG_EditPaste(VOID
)
788 SendMessage(Globals
.hEdit
, WM_PASTE
, 0, 0);
791 VOID
DIALOG_EditDelete(VOID
)
793 SendMessage(Globals
.hEdit
, WM_CLEAR
, 0, 0);
796 VOID
DIALOG_EditSelectAll(VOID
)
798 SendMessage(Globals
.hEdit
, EM_SETSEL
, 0, (LPARAM
)-1);
801 VOID
DIALOG_EditTimeDate(VOID
)
804 TCHAR szDate
[MAX_STRING_LEN
];
805 TCHAR szText
[MAX_STRING_LEN
* 2 + 2];
809 GetTimeFormat(LOCALE_USER_DEFAULT
, 0, &st
, NULL
, szDate
, MAX_STRING_LEN
);
810 _tcscpy(szText
, szDate
);
811 _tcscat(szText
, _T(" "));
812 GetDateFormat(LOCALE_USER_DEFAULT
, DATE_LONGDATE
, &st
, NULL
, szDate
, MAX_STRING_LEN
);
813 _tcscat(szText
, szDate
);
814 SendMessage(Globals
.hEdit
, EM_REPLACESEL
, TRUE
, (LPARAM
)szText
);
817 VOID
DoCreateStatusBar(VOID
)
821 BOOL bStatusBarVisible
;
823 /* Check if status bar object already exists. */
824 if (Globals
.hStatusBar
== NULL
)
826 /* Try to create the status bar */
827 Globals
.hStatusBar
= CreateStatusWindow(WS_CHILD
| WS_VISIBLE
| WS_EX_STATICEDGE
,
830 CMD_STATUSBAR_WND_ID
);
832 if (Globals
.hStatusBar
== NULL
)
838 /* Load the string for formatting column/row text output */
839 LoadString(Globals
.hInstance
, STRING_LINE_COLUMN
, Globals
.szStatusBarLineCol
, MAX_PATH
- 1);
841 /* Set the status bar for single-text output */
842 SendMessage(Globals
.hStatusBar
, SB_SIMPLE
, (WPARAM
)TRUE
, (LPARAM
)0);
845 /* Set status bar visiblity according to the settings. */
846 if (Globals
.bWrapLongLines
== TRUE
|| Globals
.bShowStatusBar
== FALSE
)
848 bStatusBarVisible
= FALSE
;
849 ShowWindow(Globals
.hStatusBar
, SW_HIDE
);
853 bStatusBarVisible
= TRUE
;
854 ShowWindow(Globals
.hStatusBar
, SW_SHOW
);
855 SendMessage(Globals
.hStatusBar
, WM_SIZE
, 0, 0);
858 /* Set check state in show status bar item. */
859 if (bStatusBarVisible
)
861 CheckMenuItem(Globals
.hMenu
, CMD_STATUSBAR
, MF_BYCOMMAND
| MF_CHECKED
);
865 CheckMenuItem(Globals
.hMenu
, CMD_STATUSBAR
, MF_BYCOMMAND
| MF_UNCHECKED
);
868 /* Update menu mar with the previous changes */
869 DrawMenuBar(Globals
.hMainWnd
);
871 /* Sefety test is edit control exists */
872 if (Globals
.hEdit
!= NULL
)
874 /* Retrieve the sizes of the controls */
875 GetClientRect(Globals
.hMainWnd
, &rc
);
876 GetClientRect(Globals
.hStatusBar
, &rcstatus
);
878 /* If status bar is currently visible, update dimensions of edit control */
879 if (bStatusBarVisible
)
880 rc
.bottom
-= (rcstatus
.bottom
- rcstatus
.top
);
882 /* Resize edit control to right size. */
883 MoveWindow(Globals
.hEdit
,
891 /* Update content with current row/column text */
892 DIALOG_StatusBarUpdateCaretPos();
895 VOID
DoCreateEditWindow(VOID
)
900 BOOL bModified
= FALSE
;
904 /* If the edit control already exists, try to save its content */
905 if (Globals
.hEdit
!= NULL
)
907 /* number of chars currently written into the editor. */
908 iSize
= GetWindowTextLength(Globals
.hEdit
);
911 /* Allocates temporary buffer. */
912 pTemp
= HeapAlloc(GetProcessHeap(), 0, (iSize
+ 1) * sizeof(TCHAR
));
919 /* Recover the text into the control. */
920 GetWindowText(Globals
.hEdit
, pTemp
, iSize
+ 1);
922 if (SendMessage(Globals
.hEdit
, EM_GETMODIFY
, 0, 0))
926 /* Restore original window procedure */
927 SetWindowLongPtr(Globals
.hEdit
, GWLP_WNDPROC
, (LONG_PTR
)Globals
.EditProc
);
929 /* Destroy the edit control */
930 DestroyWindow(Globals
.hEdit
);
933 /* Update wrap status into the main menu and recover style flags */
934 if (Globals
.bWrapLongLines
)
936 dwStyle
= EDIT_STYLE_WRAP
;
937 EnableMenuItem(Globals
.hMenu
, CMD_STATUSBAR
, MF_BYCOMMAND
| MF_DISABLED
| MF_GRAYED
);
939 dwStyle
= EDIT_STYLE
;
940 EnableMenuItem(Globals
.hMenu
, CMD_STATUSBAR
, MF_BYCOMMAND
| MF_ENABLED
);
943 /* Update previous changes */
944 DrawMenuBar(Globals
.hMainWnd
);
946 /* Create the new edit control */
947 Globals
.hEdit
= CreateWindowEx(WS_EX_CLIENTEDGE
,
960 if (Globals
.hEdit
== NULL
)
964 HeapFree(GetProcessHeap(), 0, pTemp
);
971 SendMessage(Globals
.hEdit
, WM_SETFONT
, (WPARAM
)Globals
.hFont
, FALSE
);
972 SendMessage(Globals
.hEdit
, EM_LIMITTEXT
, 0, 0);
974 /* If some text was previously saved, restore it. */
977 SetWindowText(Globals
.hEdit
, pTemp
);
978 HeapFree(GetProcessHeap(), 0, pTemp
);
981 SendMessage(Globals
.hEdit
, EM_SETMODIFY
, TRUE
, 0);
984 /* Sub-class a new window callback for row/column detection. */
985 Globals
.EditProc
= (WNDPROC
)SetWindowLongPtr(Globals
.hEdit
,
987 (LONG_PTR
)EDIT_WndProc
);
989 /* Create/update status bar */
992 /* Finally shows new edit control and set focus into it. */
993 ShowWindow(Globals
.hEdit
, SW_SHOW
);
994 SetFocus(Globals
.hEdit
);
997 VOID
DIALOG_EditWrap(VOID
)
999 Globals
.bWrapLongLines
= !Globals
.bWrapLongLines
;
1001 if (Globals
.bWrapLongLines
)
1003 EnableMenuItem(Globals
.hMenu
, CMD_GOTO
, MF_BYCOMMAND
| MF_DISABLED
| MF_GRAYED
);
1007 EnableMenuItem(Globals
.hMenu
, CMD_GOTO
, MF_BYCOMMAND
| MF_ENABLED
);
1010 DoCreateEditWindow();
1013 VOID
DIALOG_SelectFont(VOID
)
1016 LOGFONT lf
= Globals
.lfFont
;
1018 ZeroMemory( &cf
, sizeof(cf
) );
1019 cf
.lStructSize
= sizeof(cf
);
1020 cf
.hwndOwner
= Globals
.hMainWnd
;
1022 cf
.Flags
= CF_SCREENFONTS
| CF_INITTOLOGFONTSTRUCT
| CF_NOVERTFONTS
;
1024 if (ChooseFont(&cf
))
1026 HFONT currfont
= Globals
.hFont
;
1028 Globals
.hFont
= CreateFontIndirect(&lf
);
1029 Globals
.lfFont
= lf
;
1030 SendMessage(Globals
.hEdit
, WM_SETFONT
, (WPARAM
)Globals
.hFont
, (LPARAM
)TRUE
);
1031 if (currfont
!= NULL
)
1032 DeleteObject(currfont
);
1036 typedef HWND (WINAPI
*FINDPROC
)(LPFINDREPLACE lpfr
);
1038 static VOID
DIALOG_SearchDialog(FINDPROC pfnProc
)
1040 ZeroMemory(&Globals
.find
, sizeof(Globals
.find
));
1041 Globals
.find
.lStructSize
= sizeof(Globals
.find
);
1042 Globals
.find
.hwndOwner
= Globals
.hMainWnd
;
1043 Globals
.find
.hInstance
= Globals
.hInstance
;
1044 Globals
.find
.lpstrFindWhat
= Globals
.szFindText
;
1045 Globals
.find
.wFindWhatLen
= ARRAY_SIZE(Globals
.szFindText
);
1046 Globals
.find
.lpstrReplaceWith
= Globals
.szReplaceText
;
1047 Globals
.find
.wReplaceWithLen
= ARRAY_SIZE(Globals
.szReplaceText
);
1048 Globals
.find
.Flags
= FR_DOWN
;
1050 /* We only need to create the modal FindReplace dialog which will */
1051 /* notify us of incoming events using hMainWnd Window Messages */
1053 Globals
.hFindReplaceDlg
= pfnProc(&Globals
.find
);
1054 assert(Globals
.hFindReplaceDlg
!= 0);
1057 VOID
DIALOG_Search(VOID
)
1059 DIALOG_SearchDialog(FindText
);
1062 VOID
DIALOG_SearchNext(VOID
)
1064 if (Globals
.find
.lpstrFindWhat
!= NULL
)
1065 NOTEPAD_FindNext(&Globals
.find
, FALSE
, TRUE
);
1070 VOID
DIALOG_Replace(VOID
)
1072 DIALOG_SearchDialog(ReplaceText
);
1077 DIALOG_GoTo_DialogProc(HWND hwndDialog
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
1079 BOOL bResult
= FALSE
;
1085 hTextBox
= GetDlgItem(hwndDialog
, ID_LINENUMBER
);
1086 _sntprintf(szText
, ARRAY_SIZE(szText
), _T("%ld"), lParam
);
1087 SetWindowText(hTextBox
, szText
);
1090 if (HIWORD(wParam
) == BN_CLICKED
)
1092 if (LOWORD(wParam
) == IDOK
)
1094 hTextBox
= GetDlgItem(hwndDialog
, ID_LINENUMBER
);
1095 GetWindowText(hTextBox
, szText
, ARRAY_SIZE(szText
));
1096 EndDialog(hwndDialog
, _ttoi(szText
));
1099 else if (LOWORD(wParam
) == IDCANCEL
)
1101 EndDialog(hwndDialog
, 0);
1111 VOID
DIALOG_GoTo(VOID
)
1116 DWORD dwStart
, dwEnd
;
1118 nLength
= GetWindowTextLength(Globals
.hEdit
);
1119 pszText
= (LPTSTR
) HeapAlloc(GetProcessHeap(), 0, (nLength
+ 1) * sizeof(*pszText
));
1123 /* Retrieve current text */
1124 GetWindowText(Globals
.hEdit
, pszText
, nLength
+ 1);
1125 SendMessage(Globals
.hEdit
, EM_GETSEL
, (WPARAM
) &dwStart
, (LPARAM
) &dwEnd
);
1128 for (i
= 0; (i
< (int) dwStart
) && pszText
[i
]; i
++)
1130 if (pszText
[i
] == '\n')
1134 nLine
= DialogBoxParam(Globals
.hInstance
,
1135 MAKEINTRESOURCE(DIALOG_GOTO
),
1137 DIALOG_GoTo_DialogProc
,
1142 for (i
= 0; pszText
[i
] && (nLine
> 1) && (i
< nLength
- 1); i
++)
1144 if (pszText
[i
] == '\n')
1147 SendMessage(Globals
.hEdit
, EM_SETSEL
, i
, i
);
1148 SendMessage(Globals
.hEdit
, EM_SCROLLCARET
, 0, 0);
1150 HeapFree(GetProcessHeap(), 0, pszText
);
1153 VOID
DIALOG_StatusBarUpdateCaretPos(VOID
)
1156 TCHAR buff
[MAX_PATH
];
1157 DWORD dwStart
, dwSize
;
1159 SendMessage(Globals
.hEdit
, EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwSize
);
1160 line
= SendMessage(Globals
.hEdit
, EM_LINEFROMCHAR
, (WPARAM
)dwStart
, 0);
1161 col
= dwStart
- SendMessage(Globals
.hEdit
, EM_LINEINDEX
, (WPARAM
)line
, 0);
1163 _stprintf(buff
, Globals
.szStatusBarLineCol
, line
+ 1, col
+ 1);
1164 SendMessage(Globals
.hStatusBar
, SB_SETTEXT
, SB_SIMPLEID
, (LPARAM
)buff
);
1167 VOID
DIALOG_ViewStatusBar(VOID
)
1169 Globals
.bShowStatusBar
= !Globals
.bShowStatusBar
;
1171 DoCreateStatusBar();
1174 VOID
DIALOG_HelpContents(VOID
)
1176 WinHelp(Globals
.hMainWnd
, helpfile
, HELP_INDEX
, 0);
1179 VOID
DIALOG_HelpAboutNotepad(VOID
)
1181 TCHAR szNotepad
[MAX_STRING_LEN
];
1182 HICON notepadIcon
= LoadIcon(Globals
.hInstance
, MAKEINTRESOURCE(IDI_NPICON
));
1184 LoadString(Globals
.hInstance
, STRING_NOTEPAD
, szNotepad
, ARRAY_SIZE(szNotepad
));
1185 ShellAbout(Globals
.hMainWnd
, szNotepad
, 0, notepadIcon
);
1186 DeleteObject(notepadIcon
);
1191 AboutDialogProc(HWND hDlg
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1193 HWND hLicenseEditWnd
;
1200 hLicenseEditWnd
= GetDlgItem(hDlg
, IDC_LICENSE
);
1202 /* 0x1000 should be enough */
1203 strLicense
= (TCHAR
*)_alloca(0x1000);
1204 LoadString(GetModuleHandle(NULL
), STRING_LICENSE
, strLicense
, 0x1000);
1206 SetWindowText(hLicenseEditWnd
, strLicense
);
1212 if ((LOWORD(wParam
) == IDOK
) || (LOWORD(wParam
) == IDCANCEL
))
1214 EndDialog(hDlg
, LOWORD(wParam
));
1224 /***********************************************************************
1226 * DIALOG_FilePageSetup
1228 VOID
DIALOG_FilePageSetup(void)
1232 ZeroMemory(&page
, sizeof(page
));
1233 page
.lStructSize
= sizeof(page
);
1234 page
.hwndOwner
= Globals
.hMainWnd
;
1235 page
.Flags
= PSD_ENABLEPAGESETUPTEMPLATE
| PSD_ENABLEPAGESETUPHOOK
| PSD_MARGINS
;
1236 page
.hInstance
= Globals
.hInstance
;
1237 page
.rtMargin
= Globals
.lMargins
;
1238 page
.hDevMode
= Globals
.hDevMode
;
1239 page
.hDevNames
= Globals
.hDevNames
;
1240 page
.lpPageSetupTemplateName
= MAKEINTRESOURCE(DIALOG_PAGESETUP
);
1241 page
.lpfnPageSetupHook
= DIALOG_PAGESETUP_Hook
;
1243 PageSetupDlg(&page
);
1245 Globals
.hDevMode
= page
.hDevMode
;
1246 Globals
.hDevNames
= page
.hDevNames
;
1247 Globals
.lMargins
= page
.rtMargin
;
1250 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
1252 * DIALOG_PAGESETUP_Hook
1255 static UINT_PTR CALLBACK
DIALOG_PAGESETUP_Hook(HWND hDlg
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
1260 if (HIWORD(wParam
) == BN_CLICKED
)
1262 switch (LOWORD(wParam
))
1265 /* save user input and close dialog */
1266 GetDlgItemText(hDlg
, 0x141, Globals
.szHeader
, ARRAY_SIZE(Globals
.szHeader
));
1267 GetDlgItemText(hDlg
, 0x143, Globals
.szFooter
, ARRAY_SIZE(Globals
.szFooter
));
1271 /* discard user input and close dialog */
1276 /* FIXME: Bring this to work */
1277 static const TCHAR sorry
[] = _T("Sorry, no help available");
1278 static const TCHAR help
[] = _T("Help");
1279 MessageBox(Globals
.hMainWnd
, sorry
, help
, MB_ICONEXCLAMATION
);
1290 /* fetch last user input prior to display dialog */
1291 SetDlgItemText(hDlg
, 0x141, Globals
.szHeader
);
1292 SetDlgItemText(hDlg
, 0x143, Globals
.szFooter
);