|
| БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО! |
|
|
Using Paths
This section contains a code sample that enables the user to select a font of a particular point size (by using the Choose Font dialog box), select a clip path (by using text drawn with this font), and then view the result of clipping to the text.
This code sample was used to create the illustration that appears in Clip Paths.
CHOOSEFONT cf; /* common dialog box font structure */ LOGFONT lf; /* logical font structure */ HFONT hfont; /* new logical font handle */ HFONT hfontOld; /* original logical font handle */ HDC hdc; /* display DC handle */ int nXStart, nYStart; /* drawing coordinates */ RECT rc; /* rect structure for painting window */ SIZE sz; /* structure that receives text extents */ double aflSin[90]; /* sine of 0-90 degrees */
double aflCos[90]; /* cosine of 0-90 degrees */ double flRadius,a; /* radius of circle */ int iMode; /* clipping mode */ HRGN hrgn; /* clip region handle */ LRESULT APIENTRY MainWndProc( HWND hwnd, /* window handle */ UINT message, /* type of message */ WPARAM wParam, /* additional information */ LPARAM lParam) /* additional information */
{ PAINTSTRUCT ps; switch (message) { case WM_PAINT: hdc = BeginPaint(hwnd, &ps); EndPaint(hwnd, &ps); break; case WM_COMMAND: /* command from app's menu */ switch (wParam) { case IDM_VANISH: /* erases client area */ hdc = GetDC(hwnd); GetClientRect(hwnd, &rc); FillRect(hdc, &rc, GetStockObject(WHITE_BRUSH));
ReleaseDC(hwnd, hdc); break; case IDM_AND: /* sets clip mode to RGN_AND */ iMode = RGN_AND; break; case IDM_COPY: /* sets clip mode to RGN_COPY */ iMode = RGN_COPY; break; case IDM_DIFF: /* sets clip mode to RGN_DIFF */ iMode = RGN_DIFF; break;
case IDM_OR: /* sets clip mode to RGN_OR */ iMode = RGN_OR; break; case IDM_XOR: /* sets clip mode to RGN_XOR */ iMode = RGN_XOR; break; case IDM_CLIP_PATH: /* Retrieve a cached DC for the window. */ hdc = GetDC(hwnd); /* * Use the font requested by the user in the
* Choose Font dialog box to create a logical font, * then select that font into the device context. */ hfont = CreateFontIndirect(cf.lpLogFont); hfontOld = SelectObject(hdc, hfont); /* * Retrieve the dimensions of the rectangle * that surrounds the text. */ GetTextExtentPoint32(hdc, "Clip Path", 9, &sz);
/* * Set a clipping region using the rect that * surrounds the text. */ hrgn = CreateRectRgn(nXStart, nYStart, nXStart + sz.cx, nYStart + sz.cy); SelectClipRgn(hdc, hrgn); /* * Create a clip path using text drawn with * the user's requested font.
*/ BeginPath(hdc); TextOut(hdc, nXStart, nYStart, "Clip Path", 9); EndPath(hdc); SelectClipPath(hdc, iMode); /* Compute the sine of 0, 1, ... 90 degrees. */ for (i = 0; i < 90; i++) { aflSin[i] = sin( (((double)i) / 180.0) * 3.14159); }
/* Compute the cosine of 0, 1,... 90 degrees. */ for (i = 0; i < 90; i++) { aflCos[i] = cos( (((double)i) / 180.0) * 3.14159); } /* Set the radius value. */ flRadius = (double)(2 * sz.cx); /* * Draw the 90 rays extending from the * radius to the edge of the circle.
*/ for (i = 0; i < 90; i++) { MoveToEx(hdc, nXStart, nYStart, (LPPOINT) NULL); LineTo(hdc, nXStart + ((int) (flRadius * aflCos[i])), nYStart + ((int) (flRadius * aflSin[i]))); } /* Reselect the original font into the DC. */
SelectObject(hdc, hfontOld); /* Delete the user's font. */ DeleteObject(hfont); /* Release the DC. */ ReleaseDC(hwnd, hdc); break; case IDM_FONT: /* Initialize necessary members. */ cf.lStructSize = sizeof (CHOOSEFONT); cf.hwndOwner = hwnd;
cf.lpLogFont = &lf; cf.Flags = CF_SCREENFONTS | CF_EFFECTS; cf.rgbColors = RGB(0, 255, 255); cf.nFontType = SCREEN_FONTTYPE; /* * Display the Font dialog box, allow the user * to choose a font, and render text in the * window with that selection. */ if (ChooseFont(&cf)) {
hdc = GetDC(hwnd); hfont = CreateFontIndirect(cf.lpLogFont); hfontOld = SelectObject(hdc, hfont); crOld = SetTextColor(hdc, cf.rgbColors); TextOut(hdc, nXStart, nYStart, "Clip Path", 9); SetTextColor(hdc, crOld); SelectObject(hdc, hfontOld); DeleteObject(hfont);
ReleaseDC(hwnd, hdc); } break; default: return DefWindowProc(hwnd, message, wParam, lParam); } break; case WM_DESTROY: /* window is being destroyed */ PostQuitMessage(0); break; default: /* if unprocessed... */ return DefWindowProc(hwnd, message, wParam, lParam);
} return 0; }
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
| Пригласи друзей и счет твоего мобильника всегда будет положительным! |
Использование Путей
Эта секция содержит кодовый образец, который позволяет потребителя, чтобы выбираться шрифт конкретного размера точки (используя Шрифт Выбора диалогового ящика), выбираться путь клипа (используя текст нарисованный помощью этого шрифта), затем рассматривать результат отсечения к тексту.
Этот кодовый образец был использован, чтобы создавать иллюстрацию, которая появляется в Путях Клипа.
CHOOSEFONT СР.; /* общая шрифтовая структура диалогового ящика */ lf LOGFONT; /* логическая шрифтовая структура */ HFONT hfont; /* новая логическая шрифтовая ручка */ HFONT hfontOld; /* оригинальная логическая шрифтовая ручка */ hdc HDC; /* отобразите ручку DC */ int nXStart, nYStart; /* рисуя координаты */ rc RECT; /* rect структура для живописи окна */ РАЗМЕР sz; /* структура, которая получает текстовую протяженность */ двойное количество aflSin[90]; /* синус 0-90 градусов */
удвойте aflCos[90]; /* косинус 0-90 градусов */ двойное количество flRadius,a; /* радиус круга */ int iMode; /* вырезав способ */ HRGN hrgn; /* ручка региона клипа */ LRESULT APIENTRY MainWndProc( HWND hwnd, /* РУЧКА окна */ сообщение UINT, /* тип сообщения */ WPARAM wParam, /* дополнительная информация */ LPARAM lParam) /* дополнительная информация */
{ ps PAINTSTRUCT; ключ (сообщение) { случай WM_PAINT: hdc = BeginPaint(hwnd, &ps); EndPaint(hwnd, &ps); прерывание; случай WM_COMMAND: /* команда из меню app */ ключ (wParam) { случай IDM_VANISH: /* область клиента стираний */ hdc = GetDC(hwnd); GetClientRect(hwnd, &rc); FillRect(hdc, &rc, GetStockObject(WHITE_BRUSH));
ReleaseDC(hwnd, hdc); прерывание; случай IDM_AND: /* режим клипа комплектов на RGN_AND */ iMode = RGN_AND; прерывание; случай IDM_COPY: /* режим клипа комплектов на RGN_COPY */ iMode = RGN_COPY; прерывание; случай IDM_DIFF: /* режим клипа комплектов на RGN_DIFF */ iMode = RGN_DIFF; прерывание;
случай IDM_OR: /* режим клипа комплектов на RGN_OR */ iMode = RGN_OR; прерывание; случай IDM_XOR: /* режим клипа комплектов на RGN_XOR */ iMode = RGN_XOR; прерывание; случай IDM_CLIP_PATH: /* Извлеките кеш DC для window. */ hdc = GetDC(hwnd); /* * Используйте шрифт запрошенный пользователем в the
* Шрифт Выбора диалогового блока, чтобы создавать логический шрифт, * затем выберитесь этот шрифт в контекст устройства. */ hfont = CreateFontIndirect(cf.lpLogFont); hfontOld = SelectObject(hdc, hfont); /* * Извлеките измерения прямоугольника * это окружает текст. */ GetTextExtentPoint32(hdc, "Путь Клипа", 9, &sz);
/* * Установите вырезать область используя rect это * окружает текст. */ hrgn = CreateRectRgn(nXStart, nYStart, nXStart + sz.cx, nYStart + sz.cy); SelectClipRgn(hdc, hrgn); /* * Создайте путь клипа используя текст нарисованный помощью * запрошенный шрифт пользователя.
*/ BeginPath(hdc); TextOut(hdc, nXStart, nYStart, "ПУТЬ Клипа", 9); EndPath(hdc); SelectClipPath(hdc, iMode); /* Вычислите синус 0, 1,... 90 degrees. */ для (i = 0; я < 90; я++) { aflSin[i] = грех( (((double)i) / 180.0) * 3.14159); }
/* Вычислите косинус 0, 1,... 90 degrees. */ для (i = 0; я < 90; я++) { aflCos[i] = cos( (((double)i) / 180.0) * 3.14159); } /* Установите радиус value. */ flRadius = (double)(2 * sz.cx); /* * Сделайте 90 лучом, расширяющимися из the * радиус на край круга.
*/ для (i = 0; я < 90; я++) { MoveToEx(hdc, nXStart, nYStart, (LPPOINT) НЕДЕЙСТВИТЕЛЬНЫЙ); LineTo(hdc, nXStart + ((int) (flRadius * aflCos[i])), nYStart + ((int) (flRadius * aflSin[i]))); } /* Reselect Оригинальный шрифт в DC. */
SelectObject(hdc, hfontOld); /* Удалите потребитель font. */ DeleteObject(hfont); /* Выпустите DC. */ ReleaseDC(hwnd, hdc); прерывание; случай IDM_FONT: /* Инициализируйте необходимый members. */ cf.lStructSize = sizeof (CHOOSEFONT); cf.hwndOwner = hwnd;
cf.lpLogFont = &lf; ср..Сигнализирует = CF_SCREENFONTS | CF_EFFECTS; cf.rgbColors = RGB(0, 255, 255); cf.nFontType = SCREEN_FONTTYPE; /* * Отобразите диалогового блока Шрифта, допускайте пользователя * для того, чтобы выбирать шрифт, и предоставляйте текст в the * окно с этим выбором. */ если (ChooseFont(&cf)) {
hdc = GetDC(hwnd); hfont = CreateFontIndirect(cf.lpLogFont); hfontOld = SelectObject(hdc, hfont); crOld = SetTextColor(hdc, cf.rgbColors); TextOut(hdc, nXStart, nYStart, "ПУТЬ Клипа", 9); SetTextColor(hdc, crOld); SelectObject(hdc, hfontOld); DeleteObject(hfont);
ReleaseDC(hwnd, hdc); } прерывание; умолчание: возвращайте DefWindowProc(hwnd, сообщение, wParam, lParam); } прерывание; случай WM_DESTROY: /* окно уничтожается */ PostQuitMessage(0); прерывание; умолчание: /* если unprocessed... */ возврат DefWindowProc(hwnd, сообщение, wParam, lParam);
} возврат 0; }
|
|
|
|
| |