mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
38f6fd9df7
colors.c(129): warning C6287: Redundant code: the left and right sub-expressions are identical. colors.c(159): warning C6001: Using uninitialized memory 'colorIndex'. colors.c(180): warning C6385: Reading invalid data from 'ConInfo->ColorTable': the readable size is '64' bytes, but '259696' bytes may be read. (I thank ThFabba for the suggestion fix.) console.c(313): warning C6387: 'ConInfo->hWnd' could be '0': this does not adhere to the specification for the function 'SendMessageW'. font.c(60): warning C6387: 'Preview->hFont' could be '0': this does not adhere to the specification for the function 'GetFontCellSize'. font.c(230): warning C6001: Using uninitialized memory 'szFontSize'. font.c(230): warning C6054: String 'szFontSize' might not be zero-terminated. font.c(671): warning C6387: 'hFont' could be '0': this does not adhere to the specification for the function 'GetFontCellSize'. layout.c(502): warning C6387: 'FontPreview.hFont' could be '0': this does not adhere to the specification for the function 'SelectObject'.
271 lines
11 KiB
C
271 lines
11 KiB
C
/*
|
|
* PROJECT: ReactOS Console Configuration DLL
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: dll/cpl/console/colors.c
|
|
* PURPOSE: Colors dialog
|
|
* PROGRAMMERS: Johannes Anderwald (johannes.anderwald@reactos.org)
|
|
* Hermes Belusca-Maito (hermes.belusca@sfr.fr)
|
|
*/
|
|
|
|
#include "console.h"
|
|
|
|
#define NDEBUG
|
|
#include <debug.h>
|
|
|
|
static DWORD ActiveStaticControl = 0;
|
|
|
|
static VOID
|
|
PaintStaticControls(
|
|
IN LPDRAWITEMSTRUCT drawItem,
|
|
IN PCONSOLE_STATE_INFO pConInfo)
|
|
{
|
|
HBRUSH hBrush;
|
|
DWORD index;
|
|
|
|
index = min(drawItem->CtlID - IDC_STATIC_COLOR1,
|
|
ARRAYSIZE(pConInfo->ColorTable) - 1);
|
|
|
|
hBrush = CreateSolidBrush(pConInfo->ColorTable[index]);
|
|
FillRect(drawItem->hDC, &drawItem->rcItem, hBrush ? hBrush : GetStockObject(BLACK_BRUSH));
|
|
if (hBrush) DeleteObject(hBrush);
|
|
|
|
if (ActiveStaticControl == index)
|
|
DrawFocusRect(drawItem->hDC, &drawItem->rcItem);
|
|
}
|
|
|
|
INT_PTR CALLBACK
|
|
ColorsProc(HWND hDlg,
|
|
UINT uMsg,
|
|
WPARAM wParam,
|
|
LPARAM lParam)
|
|
{
|
|
DWORD colorIndex;
|
|
COLORREF color;
|
|
|
|
switch (uMsg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
{
|
|
/* Set the valid range of the colour indicators */
|
|
SendDlgItemMessageW(hDlg, IDC_UPDOWN_COLOR_RED , UDM_SETRANGE, 0, (LPARAM)MAKELONG(255, 0));
|
|
SendDlgItemMessageW(hDlg, IDC_UPDOWN_COLOR_GREEN, UDM_SETRANGE, 0, (LPARAM)MAKELONG(255, 0));
|
|
SendDlgItemMessageW(hDlg, IDC_UPDOWN_COLOR_BLUE , UDM_SETRANGE, 0, (LPARAM)MAKELONG(255, 0));
|
|
|
|
/* Select by default the screen background option */
|
|
CheckRadioButton(hDlg, IDC_RADIO_SCREEN_TEXT, IDC_RADIO_POPUP_BACKGROUND, IDC_RADIO_SCREEN_BACKGROUND);
|
|
SendMessageW(hDlg, WM_COMMAND, IDC_RADIO_SCREEN_BACKGROUND, 0);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
case WM_DRAWITEM:
|
|
{
|
|
LPDRAWITEMSTRUCT drawItem = (LPDRAWITEMSTRUCT)lParam;
|
|
|
|
if (IDC_STATIC_COLOR1 <= drawItem->CtlID && drawItem->CtlID <= IDC_STATIC_COLOR16)
|
|
PaintStaticControls(drawItem, ConInfo);
|
|
else if (drawItem->CtlID == IDC_STATIC_SCREEN_COLOR)
|
|
PaintText(drawItem, ConInfo, Screen);
|
|
else if (drawItem->CtlID == IDC_STATIC_POPUP_COLOR)
|
|
PaintText(drawItem, ConInfo, Popup);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
case WM_NOTIFY:
|
|
{
|
|
switch (((LPNMHDR)lParam)->code)
|
|
{
|
|
case PSN_APPLY:
|
|
{
|
|
ApplyConsoleInfo(hDlg);
|
|
return TRUE;
|
|
}
|
|
|
|
case UDN_DELTAPOS:
|
|
{
|
|
LPNMUPDOWN lpnmud = (LPNMUPDOWN)lParam;
|
|
|
|
/* Get the current color */
|
|
colorIndex = ActiveStaticControl;
|
|
color = ConInfo->ColorTable[colorIndex];
|
|
|
|
if (lpnmud->hdr.idFrom == IDC_UPDOWN_COLOR_RED)
|
|
{
|
|
lpnmud->iPos = min(max(lpnmud->iPos + lpnmud->iDelta, 0), 255);
|
|
color = RGB(lpnmud->iPos, GetGValue(color), GetBValue(color));
|
|
}
|
|
else if (lpnmud->hdr.idFrom == IDC_UPDOWN_COLOR_GREEN)
|
|
{
|
|
lpnmud->iPos = min(max(lpnmud->iPos + lpnmud->iDelta, 0), 255);
|
|
color = RGB(GetRValue(color), lpnmud->iPos, GetBValue(color));
|
|
}
|
|
else if (lpnmud->hdr.idFrom == IDC_UPDOWN_COLOR_BLUE)
|
|
{
|
|
lpnmud->iPos = min(max(lpnmud->iPos + lpnmud->iDelta, 0), 255);
|
|
color = RGB(GetRValue(color), GetGValue(color), lpnmud->iPos);
|
|
}
|
|
else
|
|
{
|
|
break;
|
|
}
|
|
|
|
ConInfo->ColorTable[colorIndex] = color;
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_COLOR1 + colorIndex), NULL, TRUE);
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_SCREEN_COLOR), NULL, TRUE);
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_POPUP_COLOR) , NULL, TRUE);
|
|
|
|
PropSheet_Changed(GetParent(hDlg), hDlg);
|
|
break;
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
case WM_COMMAND:
|
|
{
|
|
/* NOTE: both BN_CLICKED and STN_CLICKED == 0 */
|
|
if (HIWORD(wParam) == BN_CLICKED /* || HIWORD(wParam) == STN_CLICKED */)
|
|
{
|
|
WORD ctrlIndex = LOWORD(wParam);
|
|
|
|
if (ctrlIndex == IDC_RADIO_SCREEN_TEXT ||
|
|
ctrlIndex == IDC_RADIO_SCREEN_BACKGROUND ||
|
|
ctrlIndex == IDC_RADIO_POPUP_TEXT ||
|
|
ctrlIndex == IDC_RADIO_POPUP_BACKGROUND)
|
|
{
|
|
switch (ctrlIndex)
|
|
{
|
|
case IDC_RADIO_SCREEN_TEXT:
|
|
/* Get the colour of the screen foreground */
|
|
colorIndex = TextAttribFromAttrib(ConInfo->ScreenAttributes);
|
|
break;
|
|
|
|
case IDC_RADIO_SCREEN_BACKGROUND:
|
|
/* Get the colour of the screen background */
|
|
colorIndex = BkgdAttribFromAttrib(ConInfo->ScreenAttributes);
|
|
break;
|
|
|
|
case IDC_RADIO_POPUP_TEXT:
|
|
/* Get the colour of the popup foreground */
|
|
colorIndex = TextAttribFromAttrib(ConInfo->PopupAttributes);
|
|
break;
|
|
|
|
case IDC_RADIO_POPUP_BACKGROUND:
|
|
/* Get the colour of the popup background */
|
|
colorIndex = BkgdAttribFromAttrib(ConInfo->PopupAttributes);
|
|
break;
|
|
}
|
|
|
|
color = ConInfo->ColorTable[colorIndex];
|
|
|
|
/* Set the values of the colour indicators */
|
|
SetDlgItemInt(hDlg, IDC_EDIT_COLOR_RED , GetRValue(color), FALSE);
|
|
SetDlgItemInt(hDlg, IDC_EDIT_COLOR_GREEN, GetGValue(color), FALSE);
|
|
SetDlgItemInt(hDlg, IDC_EDIT_COLOR_BLUE , GetBValue(color), FALSE);
|
|
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_COLOR1 + ActiveStaticControl), NULL, TRUE);
|
|
ActiveStaticControl = colorIndex;
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_COLOR1 + ActiveStaticControl), NULL, TRUE);
|
|
break;
|
|
}
|
|
else
|
|
if (IDC_STATIC_COLOR1 <= ctrlIndex && ctrlIndex <= IDC_STATIC_COLOR16)
|
|
{
|
|
colorIndex = ctrlIndex - IDC_STATIC_COLOR1;
|
|
|
|
/* If the same static control was re-clicked, don't take it into account */
|
|
if (colorIndex == ActiveStaticControl)
|
|
break;
|
|
|
|
color = ConInfo->ColorTable[colorIndex];
|
|
|
|
/* Set the values of the colour indicators */
|
|
SetDlgItemInt(hDlg, IDC_EDIT_COLOR_RED , GetRValue(color), FALSE);
|
|
SetDlgItemInt(hDlg, IDC_EDIT_COLOR_GREEN, GetGValue(color), FALSE);
|
|
SetDlgItemInt(hDlg, IDC_EDIT_COLOR_BLUE , GetBValue(color), FALSE);
|
|
|
|
if (IsDlgButtonChecked(hDlg, IDC_RADIO_SCREEN_TEXT))
|
|
{
|
|
ConInfo->ScreenAttributes = MakeAttrib(colorIndex, BkgdAttribFromAttrib(ConInfo->ScreenAttributes));
|
|
}
|
|
else if (IsDlgButtonChecked(hDlg, IDC_RADIO_SCREEN_BACKGROUND))
|
|
{
|
|
ConInfo->ScreenAttributes = MakeAttrib(TextAttribFromAttrib(ConInfo->ScreenAttributes), colorIndex);
|
|
}
|
|
else if (IsDlgButtonChecked(hDlg, IDC_RADIO_POPUP_TEXT))
|
|
{
|
|
ConInfo->PopupAttributes = MakeAttrib(colorIndex, BkgdAttribFromAttrib(ConInfo->PopupAttributes));
|
|
}
|
|
else if (IsDlgButtonChecked(hDlg, IDC_RADIO_POPUP_BACKGROUND))
|
|
{
|
|
ConInfo->PopupAttributes = MakeAttrib(TextAttribFromAttrib(ConInfo->PopupAttributes), colorIndex);
|
|
}
|
|
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_COLOR1 + ActiveStaticControl), NULL, TRUE);
|
|
ActiveStaticControl = colorIndex;
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_COLOR1 + ActiveStaticControl), NULL, TRUE);
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_SCREEN_COLOR), NULL, TRUE);
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_POPUP_COLOR) , NULL, TRUE);
|
|
|
|
PropSheet_Changed(GetParent(hDlg), hDlg);
|
|
break;
|
|
}
|
|
}
|
|
else if (HIWORD(wParam) == EN_KILLFOCUS)
|
|
{
|
|
WORD ctrlIndex = LOWORD(wParam);
|
|
|
|
if (ctrlIndex == IDC_EDIT_COLOR_RED ||
|
|
ctrlIndex == IDC_EDIT_COLOR_GREEN ||
|
|
ctrlIndex == IDC_EDIT_COLOR_BLUE)
|
|
{
|
|
DWORD value;
|
|
|
|
/* Get the current colour */
|
|
colorIndex = ActiveStaticControl;
|
|
color = ConInfo->ColorTable[colorIndex];
|
|
|
|
/* Modify the colour component */
|
|
switch (ctrlIndex)
|
|
{
|
|
case IDC_EDIT_COLOR_RED:
|
|
value = GetDlgItemInt(hDlg, IDC_EDIT_COLOR_RED, NULL, FALSE);
|
|
value = min(max(value, 0), 255);
|
|
color = RGB(value, GetGValue(color), GetBValue(color));
|
|
break;
|
|
|
|
case IDC_EDIT_COLOR_GREEN:
|
|
value = GetDlgItemInt(hDlg, IDC_EDIT_COLOR_GREEN, NULL, FALSE);
|
|
value = min(max(value, 0), 255);
|
|
color = RGB(GetRValue(color), value, GetBValue(color));
|
|
break;
|
|
|
|
case IDC_EDIT_COLOR_BLUE:
|
|
value = GetDlgItemInt(hDlg, IDC_EDIT_COLOR_BLUE, NULL, FALSE);
|
|
value = min(max(value, 0), 255);
|
|
color = RGB(GetRValue(color), GetGValue(color), value);
|
|
break;
|
|
}
|
|
|
|
ConInfo->ColorTable[colorIndex] = color;
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_COLOR1 + colorIndex), NULL, TRUE);
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_SCREEN_COLOR), NULL, TRUE);
|
|
InvalidateRect(GetDlgItem(hDlg, IDC_STATIC_POPUP_COLOR) , NULL, TRUE);
|
|
|
|
PropSheet_Changed(GetParent(hDlg), hDlg);
|
|
break;
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return FALSE;
|
|
}
|