diff options
Diffstat (limited to 'ldmicro/commentdialog.cpp')
-rw-r--r-- | ldmicro/commentdialog.cpp | 108 |
1 files changed, 54 insertions, 54 deletions
diff --git a/ldmicro/commentdialog.cpp b/ldmicro/commentdialog.cpp index 4cfe13b..9bea08d 100644 --- a/ldmicro/commentdialog.cpp +++ b/ldmicro/commentdialog.cpp @@ -31,67 +31,67 @@ static HWND CommentDialog; static HWND CommentTextbox; -static void MakeControls(void) -{ - CommentTextbox = CreateWindowEx(WS_EX_CLIENTEDGE, WC_EDIT, "", - WS_CHILD | ES_AUTOHSCROLL | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE | - ES_MULTILINE | ES_WANTRETURN, - 7, 10, 600, 38, CommentDialog, NULL, Instance, NULL); - FixedFont(CommentTextbox); +// static void MakeControls(void) +// { +// CommentTextbox = CreateWindowEx(WS_EX_CLIENTEDGE, WC_EDIT, "", +// WS_CHILD | ES_AUTOHSCROLL | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE | +// ES_MULTILINE | ES_WANTRETURN, +// 7, 10, 600, 38, CommentDialog, NULL, Instance, NULL); +// FixedFont(CommentTextbox); - OkButton = CreateWindowEx(0, WC_BUTTON, _("OK"), - WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE | BS_DEFPUSHBUTTON, - 620, 6, 70, 23, CommentDialog, NULL, Instance, NULL); - NiceFont(OkButton); +// OkButton = CreateWindowEx(0, WC_BUTTON, _("OK"), +// WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE | BS_DEFPUSHBUTTON, +// 620, 6, 70, 23, CommentDialog, NULL, Instance, NULL); +// NiceFont(OkButton); - CancelButton = CreateWindowEx(0, WC_BUTTON, _("Cancel"), - WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE, - 620, 36, 70, 23, CommentDialog, NULL, Instance, NULL); - NiceFont(CancelButton); -} +// CancelButton = CreateWindowEx(0, WC_BUTTON, _("Cancel"), +// WS_CHILD | WS_TABSTOP | WS_CLIPSIBLINGS | WS_VISIBLE, +// 620, 36, 70, 23, CommentDialog, NULL, Instance, NULL); +// NiceFont(CancelButton); +// } -void ShowCommentDialog(char *comment) -{ - CommentDialog = CreateWindowClient(0, "LDmicroDialog", - _("Comment"), WS_OVERLAPPED | WS_SYSMENU, - 100, 100, 700, 65, NULL, NULL, Instance, NULL); +// void ShowCommentDialog(char *comment) +// { +// CommentDialog = CreateWindowClient(0, "LDmicroDialog", +// _("Comment"), WS_OVERLAPPED | WS_SYSMENU, +// 100, 100, 700, 65, NULL, NULL, Instance, NULL); - MakeControls(); +// MakeControls(); - SendMessage(CommentTextbox, WM_SETTEXT, 0, (LPARAM)comment); +// SendMessage(CommentTextbox, WM_SETTEXT, 0, (LPARAM)comment); - EnableWindow(MainWindow, FALSE); - ShowWindow(CommentDialog, TRUE); - SetFocus(CommentTextbox); - SendMessage(CommentTextbox, EM_SETSEL, 0, -1); +// EnableWindow(MainWindow, FALSE); +// ShowWindow(CommentDialog, TRUE); +// SetFocus(CommentTextbox); +// SendMessage(CommentTextbox, EM_SETSEL, 0, -1); - MSG msg; - DWORD ret; - DialogDone = FALSE; - DialogCancel = FALSE; - while((ret = GetMessage(&msg, NULL, 0, 0)) && !DialogDone) { - if(msg.message == WM_KEYDOWN) { - if(msg.wParam == VK_TAB && GetFocus() == CommentTextbox) { - SetFocus(OkButton); - continue; - } else if(msg.wParam == VK_ESCAPE) { - DialogDone = TRUE; - DialogCancel = TRUE; - break; - } - } +// MSG msg; +// DWORD ret; +// DialogDone = FALSE; +// DialogCancel = FALSE; +// while((ret = GetMessage(&msg, NULL, 0, 0)) && !DialogDone) { +// if(msg.message == WM_KEYDOWN) { +// if(msg.wParam == VK_TAB && GetFocus() == CommentTextbox) { +// SetFocus(OkButton); +// continue; +// } else if(msg.wParam == VK_ESCAPE) { +// DialogDone = TRUE; +// DialogCancel = TRUE; +// break; +// } +// } - if(IsDialogMessage(CommentDialog, &msg)) continue; - TranslateMessage(&msg); - DispatchMessage(&msg); - } +// if(IsDialogMessage(CommentDialog, &msg)) continue; +// TranslateMessage(&msg); +// DispatchMessage(&msg); +// } - if(!DialogCancel) { - SendMessage(CommentTextbox, WM_GETTEXT, (WPARAM)(MAX_COMMENT_LEN-1), - (LPARAM)comment); - } +// if(!DialogCancel) { +// SendMessage(CommentTextbox, WM_GETTEXT, (WPARAM)(MAX_COMMENT_LEN-1), +// (LPARAM)comment); +// } - EnableWindow(MainWindow, TRUE); - DestroyWindow(CommentDialog); - return; -} +// EnableWindow(MainWindow, TRUE); +// DestroyWindow(CommentDialog); +// return; +// } |