Получение атрибутов объекта, выбор новых объектов
Приложение может получать атрибуты для пера, кисти, палитры, шрифта или растрового изображения, вызывая функции GetCurrentObject и GetObject . Функция GetCurrentObject возвращает дескриптор, определяющий объект, выбранный в данный момент в контроллере домена; Функция GetObject возвращает структуру, описывающую атрибуты объекта .
В следующем примере показано, как приложение может получить атрибуты текущей кисти и использовать полученные данные для определения необходимости выбора новой кисти.
HDC hdc; // display DC handle
HBRUSH hbrushNew, hbrushOld; // brush handles
HBRUSH hbrush; // brush handle
LOGBRUSH lb; // logical-brush structure
// Retrieve a handle identifying the current brush.
hbrush = GetCurrentObject(hdc, OBJ_BRUSH);
// Retrieve a LOGBRUSH structure that contains the
// current brush attributes.
GetObject(hbrush, sizeof(LOGBRUSH), &lb);
// If the current brush is not a solid-black brush,
// replace it with the solid-black stock brush.
if ((lb.lbStyle != BS_SOLID)
|| (lb.lbColor != 0x000000))
{
hbrushNew = GetStockObject(BLACK_BRUSH);
hbrushOld = SelectObject(hdc, hbrushNew);
}
// Perform painting operations with the solid-black brush.
// After completing the last painting operation with the new
// brush, the application should select the original brush back
// into the device context and delete the new brush.
// In this example, hbrushNew contains a handle to a stock object.
// It is not necessary (but it is not harmful) to call
// DeleteObject on a stock object. If hbrushNew contained a handle
// to a brush created by a function such as CreateBrushIndirect,
// it would be necessary to call DeleteObject.
SelectObject(hdc, hbrushOld);
DeleteObject(hbrushNew);
Примечание
Приложение сохранило исходный дескриптор кисти при первом вызове функции SelectObject . Этот маркер сохраняется, чтобы исходную кисть можно было выбрать обратно в контроллер домена после завершения последней операции рисования с помощью новой кисти. После того как исходная кисть будет выбрана обратно в контроллер домена, новая кисть удаляется, освобождая память в куче GDI.