На главную

On-line справка по Win32 API

Написать письмо
БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО!
Список всех статей A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z | Скачать Вниз

Preparing to Print



The following code sample determines whether the selected printer is capable of printing bitmaps by calling the GetDeviceCaps function, supplying the RASTERCAPS value. By examining this function's return value, the application can determine whether it should print a document or inform the user that the device does not support raster output.

/*
* Examine the raster capabilities of the device
* identified by pd.hDC to verify that it supports
* the BitBlt function.
*/

if (!(GetDeviceCaps(pd.hDC, RASTERCAPS)
& RC_BITBLT)) {
DeleteDC(pd.hDC);
MessageBox(hwnd,
"Printer cannot display bitmaps.",
"Device Error",
MB_OK);
break;
}


After the sample application determines that the selected printer is capable of printing bitmaps, it follows these steps:

1. Sets a Boolean flag that the application's abort procedure can examine to determine whether to allow printing to continue.
2. Registers the application's AbortProc function, which is used to cancel a print job.
3. Displays a modeless Cancel dialog box.
4. Disables the application's window while the dialog box is displayed.



The steps are illustrated in the following code sample.

/*
* Set the flag used by the AbortPrintJob
* dialog procedure.
*/

bPrint = TRUE;


/*
* Register the application's AbortProc
* function with GDI.
*/

SetAbortProc(pd.hDC, AbortProc);

/* Display the modeless Cancel dialog box. */

hdlgCancel = CreateDialog(hinst, (LPTSTR) "AbortDlg",
hwnd, (DLGPROC) AbortPrintJob);

/* Disable the application's window. */

EnableWindow(hwnd, FALSE);


Once the application registers AbortProc with Windows, GDI calls the function repeatedly during the printing process to determine whether to cancel a job. In the current version of the Win32 API, GDI calls this function approximately every two seconds until the entire job has been spooled.
If the user chooses to cancel the job, GDI notifies the spooler that it should delete the corresponding journal file from the print queue and reset the printer to its default state.


Пригласи друзей и счет твоего мобильника всегда будет положительным!
Предыдущая статья
 
Сайт Народ.Ру Интернет
Следующая статья
Пригласи друзей и счет твоего мобильника всегда будет положительным!

Подготовка, чтобы Печататься



Кодовый образец следующего определяет независимо выбранный принтер способное печатать побитовые отображения вызывая функцию GetDeviceCaps, поставляющую величину RASTERCAPS. Изучая эту функциональную обратную величину, приложение может определить должно оно печатать документ или сообщать потребителя, что устройство не поддерживает растровый выход.

/*
* Изучите растровые возможности устройства
* идентифицированное pd.hDC, чтобы проверять, что это поддерживает
* функция BitBlt.
*/

если (!(GetDeviceCaps(pd.hDC, RASTERCAPS) & RC_BITBLT)) { DeleteDC(pd.hDC);
MessageBox(hwnd, "ПРИНТЕР не может отобразить побитовые отображения.", "Ошибка Устройства", MB_OK);
прерывание;
}


После того, как приложение образца определит, что выбранный принтер способный печатать побитовые отображения, из этого следует эти шаги:

1. Устанавливает Логический флаг, который прикладная процедура отказа может изучить, чтобы определять допускать печататься, чтобы оставаться.
2. Регистрирует прикладную функцию AbortProc, которая использована, чтобы отменять работу распечатки.
3. Отображает диалогового блока независимой Отмены.
4. Выводит из строя прикладное окно пока диалоговый блок отображен.



Шаги проиллюстрированы в кодовом образце следующего.

/*
* Установите флаг использованный AbortPrintJob
* диалоговая процедура.
*/

bPrint = ИСТИНА;


/*
* Зарегистрируйте прикладной AbortProc
* функция с GDI.
*/

SetAbortProc(pd.hDC, AbortProc);

/* Отобразите независимый диалог Отмены box. */

hdlgCancel = CreateDialog(hinst, (LPTSTR) "AbortDlg", hwnd, (DLGPROC) AbortPrintJob);

/* Выведите из строя приложение window. */

EnableWindow(hwnd, ЛОЖЬ);


Как только приложение зарегистрирует AbortProc с Windows, GDI называет функцию многократно в течение печати процесса, чтобы определять отменять работу. В текущей версии Win32 API, GDI называет эту функцию приблизительно каждые две секунды пока целая работа не буферизована.
Если пользователь решает отменять работу, GDI уведомляет spooler, что он должен удалить соответствующий файл журнала из очереди распечатки и восстанавливать принтер в свое по умолчанию состояние.


Вверх Version 1.3, Oct 26 2010 © 2007, 2010, mrhx Вверх
 mrhx software  Русский перевод OpenGL  Русский перевод Win32 API
 
Используются технологии uCoz