diff options
author | George Hazan <ghazan@miranda.im> | 2021-03-06 21:34:30 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-03-06 21:34:30 +0300 |
commit | b26db5be329bb29e3b3cffadffb700ab8fd848ac (patch) | |
tree | 77e3a95de54f9e783304ac2597c15805ab703b00 /plugins/Clist_blind/src/clcpaint.cpp | |
parent | 975f5ad99a5e76c31da953602cc47e1003d0e152 (diff) |
fixes #2630 (Clist blind: странная работа быстрого поиска)
Diffstat (limited to 'plugins/Clist_blind/src/clcpaint.cpp')
-rw-r--r-- | plugins/Clist_blind/src/clcpaint.cpp | 479 |
1 files changed, 0 insertions, 479 deletions
diff --git a/plugins/Clist_blind/src/clcpaint.cpp b/plugins/Clist_blind/src/clcpaint.cpp deleted file mode 100644 index a78dbac418..0000000000 --- a/plugins/Clist_blind/src/clcpaint.cpp +++ /dev/null @@ -1,479 +0,0 @@ -/*
-
-Miranda NG: the free IM client for Microsoft* Windows*
-
-Copyright (C) 2012-21 Miranda NG team (https://miranda-ng.org)
-Copyright (c) 2000-03 Miranda ICQ/IM project,
-all portions of this codebase are copyrighted to the people
-listed in contributors.txt.
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-*/
-
-#include "stdafx.h"
-
-extern HIMAGELIST himlCListClc;
-static BYTE divide3[765] = { 255 };
-
-static void ChangeToFont(HDC hdc, struct ClcData *dat, int id, int *fontHeight)
-{
- SelectObject(hdc, dat->fontInfo[id].hFont);
- SetTextColor(hdc, dat->fontInfo[id].colour);
- if (fontHeight)
- *fontHeight = dat->fontInfo[id].fontHeight;
-}
-
-static void __inline SetHotTrackColour(HDC hdc, struct ClcData *dat)
-{
- if (dat->gammaCorrection) {
- COLORREF oldCol, newCol;
- int oldLum, newLum;
-
- oldCol = GetTextColor(hdc);
- oldLum = (GetRValue(oldCol) * 30 + GetGValue(oldCol) * 59 + GetBValue(oldCol) * 11) / 100;
- newLum = (GetRValue(dat->hotTextColour) * 30 + GetGValue(dat->hotTextColour) * 59 + GetBValue(dat->hotTextColour) * 11) / 100;
- if (newLum == 0) {
- SetTextColor(hdc, dat->hotTextColour);
- return;
- }
- if (newLum >= oldLum + 20) {
- oldLum += 20;
- newCol =
- RGB(GetRValue(dat->hotTextColour) * oldLum / newLum, GetGValue(dat->hotTextColour) * oldLum / newLum,
- GetBValue(dat->hotTextColour) * oldLum / newLum);
- }
- else if (newLum <= oldLum) {
- int r, g, b;
- r = GetRValue(dat->hotTextColour) * oldLum / newLum;
- g = GetGValue(dat->hotTextColour) * oldLum / newLum;
- b = GetBValue(dat->hotTextColour) * oldLum / newLum;
- if (r > 255) {
- g += (r - 255) * 3 / 7;
- b += (r - 255) * 3 / 7;
- r = 255;
- }
- if (g > 255) {
- r += (g - 255) * 59 / 41;
- if (r > 255)
- r = 255;
- b += (g - 255) * 59 / 41;
- g = 255;
- }
- if (b > 255) {
- r += (b - 255) * 11 / 89;
- if (r > 255)
- r = 255;
- g += (b - 255) * 11 / 89;
- if (g > 255)
- g = 255;
- b = 255;
- }
- newCol = RGB(r, g, b);
- }
- else
- newCol = dat->hotTextColour;
- SetTextColor(hdc, newCol);
- }
- else
- SetTextColor(hdc, dat->hotTextColour);
-}
-
-void PaintClc(HWND hwnd, struct ClcData *dat, HDC hdc, RECT * rcPaint)
-{
- LONG_PTR style = GetWindowLongPtr(hwnd, GWL_STYLE);
- int status = Clist_GetGeneralizedStatus();
- int grey = 0, groupCountsFontTopShift;
- HBRUSH hBrushAlternateGrey = nullptr;
- // yes I know about GetSysColorBrush()
- COLORREF tmpbkcolour = style & CLS_CONTACTLIST ? (dat->bUseWindowsColours ? GetSysColor(COLOR_3DFACE) : dat->bkColour) : dat->bkColour;
-
- if (dat->greyoutFlags & Clist_ClcStatusToPf2(status) || style & WS_DISABLED)
- grey = 1;
- else if (GetFocus() != hwnd && dat->greyoutFlags & GREYF_UNFOCUS)
- grey = 1;
-
- RECT clRect;
- GetClientRect(hwnd, &clRect);
- if (rcPaint == nullptr)
- rcPaint = &clRect;
- if (IsRectEmpty(rcPaint))
- return;
-
- HDC hdcMem = CreateCompatibleDC(hdc);
- HBITMAP hBmpOsb = CreateBitmap(clRect.right, clRect.bottom, 1, GetDeviceCaps(hdc, BITSPIXEL), nullptr);
- HBITMAP hOldBitmap = (HBITMAP)SelectObject(hdcMem, hBmpOsb);
-
- TEXTMETRIC tm;
- HFONT hOldFont = (HFONT)SelectObject(hdcMem, dat->fontInfo[FONTID_GROUPS].hFont);
- GetTextMetrics(hdcMem, &tm);
- groupCountsFontTopShift = tm.tmAscent;
- SelectObject(hdcMem, dat->fontInfo[FONTID_GROUPCOUNTS].hFont);
- GetTextMetrics(hdcMem, &tm);
- groupCountsFontTopShift -= tm.tmAscent;
-
- if (style & CLS_GREYALTERNATE)
- hBrushAlternateGrey = CreateSolidBrush(GetNearestColor(hdcMem, RGB(GetRValue(tmpbkcolour) - 10, GetGValue(tmpbkcolour) - 10, GetBValue(tmpbkcolour) - 10)));
-
- int fontHeight;
- ChangeToFont(hdcMem, dat, FONTID_CONTACTS, &fontHeight);
- SetBkMode(hdcMem, TRANSPARENT);
- {
- HBRUSH hBrush = CreateSolidBrush(tmpbkcolour);
- FillRect(hdcMem, rcPaint, hBrush);
- DeleteObject(hBrush);
- if (dat->hBmpBackground) {
- // XXX: Halftone isnt supported on 9x, however the scretch problems dont happen on 98.
- SetStretchBltMode(hdcMem, HALFTONE);
-
- BITMAP bmp;
- GetObject(dat->hBmpBackground, sizeof(bmp), &bmp);
- HDC hdcBmp = CreateCompatibleDC(hdcMem);
- SelectObject(hdcBmp, dat->hBmpBackground);
- int y = dat->backgroundBmpUse & CLBF_SCROLL ? -dat->yScroll : 0;
- int maxx = dat->backgroundBmpUse & CLBF_TILEH ? clRect.right : 1;
- int maxy = dat->backgroundBmpUse & CLBF_TILEV ? rcPaint->bottom : y + 1;
- int destw, desth;
- switch (dat->backgroundBmpUse & CLBM_TYPE) {
- case CLB_STRETCH:
- if (dat->backgroundBmpUse & CLBF_PROPORTIONAL) {
- if (clRect.right * bmp.bmHeight < clRect.bottom * bmp.bmWidth) {
- desth = clRect.bottom;
- destw = desth * bmp.bmWidth / bmp.bmHeight;
- }
- else {
- destw = clRect.right;
- desth = destw * bmp.bmHeight / bmp.bmWidth;
- }
- }
- else {
- destw = clRect.right;
- desth = clRect.bottom;
- }
- break;
- case CLB_STRETCHH:
- if (dat->backgroundBmpUse & CLBF_PROPORTIONAL) {
- destw = clRect.right;
- desth = destw * bmp.bmHeight / bmp.bmWidth;
- }
- else {
- destw = clRect.right;
- desth = bmp.bmHeight;
- }
- break;
- case CLB_STRETCHV:
- if (dat->backgroundBmpUse & CLBF_PROPORTIONAL) {
- desth = clRect.bottom;
- destw = desth * bmp.bmWidth / bmp.bmHeight;
- }
- else {
- destw = bmp.bmWidth;
- desth = clRect.bottom;
- }
- break;
- default: //clb_topleft
- destw = bmp.bmWidth;
- desth = bmp.bmHeight;
- break;
- }
- for (; y < maxy; y += desth) {
- if (y < rcPaint->top - desth)
- continue;
- for (int x = 0; x < maxx; x += destw)
- StretchBlt(hdcMem, x, y, destw, desth, hdcBmp, 0, 0, bmp.bmWidth, bmp.bmHeight, SRCCOPY);
- }
- DeleteDC(hdcBmp);
- }
- }
-
- int y = -dat->yScroll;
- ClcGroup *group = &dat->list;
- group->scanIndex = 0;
- int indent = 0;
- for (int index = 0; y < rcPaint->bottom;) {
- if (group->scanIndex == group->cl.getCount()) {
- group = group->parent;
- indent--;
- if (group == nullptr)
- break;
- group->scanIndex++;
- continue;
- }
-
- ClcContact *cc = group->cl[group->scanIndex];
- if (y > rcPaint->top - dat->rowHeight) {
- int iImage = -1;
- int selected = index == dat->selection && (dat->bShowSelAlways || dat->exStyle & CLS_EX_SHOWSELALWAYS || GetFocus() == hwnd) && cc->type != CLCIT_DIVIDER;
- int hottrack = dat->exStyle & CLS_EX_TRACKSELECT && cc->type != CLCIT_DIVIDER && dat->iHotTrack == index;
- SIZE textSize, countsSize = { 0 }, spaceSize = { 0 };
- int width, checkboxWidth;
- wchar_t *szCounts = nullptr;
-
- // alternating grey
- if (style & CLS_GREYALTERNATE && index & 1) {
- RECT rc;
- rc.top = y;
- rc.bottom = rc.top + dat->rowHeight;
- rc.left = 0;
- rc.right = clRect.right;
- FillRect(hdcMem, &rc, hBrushAlternateGrey);
- }
-
- // setup
- if (cc->type == CLCIT_GROUP)
- ChangeToFont(hdcMem, dat, FONTID_GROUPS, &fontHeight);
- else if (cc->type == CLCIT_INFO) {
- if (cc->flags & CLCIIF_GROUPFONT)
- ChangeToFont(hdcMem, dat, FONTID_GROUPS, &fontHeight);
- else
- ChangeToFont(hdcMem, dat, FONTID_CONTACTS, &fontHeight);
- }
- else if (cc->type == CLCIT_DIVIDER)
- ChangeToFont(hdcMem, dat, FONTID_DIVIDERS, &fontHeight);
- else if (cc->type == CLCIT_CONTACT && cc->flags & CONTACTF_NOTONLIST)
- ChangeToFont(hdcMem, dat, FONTID_NOTONLIST, &fontHeight);
- else if (cc->type == CLCIT_CONTACT &&
- ((cc->flags & CONTACTF_INVISTO && Clist_GetRealStatus(cc, status) != ID_STATUS_INVISIBLE) || (cc->flags & CONTACTF_VISTO && Clist_GetRealStatus(cc, status) == ID_STATUS_INVISIBLE))) {
- // the contact is in the always visible list and the proto is invisible
- // the contact is in the always invisible and the proto is in any other mode
- ChangeToFont(hdcMem, dat, cc->flags & CONTACTF_ONLINE ? FONTID_INVIS : FONTID_OFFINVIS, &fontHeight);
- }
- else if (cc->type == CLCIT_CONTACT && !(cc->flags & CONTACTF_ONLINE))
- ChangeToFont(hdcMem, dat, FONTID_OFFLINE, &fontHeight);
- else
- ChangeToFont(hdcMem, dat, FONTID_CONTACTS, &fontHeight);
- GetTextExtentPoint32(hdcMem, cc->szText, (int)mir_wstrlen(cc->szText), &textSize);
- width = textSize.cx;
- if (cc->type == CLCIT_GROUP) {
- szCounts = Clist_GetGroupCountsText(dat, cc);
- if (szCounts[0]) {
- GetTextExtentPoint32(hdcMem, L" ", 1, &spaceSize);
- ChangeToFont(hdcMem, dat, FONTID_GROUPCOUNTS, &fontHeight);
- GetTextExtentPoint32(hdcMem, szCounts, (int)mir_wstrlen(szCounts), &countsSize);
- width += spaceSize.cx + countsSize.cx;
- }
- }
-
- if ((style & CLS_CHECKBOXES && cc->type == CLCIT_CONTACT) || (style & CLS_GROUPCHECKBOXES && cc->type == CLCIT_GROUP) || (cc->type == CLCIT_INFO && cc->flags & CLCIIF_CHECKBOX))
- checkboxWidth = dat->checkboxSize + 2;
- else
- checkboxWidth = 0;
-
- // background
- if (selected) {
- int x = dat->leftMargin + indent * dat->groupIndent + checkboxWidth + dat->iconXSpace - 2;
- ImageList_DrawEx(dat->himlHighlight, 0, hdcMem, x, y, min(width + 5, clRect.right - x), dat->rowHeight, CLR_NONE, CLR_NONE,
- dat->exStyle & CLS_EX_NOTRANSLUCENTSEL ? ILD_NORMAL : ILD_BLEND25);
- SetTextColor(hdcMem, dat->selTextColour);
- }
- else if (hottrack)
- SetHotTrackColour(hdcMem, dat);
-
- // checkboxes
- if (checkboxWidth) {
- RECT rc;
- HANDLE hTheme = OpenThemeData(hwnd, L"BUTTON");
- rc.left = dat->leftMargin + indent * dat->groupIndent;
- rc.right = rc.left + dat->checkboxSize;
- rc.top = y + ((dat->rowHeight - dat->checkboxSize) >> 1);
- rc.bottom = rc.top + dat->checkboxSize;
- DrawThemeBackground(hTheme, hdcMem, BP_CHECKBOX, cc->flags & CONTACTF_CHECKED ? (hottrack ? CBS_CHECKEDHOT : CBS_CHECKEDNORMAL) : (hottrack ? CBS_UNCHECKEDHOT : CBS_UNCHECKEDNORMAL), &rc, &rc);
- CloseThemeData(hTheme);
- }
-
- // icon
- if (cc->type == CLCIT_GROUP)
- iImage = cc->group->expanded ? IMAGE_GROUPOPEN : IMAGE_GROUPSHUT;
- else if (cc->type == CLCIT_CONTACT)
- iImage = cc->iImage;
- if (iImage != -1) {
- // this doesnt use CLS_CONTACTLIST since the colour prolly wont match anyway
- COLORREF colourFg = dat->selBkColour;
- int mode = ILD_NORMAL;
- if (hottrack) {
- colourFg = dat->hotTextColour;
- }
- else if (cc->type == CLCIT_CONTACT && cc->flags & CONTACTF_NOTONLIST) {
- colourFg = dat->fontInfo[FONTID_NOTONLIST].colour;
- mode = ILD_BLEND50;
- }
- if (cc->type == CLCIT_CONTACT && dat->bShowIdle && (cc->flags & CONTACTF_IDLE) && Clist_GetRealStatus(cc, ID_STATUS_OFFLINE) != ID_STATUS_OFFLINE)
- mode = ILD_SELECTED;
- ImageList_DrawEx(himlCListClc, iImage, hdcMem, dat->leftMargin + indent * dat->groupIndent + checkboxWidth, y + ((dat->rowHeight - 16) >> 1), 0, 0, CLR_NONE, colourFg, mode);
- }
-
- // text
- if (cc->type == CLCIT_DIVIDER) {
- RECT rc;
- rc.top = y + (dat->rowHeight >> 1);
- rc.bottom = rc.top + 2;
- rc.left = dat->leftMargin + indent * dat->groupIndent;
- rc.right = rc.left + ((clRect.right - rc.left - textSize.cx) >> 1) - 3;
- DrawEdge(hdcMem, &rc, BDR_SUNKENOUTER, BF_RECT);
- TextOut(hdcMem, rc.right + 3, y + ((dat->rowHeight - fontHeight) >> 1), cc->szText,
- (int)mir_wstrlen(cc->szText));
- rc.left = rc.right + 6 + textSize.cx;
- rc.right = clRect.right;
- DrawEdge(hdcMem, &rc, BDR_SUNKENOUTER, BF_RECT);
- }
- else if (cc->type == CLCIT_GROUP) {
- RECT rc;
- if (szCounts[0]) {
- fontHeight = dat->fontInfo[FONTID_GROUPS].fontHeight;
- rc.left = dat->leftMargin + indent * dat->groupIndent + checkboxWidth + dat->iconXSpace;
- rc.right = min(clRect.right - countsSize.cx, rc.left + textSize.cx + spaceSize.cx);
- rc.top = y + ((dat->rowHeight - fontHeight) >> 1);
- rc.bottom = rc.top + textSize.cy;
- if (rc.right < rc.left + 4)
- rc.right = clRect.right + 1;
- else
- TextOut(hdcMem, rc.right, rc.top + groupCountsFontTopShift, szCounts, (int)mir_wstrlen(szCounts));
- ChangeToFont(hdcMem, dat, FONTID_GROUPS, &fontHeight);
- if (selected)
- SetTextColor(hdcMem, dat->selTextColour);
- else if (hottrack)
- SetHotTrackColour(hdcMem, dat);
- rc.right--;
- ExtTextOut(hdcMem, rc.left, rc.top, ETO_CLIPPED, &rc, cc->szText,
- (int)mir_wstrlen(cc->szText), nullptr);
- }
- else
- TextOut(hdcMem, dat->leftMargin + indent * dat->groupIndent + checkboxWidth + dat->iconXSpace,
- y + ((dat->rowHeight - fontHeight) >> 1), cc->szText,
- (int)mir_wstrlen(cc->szText));
- if (dat->exStyle & CLS_EX_LINEWITHGROUPS) {
- rc.top = y + (dat->rowHeight >> 1);
- rc.bottom = rc.top + 2;
- rc.left = dat->leftMargin + indent * dat->groupIndent + checkboxWidth + dat->iconXSpace + width + 3;
- rc.right = clRect.right - 1 - dat->extraColumnSpacing * dat->extraColumnsCount;
- if (rc.right - rc.left > 1)
- DrawEdge(hdcMem, &rc, BDR_SUNKENOUTER, BF_RECT);
- }
- }
- else {
- wchar_t *szText = cc->szText;
- RECT rc;
- rc.left = dat->leftMargin + indent * dat->groupIndent + checkboxWidth + dat->iconXSpace;
- rc.top = y + ((dat->rowHeight - fontHeight) >> 1);
- rc.right = (clRect.right - clRect.left);
- rc.bottom = rc.top;
- DrawText(hdcMem, szText, -1, &rc, DT_EDITCONTROL | DT_NOPREFIX | DT_NOCLIP | DT_WORD_ELLIPSIS | DT_SINGLELINE);
- }
- if (selected) {
- if (cc->type != CLCIT_DIVIDER) {
- wchar_t *szText = cc->szText;
- RECT rc;
- int qlen = (int)mir_wstrlen(dat->szQuickSearch);
- SetTextColor(hdcMem, dat->quickSearchColour);
- rc.left = dat->leftMargin + indent * dat->groupIndent + checkboxWidth + dat->iconXSpace;
- rc.top = y + ((dat->rowHeight - fontHeight) >> 1);
- rc.right = (clRect.right - clRect.left);
- rc.bottom = rc.top;
- if (qlen)
- DrawText(hdcMem, szText, qlen, &rc, DT_EDITCONTROL | DT_NOPREFIX | DT_NOCLIP | DT_WORD_ELLIPSIS | DT_SINGLELINE);
- }
- }
-
- // extra icons
- for (iImage = 0; iImage < dat->extraColumnsCount; iImage++) {
- COLORREF colourFg = dat->selBkColour;
- int mode = ILD_NORMAL;
- if (cc->iExtraImage[iImage] == 0xFF)
- continue;
- if (selected)
- mode = ILD_SELECTED;
- else if (hottrack) {
- mode = ILD_FOCUS;
- colourFg = dat->hotTextColour;
- }
- else if (cc->type == CLCIT_CONTACT && cc->flags & CONTACTF_NOTONLIST) {
- colourFg = dat->fontInfo[FONTID_NOTONLIST].colour;
- mode = ILD_BLEND50;
- }
- ImageList_DrawEx(dat->himlExtraColumns, cc->iExtraImage[iImage], hdcMem,
- clRect.right - dat->extraColumnSpacing * (dat->extraColumnsCount - iImage), y + ((dat->rowHeight - 16) >> 1), 0, 0,
- CLR_NONE, colourFg, mode);
- }
- }
- index++;
- y += dat->rowHeight;
- if (cc->type == CLCIT_GROUP && cc->group->expanded) {
- group = cc->group;
- indent++;
- group->scanIndex = 0;
- continue;
- }
- group->scanIndex++;
- }
-
- // insertion mark
- if (dat->iInsertionMark != -1) {
- POINT pts[8];
- pts[0].x = dat->leftMargin;
- pts[0].y = dat->iInsertionMark * dat->rowHeight - dat->yScroll - 4;
- pts[1].x = pts[0].x + 2;
- pts[1].y = pts[0].y + 3;
- pts[2].x = clRect.right - 4;
- pts[2].y = pts[1].y;
- pts[3].x = clRect.right - 1;
- pts[3].y = pts[0].y - 1;
- pts[4].x = pts[3].x;
- pts[4].y = pts[0].y + 7;
- pts[5].x = pts[2].x + 1;
- pts[5].y = pts[1].y + 2;
- pts[6].x = pts[1].x;
- pts[6].y = pts[5].y;
- pts[7].x = pts[0].x;
- pts[7].y = pts[4].y;
- HRGN hRgn = CreatePolygonRgn(pts, _countof(pts), ALTERNATE);
- HBRUSH hBrush = CreateSolidBrush(dat->fontInfo[FONTID_CONTACTS].colour);
- FillRgn(hdcMem, hRgn, hBrush);
- DeleteObject(hBrush);
- DeleteObject(hRgn);
- }
- if (!grey)
- BitBlt(hdc, rcPaint->left, rcPaint->top, rcPaint->right - rcPaint->left, rcPaint->bottom - rcPaint->top, hdcMem, rcPaint->left, rcPaint->top, SRCCOPY);
- SelectObject(hdcMem, hOldBitmap);
- SelectObject(hdcMem, hOldFont);
- DeleteDC(hdcMem);
- if (hBrushAlternateGrey)
- DeleteObject(hBrushAlternateGrey);
- if (grey) {
- BITMAPINFOHEADER bmih = { 0 };
- bmih.biBitCount = 32;
- bmih.biSize = sizeof(bmih);
- bmih.biCompression = BI_RGB;
- bmih.biHeight = -clRect.bottom;
- bmih.biPlanes = 1;
- bmih.biWidth = clRect.right;
- PBYTE bits = (PBYTE)malloc(4 * bmih.biWidth * -bmih.biHeight);
- GetDIBits(hdc, hBmpOsb, 0, clRect.bottom, bits, (BITMAPINFO *)& bmih, DIB_RGB_COLORS);
- COLORREF greyColour = GetSysColor(COLOR_3DFACE);
- int greyRed = GetRValue(greyColour) * 2;
- int greyGreen = GetGValue(greyColour) * 2;
- int greyBlue = GetBValue(greyColour) * 2;
- if (divide3[0] == 255) {
- for (int i = 0; i < _countof(divide3); i++)
- divide3[i] = (i + 1) / 3;
- }
- for (int i = 4 * clRect.right * clRect.bottom - 4; i >= 0; i -= 4) {
- bits[i] = divide3[bits[i] + greyBlue];
- bits[i + 1] = divide3[bits[i + 1] + greyGreen];
- bits[i + 2] = divide3[bits[i + 2] + greyRed];
- }
- SetDIBitsToDevice(hdc, 0, 0, clRect.right, clRect.bottom, 0, 0, 0, clRect.bottom, bits, (BITMAPINFO *)& bmih, DIB_RGB_COLORS);
- free(bits);
- }
- DeleteObject(hBmpOsb);
-}
|