1 /* dialog management for wineconsole
3 * Copyright (c) 2001, 2002 Eric Pouech
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #define NONAMELESSUNION
25 #define NONAMELESSSTRUCT
33 #include "winecon_user.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(wineconsole
);
41 struct config_data config
; /* configuration used for dialog box */
42 struct inner_data
* data
; /* pointer to current winecon info */
43 HWND hDlg
; /* handle to active propsheet */
44 int nFont
; /* number of font size in size LB */
49 WCHAR faceName
[LF_FACESIZE
];
50 } *font
; /* array of nFont. index sync'ed with SIZE LB */
53 /******************************************************************
54 * WCUSER_OptionDlgProc
56 * Dialog prop for the option property sheet
58 static INT_PTR WINAPI
WCUSER_OptionDlgProc(HWND hDlg
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
60 struct dialog_info
* di
;
66 di
= (struct dialog_info
*)((PROPSHEETPAGEA
*)lParam
)->lParam
;
68 SetWindowLongPtrW(hDlg
, DWLP_USER
, (LONG_PTR
)di
);
70 SendMessageW(GetDlgItem(hDlg
,IDC_OPT_HIST_SIZE_UD
), UDM_SETRANGE
, 0, MAKELPARAM(500, 0));
72 if (di
->config
.cursor_size
<= 25) idc
= IDC_OPT_CURSOR_SMALL
;
73 else if (di
->config
.cursor_size
<= 50) idc
= IDC_OPT_CURSOR_MEDIUM
;
74 else idc
= IDC_OPT_CURSOR_LARGE
;
75 SendDlgItemMessageW(hDlg
, idc
, BM_SETCHECK
, BST_CHECKED
, 0);
76 SetDlgItemInt(hDlg
, IDC_OPT_HIST_SIZE
, di
->config
.history_size
, FALSE
);
77 SendDlgItemMessageW(hDlg
, IDC_OPT_HIST_NODOUBLE
, BM_SETCHECK
,
78 (di
->config
.history_nodup
) ? BST_CHECKED
: BST_UNCHECKED
, 0);
79 SendDlgItemMessageW(hDlg
, IDC_OPT_CONF_CTRL
, BM_SETCHECK
,
80 (di
->config
.menu_mask
& MK_CONTROL
) ? BST_CHECKED
: BST_UNCHECKED
, 0);
81 SendDlgItemMessageW(hDlg
, IDC_OPT_CONF_SHIFT
, BM_SETCHECK
,
82 (di
->config
.menu_mask
& MK_SHIFT
) ? BST_CHECKED
: BST_UNCHECKED
, 0);
83 SendDlgItemMessageW(hDlg
, IDC_OPT_QUICK_EDIT
, BM_SETCHECK
,
84 (di
->config
.quick_edit
) ? BST_CHECKED
: BST_UNCHECKED
, 0);
85 return FALSE
; /* because we set the focus */
90 NMHDR
* nmhdr
= (NMHDR
*)lParam
;
94 di
= (struct dialog_info
*)GetWindowLongPtrW(hDlg
, DWLP_USER
);
99 /* needed in propsheet to keep properly the selected radio button
100 * otherwise, the focus would be set to the first tab stop in the
101 * propsheet, which would always activate the first radio button
103 if (IsDlgButtonChecked(hDlg
, IDC_OPT_CURSOR_SMALL
) == BST_CHECKED
)
104 idc
= IDC_OPT_CURSOR_SMALL
;
105 else if (IsDlgButtonChecked(hDlg
, IDC_OPT_CURSOR_MEDIUM
) == BST_CHECKED
)
106 idc
= IDC_OPT_CURSOR_MEDIUM
;
108 idc
= IDC_OPT_CURSOR_LARGE
;
109 PostMessageW(hDlg
, WM_NEXTDLGCTL
, (WPARAM
)GetDlgItem(hDlg
, idc
), TRUE
);
113 if (IsDlgButtonChecked(hDlg
, IDC_OPT_CURSOR_SMALL
) == BST_CHECKED
) val
= 25;
114 else if (IsDlgButtonChecked(hDlg
, IDC_OPT_CURSOR_MEDIUM
) == BST_CHECKED
) val
= 50;
116 di
->config
.cursor_size
= val
;
118 val
= GetDlgItemInt(hDlg
, IDC_OPT_HIST_SIZE
, &done
, FALSE
);
119 if (done
) di
->config
.history_size
= val
;
121 val
= (IsDlgButtonChecked(hDlg
, IDC_OPT_HIST_NODOUBLE
) & BST_CHECKED
) ? TRUE
: FALSE
;
122 di
->config
.history_nodup
= val
;
125 if (IsDlgButtonChecked(hDlg
, IDC_OPT_CONF_CTRL
) & BST_CHECKED
) val
|= MK_CONTROL
;
126 if (IsDlgButtonChecked(hDlg
, IDC_OPT_CONF_SHIFT
) & BST_CHECKED
) val
|= MK_SHIFT
;
127 di
->config
.menu_mask
= val
;
129 val
= (IsDlgButtonChecked(hDlg
, IDC_OPT_QUICK_EDIT
) & BST_CHECKED
) ? TRUE
: FALSE
;
130 di
->config
.quick_edit
= val
;
132 SetWindowLongPtrW(hDlg
, DWLP_MSGRESULT
, PSNRET_NOERROR
);
145 /******************************************************************
146 * WCUSER_FontPreviewProc
148 * Window proc for font previewer in font property sheet
150 static LRESULT WINAPI
WCUSER_FontPreviewProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
155 SetWindowLongPtrW(hWnd
, 0, 0);
158 return GetWindowLongPtrW(hWnd
, 0);
160 SetWindowLongPtrW(hWnd
, 0, wParam
);
163 InvalidateRect(hWnd
, NULL
, TRUE
);
169 HFONT hFont
= (HFONT
)GetWindowLongPtrW(hWnd
, 0);
170 if (hFont
) DeleteObject(hFont
);
177 struct dialog_info
* di
;
178 HFONT hFont
, hOldFont
;
180 di
= (struct dialog_info
*)GetWindowLongPtrW(GetParent(hWnd
), DWLP_USER
);
181 BeginPaint(hWnd
, &ps
);
183 size_idx
= SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_SIZE
, LB_GETCURSEL
, 0, 0);
185 hFont
= (HFONT
)GetWindowLongPtrW(hWnd
, 0);
188 WCHAR ascii
[] = {'A','S','C','I','I',':',' ','a','b','c','X','Y','Z','\0'};
192 hOldFont
= SelectObject(ps
.hdc
, hFont
);
193 SetBkColor(ps
.hdc
, WCUSER_ColorMap
[GetWindowLongW(GetDlgItem(di
->hDlg
, IDC_FNT_COLOR_BK
), 0)]);
194 SetTextColor(ps
.hdc
, WCUSER_ColorMap
[GetWindowLongW(GetDlgItem(di
->hDlg
, IDC_FNT_COLOR_FG
), 0)]);
195 len
= LoadStringW(GetModuleHandleW(NULL
), IDS_FNT_PREVIEW
,
196 buf
, sizeof(buf
) / sizeof(buf
[0]));
198 TextOutW(ps
.hdc
, 0, 0, buf
, len
);
199 TextOutW(ps
.hdc
, 0, di
->font
[size_idx
].height
, ascii
,
200 sizeof(ascii
)/sizeof(ascii
[0]) - 1);
201 SelectObject(ps
.hdc
, hOldFont
);
207 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
212 /******************************************************************
213 * WCUSER_ColorPreviewProc
215 * Window proc for color previewer in font property sheet
217 static LRESULT WINAPI
WCUSER_ColorPreviewProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
228 BeginPaint(hWnd
, &ps
);
229 GetClientRect(hWnd
, &client
);
230 step
= client
.right
/ 8;
232 for (i
= 0; i
< 16; i
++)
234 r
.top
= (i
/ 8) * (client
.bottom
/ 2);
235 r
.bottom
= r
.top
+ client
.bottom
/ 2;
236 r
.left
= (i
& 7) * step
;
237 r
.right
= r
.left
+ step
;
238 hbr
= CreateSolidBrush(WCUSER_ColorMap
[i
]);
239 FillRect(ps
.hdc
, &r
, hbr
);
241 if (GetWindowLongW(hWnd
, 0) == i
)
246 hOldPen
= SelectObject(ps
.hdc
, GetStockObject(WHITE_PEN
));
247 r
.right
--; r
.bottom
--;
250 MoveToEx(ps
.hdc
, r
.left
, r
.bottom
, NULL
);
251 LineTo(ps
.hdc
, r
.left
, r
.top
);
252 LineTo(ps
.hdc
, r
.right
, r
.top
);
253 SelectObject(ps
.hdc
, GetStockObject(BLACK_PEN
));
254 LineTo(ps
.hdc
, r
.right
, r
.bottom
);
255 LineTo(ps
.hdc
, r
.left
, r
.bottom
);
258 r
.left
++; r
.top
++; r
.right
--; r
.bottom
--;
259 SelectObject(ps
.hdc
, GetStockObject(WHITE_PEN
));
261 SelectObject(ps
.hdc
, hOldPen
);
272 GetClientRect(hWnd
, &client
);
273 step
= client
.right
/ 8;
274 i
= (HIWORD(lParam
) >= client
.bottom
/ 2) ? 8 : 0;
275 i
+= LOWORD(lParam
) / step
;
276 SetWindowLongW(hWnd
, 0, i
);
277 InvalidateRect(GetDlgItem(GetParent(hWnd
), IDC_FNT_PREVIEW
), NULL
, FALSE
);
278 InvalidateRect(hWnd
, NULL
, FALSE
);
282 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
287 /******************************************************************
290 * enumerates all the font names with at least one valid font
292 static int CALLBACK
font_enum_size2(const LOGFONTW
* lf
, const TEXTMETRICW
* tm
,
293 DWORD FontType
, LPARAM lParam
)
295 struct dialog_info
* di
= (struct dialog_info
*)lParam
;
297 WCUSER_DumpTextMetric(tm
, FontType
);
298 if (WCUSER_ValidateFontMetric(di
->data
, tm
, FontType
))
306 static int CALLBACK
font_enum(const LOGFONTW
* lf
, const TEXTMETRICW
* tm
,
307 DWORD FontType
, LPARAM lParam
)
309 struct dialog_info
* di
= (struct dialog_info
*)lParam
;
311 WCUSER_DumpLogFont("DlgFamily: ", lf
, FontType
);
312 if (WCUSER_ValidateFont(di
->data
, lf
))
314 if (FontType
& RASTER_FONTTYPE
)
317 EnumFontFamiliesW(PRIVATE(di
->data
)->hMemDC
, lf
->lfFaceName
, font_enum_size2
, (LPARAM
)di
);
324 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_FONT
, LB_ADDSTRING
,
325 0, (LPARAM
)lf
->lfFaceName
);
332 /******************************************************************
337 static int CALLBACK
font_enum_size(const LOGFONTW
* lf
, const TEXTMETRICW
* tm
,
338 DWORD FontType
, LPARAM lParam
)
340 struct dialog_info
* di
= (struct dialog_info
*)lParam
;
342 static const WCHAR fmt
[] = {'%','l','d',0};
344 WCUSER_DumpTextMetric(tm
, FontType
);
345 if (di
->nFont
== 0 && !(FontType
& RASTER_FONTTYPE
))
347 static const int sizes
[] = {8,9,10,11,12,14,16,18,20,22,24,26,28,36,48,72};
350 di
->nFont
= sizeof(sizes
) / sizeof(sizes
[0]);
351 di
->font
= HeapAlloc(GetProcessHeap(), 0, di
->nFont
* sizeof(di
->font
[0]));
352 for (i
= 0; i
< di
->nFont
; i
++)
354 /* drop sizes where window size wouldn't fit on screen */
355 if (sizes
[i
] * di
->data
->curcfg
.win_height
> GetSystemMetrics(SM_CYSCREEN
))
360 di
->font
[i
].height
= sizes
[i
];
361 di
->font
[i
].weight
= 400;
362 lstrcpyW(di
->font
[i
].faceName
, lf
->lfFaceName
);
363 wsprintfW(buf
, fmt
, sizes
[i
]);
364 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_SIZE
, LB_INSERTSTRING
, i
, (LPARAM
)buf
);
366 /* don't need to enumerate other */
370 if (WCUSER_ValidateFontMetric(di
->data
, tm
, FontType
))
374 /* we want the string to be sorted with a numeric order, not a lexicographic...
375 * do the job by hand... get where to insert the new string
377 for (idx
= 0; idx
< di
->nFont
&& tm
->tmHeight
> di
->font
[idx
].height
; idx
++);
378 while (idx
< di
->nFont
&&
379 tm
->tmHeight
== di
->font
[idx
].height
&&
380 tm
->tmWeight
> di
->font
[idx
].weight
)
382 if (idx
== di
->nFont
||
383 tm
->tmHeight
!= di
->font
[idx
].height
||
384 tm
->tmWeight
< di
->font
[idx
].weight
)
386 /* here we need to add the new entry */
387 wsprintfW(buf
, fmt
, tm
->tmHeight
);
388 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_SIZE
, LB_INSERTSTRING
, idx
, (LPARAM
)buf
);
390 /* now grow our arrays and insert the values at the same index than in the list box */
393 di
->font
= HeapReAlloc(GetProcessHeap(), 0, di
->font
, sizeof(*di
->font
) * (di
->nFont
+ 1));
394 if (idx
!= di
->nFont
)
395 memmove(&di
->font
[idx
+ 1], &di
->font
[idx
], (di
->nFont
- idx
) * sizeof(*di
->font
));
398 di
->font
= HeapAlloc(GetProcessHeap(), 0, sizeof(*di
->font
));
399 di
->font
[idx
].height
= tm
->tmHeight
;
400 di
->font
[idx
].weight
= tm
->tmWeight
;
401 lstrcpyW(di
->font
[idx
].faceName
, lf
->lfFaceName
);
408 /******************************************************************
413 static BOOL
select_font(struct dialog_info
* di
)
415 int font_idx
, size_idx
;
419 HFONT hFont
, hOldFont
;
420 struct config_data config
;
422 font_idx
= SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_FONT
, LB_GETCURSEL
, 0, 0);
423 size_idx
= SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_SIZE
, LB_GETCURSEL
, 0, 0);
425 if (font_idx
< 0 || size_idx
< 0 || size_idx
>= di
->nFont
)
428 WCUSER_FillLogFont(&lf
, di
->font
[size_idx
].faceName
,
429 di
->font
[size_idx
].height
, di
->font
[size_idx
].weight
);
430 hFont
= WCUSER_CopyFont(&config
, di
->data
->hWnd
, &lf
, NULL
);
431 if (!hFont
) return FALSE
;
433 if (config
.cell_height
!= di
->font
[size_idx
].height
)
434 WINE_TRACE("mismatched heights (%u<>%u)\n",
435 config
.cell_height
, di
->font
[size_idx
].height
);
436 hOldFont
= (HFONT
)SendDlgItemMessageW(di
->hDlg
, IDC_FNT_PREVIEW
, WM_GETFONT
, 0, 0);
438 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_PREVIEW
, WM_SETFONT
, (WPARAM
)hFont
, TRUE
);
439 if (hOldFont
) DeleteObject(hOldFont
);
441 LoadStringW(GetModuleHandleW(NULL
), IDS_FNT_DISPLAY
, fmt
, sizeof(fmt
) / sizeof(fmt
[0]));
442 wsprintfW(buf
, fmt
, config
.cell_width
, config
.cell_height
);
444 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_FONT_INFO
, WM_SETTEXT
, 0, (LPARAM
)buf
);
449 /******************************************************************
452 * fills the size list box according to selected family in font LB
454 static BOOL
fill_list_size(struct dialog_info
* di
, BOOL doInit
)
457 WCHAR lfFaceName
[LF_FACESIZE
];
459 idx
= SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_FONT
, LB_GETCURSEL
, 0, 0);
460 if (idx
< 0) return FALSE
;
462 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_FONT
, LB_GETTEXT
, idx
, (LPARAM
)lfFaceName
);
463 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_SIZE
, LB_RESETCONTENT
, 0, 0);
464 HeapFree(GetProcessHeap(), 0, di
->font
);
468 EnumFontFamiliesW(PRIVATE(di
->data
)->hMemDC
, lfFaceName
, font_enum_size
, (LPARAM
)di
);
474 for (idx
= 0; idx
< di
->nFont
; idx
++)
476 if (!lstrcmpW(di
->font
[idx
].faceName
, di
->config
.face_name
) &&
477 di
->font
[idx
].height
== di
->config
.cell_height
&&
478 di
->font
[idx
].weight
== di
->config
.font_weight
)
480 if (ref
== -1) ref
= idx
;
481 else WINE_TRACE("Several matches found: ref=%d idx=%d\n", ref
, idx
);
484 idx
= (ref
== -1) ? 0 : ref
;
488 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_SIZE
, LB_SETCURSEL
, idx
, 0);
493 /******************************************************************
498 static BOOL
fill_list_font(struct dialog_info
* di
)
500 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_FONT
, LB_RESETCONTENT
, 0, 0);
501 EnumFontFamiliesW(PRIVATE(di
->data
)->hMemDC
, NULL
, font_enum
, (LPARAM
)di
);
502 if (SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_FONT
, LB_SELECTSTRING
,
503 -1, (LPARAM
)di
->config
.face_name
) == LB_ERR
)
504 SendDlgItemMessageW(di
->hDlg
, IDC_FNT_LIST_FONT
, LB_SETCURSEL
, 0, 0);
505 fill_list_size(di
, TRUE
);
509 /******************************************************************
512 * Dialog proc for the Font property sheet
514 static INT_PTR WINAPI
WCUSER_FontDlgProc(HWND hDlg
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
516 struct dialog_info
* di
;
521 di
= (struct dialog_info
*)((PROPSHEETPAGEA
*)lParam
)->lParam
;
523 SetWindowLongPtrW(hDlg
, DWLP_USER
, (DWORD_PTR
)di
);
524 /* remove dialog from this control, font will be reset when listboxes are filled */
525 SendDlgItemMessageW(hDlg
, IDC_FNT_PREVIEW
, WM_SETFONT
, 0, 0);
527 SetWindowLongW(GetDlgItem(hDlg
, IDC_FNT_COLOR_BK
), 0, (di
->config
.def_attr
>> 4) & 0x0F);
528 SetWindowLongW(GetDlgItem(hDlg
, IDC_FNT_COLOR_FG
), 0, di
->config
.def_attr
& 0x0F);
531 di
= (struct dialog_info
*)GetWindowLongPtrW(hDlg
, DWLP_USER
);
532 switch (LOWORD(wParam
))
534 case IDC_FNT_LIST_FONT
:
535 if (HIWORD(wParam
) == LBN_SELCHANGE
)
537 fill_list_size(di
, FALSE
);
540 case IDC_FNT_LIST_SIZE
:
541 if (HIWORD(wParam
) == LBN_SELCHANGE
)
550 NMHDR
* nmhdr
= (NMHDR
*)lParam
;
553 di
= (struct dialog_info
*)GetWindowLongPtrW(hDlg
, DWLP_USER
);
560 val
= SendDlgItemMessageW(hDlg
, IDC_FNT_LIST_SIZE
, LB_GETCURSEL
, 0, 0);
566 WCUSER_FillLogFont(&lf
, di
->font
[val
].faceName
,
567 di
->font
[val
].height
, di
->font
[val
].weight
);
568 DeleteObject(WCUSER_CopyFont(&di
->config
,
569 di
->data
->hWnd
, &lf
, NULL
));
572 val
= (GetWindowLongW(GetDlgItem(hDlg
, IDC_FNT_COLOR_BK
), 0) << 4) |
573 GetWindowLongW(GetDlgItem(hDlg
, IDC_FNT_COLOR_FG
), 0);
574 di
->config
.def_attr
= val
;
576 SetWindowLongPtrW(hDlg
, DWLP_MSGRESULT
, PSNRET_NOERROR
);
589 /******************************************************************
590 * WCUSER_ConfigDlgProc
592 * Dialog proc for the config property sheet
594 static INT_PTR WINAPI
WCUSER_ConfigDlgProc(HWND hDlg
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
596 struct dialog_info
* di
;
602 di
= (struct dialog_info
*)((PROPSHEETPAGEA
*)lParam
)->lParam
;
605 SetWindowLongPtrW(hDlg
, DWLP_USER
, (DWORD_PTR
)di
);
606 SetDlgItemInt(hDlg
, IDC_CNF_SB_WIDTH
, di
->config
.sb_width
, FALSE
);
607 SetDlgItemInt(hDlg
, IDC_CNF_SB_HEIGHT
, di
->config
.sb_height
, FALSE
);
608 SetDlgItemInt(hDlg
, IDC_CNF_WIN_WIDTH
, di
->config
.win_width
, FALSE
);
609 SetDlgItemInt(hDlg
, IDC_CNF_WIN_HEIGHT
, di
->config
.win_height
, FALSE
);
611 SendMessageW(GetDlgItem(hDlg
,IDC_CNF_WIN_HEIGHT_UD
), UDM_SETRANGE
, 0, MAKELPARAM(nMaxUD
, 0));
612 SendMessageW(GetDlgItem(hDlg
,IDC_CNF_WIN_WIDTH_UD
), UDM_SETRANGE
, 0, MAKELPARAM(nMaxUD
, 0));
613 SendMessageW(GetDlgItem(hDlg
,IDC_CNF_SB_HEIGHT_UD
), UDM_SETRANGE
, 0, MAKELPARAM(nMaxUD
, 0));
614 SendMessageW(GetDlgItem(hDlg
,IDC_CNF_SB_WIDTH_UD
), UDM_SETRANGE
, 0, MAKELPARAM(nMaxUD
, 0));
616 SendDlgItemMessageW(hDlg
, IDC_CNF_CLOSE_EXIT
, BM_SETCHECK
,
617 (di
->config
.exit_on_die
) ? BST_CHECKED
: BST_UNCHECKED
, 0);
619 static const WCHAR s1
[] = {'W','i','n','3','2',0};
620 static const WCHAR s2
[] = {'E','m','a','c','s',0};
622 SendDlgItemMessageW(hDlg
, IDC_CNF_EDITION_MODE
, CB_ADDSTRING
, 0, (LPARAM
)s1
);
623 SendDlgItemMessageW(hDlg
, IDC_CNF_EDITION_MODE
, CB_ADDSTRING
, 0, (LPARAM
)s2
);
624 SendDlgItemMessageW(hDlg
, IDC_CNF_EDITION_MODE
, CB_SETCURSEL
, di
->config
.edition_mode
, 0);
629 di
= (struct dialog_info
*)GetWindowLongPtrW(hDlg
, DWLP_USER
);
630 switch (LOWORD(wParam
))
636 NMHDR
* nmhdr
= (NMHDR
*)lParam
;
637 int win_w
, win_h
, sb_w
, sb_h
;
640 di
= (struct dialog_info
*)GetWindowLongPtrW(hDlg
, DWLP_USER
);
647 sb_w
= GetDlgItemInt(hDlg
, IDC_CNF_SB_WIDTH
, &st1
, FALSE
);
648 sb_h
= GetDlgItemInt(hDlg
, IDC_CNF_SB_HEIGHT
, &st2
, FALSE
);
651 SetWindowLongPtrW(hDlg
, DWLP_MSGRESULT
, PSNRET_INVALID
);
654 win_w
= GetDlgItemInt(hDlg
, IDC_CNF_WIN_WIDTH
, &st1
, FALSE
);
655 win_h
= GetDlgItemInt(hDlg
, IDC_CNF_WIN_HEIGHT
, &st2
, FALSE
);
658 SetWindowLongPtrW(hDlg
, DWLP_MSGRESULT
, PSNRET_INVALID
);
661 if (win_w
> sb_w
|| win_h
> sb_h
)
666 LoadStringW(GetModuleHandleW(NULL
), IDS_DLG_TIT_ERROR
,
667 cap
, sizeof(cap
) / sizeof(cap
[0]));
668 LoadStringW(GetModuleHandleW(NULL
), IDS_DLG_ERR_SBWINSIZE
,
669 txt
, sizeof(txt
) / sizeof(cap
[0]));
671 MessageBoxW(hDlg
, txt
, cap
, MB_OK
);
672 SetWindowLongPtrW(hDlg
, DWLP_MSGRESULT
, PSNRET_INVALID
);
675 di
->config
.win_width
= win_w
;
676 di
->config
.win_height
= win_h
;
677 di
->config
.sb_width
= sb_w
;
678 di
->config
.sb_height
= sb_h
;
680 di
->config
.exit_on_die
= IsDlgButtonChecked(hDlg
, IDC_CNF_CLOSE_EXIT
) ? 1 : 0;
681 di
->config
.edition_mode
= SendDlgItemMessageW(hDlg
, IDC_CNF_EDITION_MODE
,
683 SetWindowLongPtrW(hDlg
, DWLP_MSGRESULT
, PSNRET_NOERROR
);
696 /******************************************************************
699 * Dialog Procedure for choosing how to handle modification to the
702 static INT_PTR WINAPI
WCUSER_SaveDlgProc(HWND hDlg
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
707 SendDlgItemMessageW(hDlg
, IDC_SAV_SESSION
, BM_SETCHECK
, BST_CHECKED
, 0);
710 switch (LOWORD(wParam
))
714 (IsDlgButtonChecked(hDlg
, IDC_SAV_SAVE
) == BST_CHECKED
) ?
715 IDC_SAV_SAVE
: IDC_SAV_SESSION
);
718 EndDialog(hDlg
, IDCANCEL
); break;
727 /******************************************************************
728 * WCUSER_GetProperties
730 * Runs the dialog box to set up the wineconsole options
732 BOOL
WCUSER_GetProperties(struct inner_data
* data
, BOOL current
)
734 HPROPSHEETPAGE psPage
[3];
736 PROPSHEETHEADERW psHead
;
739 static const WCHAR szFntPreview
[] = {'W','i','n','e','C','o','n','F','o','n','t','P','r','e','v','i','e','w',0};
740 static const WCHAR szColorPreview
[] = {'W','i','n','e','C','o','n','C','o','l','o','r','P','r','e','v','i','e','w',0};
741 struct dialog_info di
;
742 struct config_data defcfg
;
743 struct config_data
* refcfg
;
744 BOOL save
, modify_session
;
746 InitCommonControls();
751 refcfg
= &data
->curcfg
;
756 WINECON_RegLoad(NULL
, refcfg
= &defcfg
);
763 modify_session
= FALSE
;
766 wndclass
.lpfnWndProc
= WCUSER_FontPreviewProc
;
767 wndclass
.cbClsExtra
= 0;
768 wndclass
.cbWndExtra
= sizeof (DWORD_PTR
); /* for hFont */
769 wndclass
.hInstance
= GetModuleHandleW(NULL
);
771 wndclass
.hCursor
= LoadCursorW(0, (LPCWSTR
)IDC_ARROW
);
772 wndclass
.hbrBackground
= GetStockObject(BLACK_BRUSH
);
773 wndclass
.lpszMenuName
= NULL
;
774 wndclass
.lpszClassName
= szFntPreview
;
775 RegisterClassW(&wndclass
);
778 wndclass
.lpfnWndProc
= WCUSER_ColorPreviewProc
;
779 wndclass
.cbClsExtra
= 0;
780 wndclass
.cbWndExtra
= sizeof(DWORD
);
781 wndclass
.hInstance
= GetModuleHandleW(NULL
);
783 wndclass
.hCursor
= LoadCursorW(0, (LPCWSTR
)IDC_ARROW
);
784 wndclass
.hbrBackground
= GetStockObject(BLACK_BRUSH
);
785 wndclass
.lpszMenuName
= NULL
;
786 wndclass
.lpszClassName
= szColorPreview
;
787 RegisterClassW(&wndclass
);
789 memset(&psp
, 0, sizeof(psp
));
790 psp
.dwSize
= sizeof(psp
);
792 psp
.hInstance
= wndclass
.hInstance
;
793 psp
.lParam
= (LPARAM
)&di
;
795 psp
.u
.pszTemplate
= MAKEINTRESOURCEW(IDD_OPTION
);
796 psp
.pfnDlgProc
= WCUSER_OptionDlgProc
;
797 psPage
[0] = CreatePropertySheetPageW(&psp
);
799 psp
.u
.pszTemplate
= MAKEINTRESOURCEW(IDD_FONT
);
800 psp
.pfnDlgProc
= WCUSER_FontDlgProc
;
801 psPage
[1] = CreatePropertySheetPageW(&psp
);
803 psp
.u
.pszTemplate
= MAKEINTRESOURCEW(IDD_CONFIG
);
804 psp
.pfnDlgProc
= WCUSER_ConfigDlgProc
;
805 psPage
[2] = CreatePropertySheetPageW(&psp
);
807 memset(&psHead
, 0, sizeof(psHead
));
808 psHead
.dwSize
= sizeof(psHead
);
810 if (!LoadStringW(GetModuleHandleW(NULL
),
811 (current
) ? IDS_DLG_TIT_CURRENT
: IDS_DLG_TIT_DEFAULT
,
812 buff
, sizeof(buff
) / sizeof(buff
[0])))
822 psHead
.pszCaption
= buff
;
824 psHead
.hwndParent
= data
->hWnd
;
825 psHead
.u3
.phpage
= psPage
;
826 psHead
.dwFlags
= PSH_NOAPPLYNOW
;
828 WINECON_DumpConfig("init", refcfg
);
830 PropertySheetW(&psHead
);
832 if (memcmp(refcfg
, &di
.config
, sizeof(*refcfg
)) == 0)
835 WINECON_DumpConfig("ref", refcfg
);
836 WINECON_DumpConfig("cur", &di
.config
);
837 if (refcfg
== &data
->curcfg
)
839 switch (DialogBoxW(GetModuleHandleW(NULL
), MAKEINTRESOURCEW(IDD_SAVE_SETTINGS
),
840 data
->hWnd
, WCUSER_SaveDlgProc
))
842 case IDC_SAV_SAVE
: save
= TRUE
; modify_session
= TRUE
; break;
843 case IDC_SAV_SESSION
: modify_session
= TRUE
; break;
844 case IDCANCEL
: break;
845 default: WINE_ERR("ooch\n");
849 if (modify_session
) WINECON_SetConfig(data
, &di
.config
);
850 if (save
) WINECON_RegSave(&di
.config
);