1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
|
(*
udlgSelectPrinter.pp
------------
*****************************************************************************
This file is part of the Printer4Lazarus package
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
Author: Olivier Guilbaud (OG)
Abstract:
Printer select and configure dialog. This dialog box allows one to choose
a printer and to modify some options to print a file.
history
oct 24 2003 OG - Job hold and priority options.
- Add few function for convert Date time Local <-> GMT
for job-hold-until option with time specification
nov 04 2003 OG - First release
apr 19 2004 OG - Implemented More and Less button with Lazarus #212 bug
Fixed (thanks)
sep 12 2004 OG - Fix bug num copies by replace IntToStr(Trunc(edCopies.Value)))
with edCopies.Text. Idem for priority of job
sep 29 2004 OG - Modify for use new CUPSPrinters unit
dec 20 2004 OG - TPrintRange and PrintRange property from Darek
mar 08 2005 OG - Dynamique CUPS link
- Some bug compile fix
mar 08 2005 OG - Modifications for Printer4Lazarus pakage
oct 2015 - property BigMode, refactor, anchors fix
------------------------------------------------------------------------------*)
unit uDlgSelectPrinter;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Math,
// LCL
LResources, Forms, Controls, Graphics, Dialogs, StdCtrls, Buttons, ExtCtrls,
Spin, ComCtrls, LCLType, LCLPlatformDef, InterfaceBase, Printers,
// Printers
Printer4LazStrConst,
OsPrinters, CUPSDyn;
type
{ TdlgSelectPrinter }
TdlgSelectPrinter = class(TForm)
Bevel1: TBEVEL;
btnProp: TBUTTON;
btnCancel: TBUTTON;
btnPrint: TBUTTON;
btnReduc: TBUTTON;
btnPreview: TBUTTON;
cbPrinters: TCOMBOBOX;
cbCollate: TCHECKBOX;
cbReverse: TCHECKBOX;
cbPrintToFile: TCheckBox;
edPageSet: TCOMBOBOX;
cbTasktime: TCOMBOBOX;
edRange: TEDIT;
panLabels: TPanel;
PrinterGroupbox: TGroupbox;
gbPages: TGROUPBOX;
gbCopies: TGROUPBOX;
ImgPrn: TIMAGE;
imgCollate: TIMAGE;
PrinterNameLabel: TLabel;
PrinterStateLabel: TLabel;
PrinterLocationLabel: TLabel;
PrinterDescriptionLabel: TLabel;
labComment: TLABEL;
labCUPS: TLABEL;
labPrinterName: TLabel;
PrioLabel: TLabel;
labCUPSServer: TLABEL;
labTask: TLABEL;
lanNumCopies: TLABEL;
labPage: TLABEL;
labLocation: TLABEL;
labState: TLABEL;
edTimeTask: TEDIT;
NbOpts: TPageControl;
pgAdvance: TTabSheet;
pgCopies: TTabSheet;
BtnPanel: TPanel;
rbSelection: TRadioButton;
rbRange: TRADIOBUTTON;
rbCurrentPage: TRADIOBUTTON;
rbAllPage: TRADIOBUTTON;
edCopies: TSPINEDIT;
edPriority: TSPINEDIT;
tkbPriority: TTRACKBAR;
procedure btnPrintCLICK(Sender: TObject);
procedure btnPropCLICK(Sender: TObject);
procedure btnReducCLICK(Sender: TObject);
procedure cbPrintersCHANGE(Sender: TObject);
procedure cbPrintersKEYPRESS(Sender: TObject; var Key: Char);
procedure cbReverseCLICK(Sender: TObject);
procedure cbTasktimeCHANGE(Sender: TObject);
procedure dlgSelectPrinterCREATE(Sender: TObject);
procedure dlgSelectPrinterSHOW(Sender: TObject);
procedure PrinterStateLabelChangeBounds(Sender: TObject);
procedure tkbPriorityCHANGE(Sender: TObject);
private
{ private declarations }
fPropertiesSetting : Boolean;
FOptions: TPrintDialogOptions;
FBig: boolean;
FHeightInit: integer;
FHeightDec: integer;
function GetPrintRange: TPrintRange;
procedure RefreshInfos;
procedure InitPrinterOptions;
procedure SetBigMode(AValue: boolean);
procedure SetPrintRange(const AValue: TPrintRange);
property BigMode: boolean read FBig write SetBigMode;
public
{ public declaration}
constructor Create(aOwner : TComponent); override;
property PrintRange: TPrintRange read GetPrintRange write SetPrintRange;
property Options: TPrintDialogOptions read FOptions write FOptions;
end;
var
dlgSelectPrinter: TdlgSelectPrinter;
implementation
{$R udlgselectprinter.lfm}
{$R selectprinter.res}
uses
uDlgPropertiesPrinter;
Type
THackCUPSPrinter = Class(TCUPSPrinter);
//Convert an local date & time to a GMT(UTC) Date & Time
function LocalToGMTDateTime(aDate : TDateTime) : TDateTime;
begin
//TODO: Adjust for time zone and DayLight saving time
result := aDate;
end;
//Convert an GMT(UTC) Date & Time to local date & time
function GMTToLocalDateTime(aDate : TDateTime) : TDateTime;
begin
//TODO: Adjust for time zone and DayLight saving time
result := aDate;
end;
{ TdlgSelectPrinter }
constructor TdlgSelectPrinter.Create(aOwner : TComponent);
begin
Inherited Create(aOwner);
FHeightInit:=Height;
FHeightDec:=NbOpts.Height+6;
if WidgetSet.LCLPlatform = lpCarbon then
begin //Can't hide tabs with button on Carbon, so just expand dialog.
BigMode:=true;
btnReduc.Visible:=false;
end
else
BigMode:=false;
end;
procedure TdlgSelectPrinter.tkbPriorityCHANGE(Sender: TObject);
begin
if Sender=nil then ;
edPriority.Value:=tkbPriority.Position;
end;
//Initialization
procedure TdlgSelectPrinter.RefreshInfos;
var St : string;
Stp : string;
n : Integer;
//Convert an GMT hour to Local hour
function GetTimeHold : string;
Var Dt : TDateTime;
begin
try
Dt:=Date+StrToTime(St);
DT:=GMTToLocalDatetime(Dt);
Result:=FormatDateTime('HH:NN:SS',Dt);
Except
Result:='00:00:00';
end;
end;
begin
try
cbPrintToFile.Visible := (poPrintToFile in FOptions);
cbPrintToFile.Enabled := not (poDisablePrintToFile in FOptions);
rbSelection.Enabled := (poSelection in FOptions);
rbCurrentPage.Enabled := (poPageNums in FOptions);
//State
St:='';
StP:='printer';
if Printer.PrinterType=ptNetWork then
StP:=StP+'_remote';
BtnPrint.Enabled:=True;
Case Printer.PrinterState of
psReady : St:=p4lrsJobStateReady;
psPrinting : St:=p4lrsJobStatePrinting;
psStopped : begin
St:=p4lrsJobStateStopped;
StP:=StP+'_stopped';
BtnPrint.Enabled:=False;
end;
end;
if Printer.CanPrint then
St:=St+' '+p4lrsJobStateAccepting
else
begin
St:=St+' '+p4lrsJobStateRejecting;
BtnPrint.Enabled:=False;
end;
labState.Caption:=St;
//DRw image printer
imgPrn.Picture.PixMap.TransparentColor:=clNone;
imgPrn.Picture.PixMap.LoadFromResourceName(HInstance, Stp);
imgPrn.Picture.PixMap.Transparent:=True;
//cups server
labCUPSServer.Caption:=cupsServer()+':'+IntToStr(ippPort());
//
labLocation.Caption:=THackCUPSPrinter(Printer).GetAttributeString('printer-location','');
labComment.Caption :=THackCUPSPrinter(Printer).GetAttributeString('printer-info','');
//Copies
edCopies.Value:=Printer.Copies;
cbCollate.Checked:=True; //For update image
//Range setting
edRange.Enabled:=
(poPageNums in FOptions) and
THackCUPSPrinter(Printer).GetAttributeBoolean('page-ranges-supported',False);
rbRange.Enabled:=edRange.Enabled;
//Job priority
n:=THackCUPSPrinter(Printer).GetAttributeInteger('job-priority-supported',0);
edPriority.MaxValue:=n;
tkbPriority.Max:=n;
n:=THackCUPSPrinter(Printer).GetAttributeInteger('job-priority-default',0);
edPriority.Value:=n;
edPriority.Tag :=n; //Save default priority
tkbPriority.Position:=n;
//Job-Hold
edTimeTask.Enabled:=False;
edTimeTask.Text:=FormatDateTime('hh:nn:ss',Now);
St:=THackCUPSPrinter(Printer).cupsGetOption('job-hold-until');
n:=0;
if St='indefinite' then n:=1;
if St='day-time' then n:=2;
if st='evening' then n:=3;
if st='night' then n:=4;
if st='weekend' then n:=5;
if St='second-shift' then n:=6;
if St='third-shift' then n:=7;
if Pos(':',St)<>0 then
begin
n:=8;
edTimeTask.Enabled:=True;
edTimeTask.Text:=St;
end;
cbTasktime.ItemIndex:=n;
Except
end;
end;
function TdlgSelectPrinter.GetPrintRange: TPrintRange;
begin
Result:=prAllPages;
if rbCurrentPage.checked then
Result:=prCurrentPage
else
if rbRange.checked then
Result:=prPageNums;
end;
//Initialization of selected Printer options
procedure TdlgSelectPrinter.InitPrinterOptions;
Var St : string;
pOr : TPrinterOrientation;
//Convert an Local hour to GMT hour
function GetTimeHold : string;
Var Dt : TDateTime;
begin
try
Dt:=Date+StrToTime(edTimeTask.Text);
DT:=LocalToGMTDateTime(Dt);
Result:=FormatDateTime('HH:NN:SS',Dt);
Except
Result:='indefinite';
end;
end;
begin
if not fPropertiesSetting then
begin
//Preserve selected orientation - isn't stored in cups options
pOr:=Printer.Orientation;
//Free current options if exists
THackCUPSPrinter(Printer).FreeOptions;
//Initialize default Options
THackCUPSPrinter(Printer).SetOptionsOfPrinter;
Printer.Orientation := pOr;
end;
//Copies
THackCUPSPrinter(Printer).cupsAddOption('copies',edCopies.Text);
if rbRange.Checked then
THackCUPSPrinter(Printer).cupsAddOption('page-ranges',edRange.Text);
if edPageSet.ItemIndex>0 then
begin
if edPageSet.ItemIndex=1 then
St:='Odd'
else
St:='Even';
THackCUPSPrinter(Printer).cupsAddOption('page-set',St);
end;
if cbCollate.Checked then
st:='separate-documents-collated-copies'
else
St:='separate-documents-uncollated-copies';
THackCUPSPrinter(Printer).cupsAddOption('multiple-document-handling',St);
if cbReverse.Checked then
THackCUPSPrinter(Printer).cupsAddOption('OutputOrder','Reverse');
//Priority job
if edPriority.Tag<>edPriority.Value then
THackCUPSPrinter(Printer).cupsAddOption('job-priority',edPriority.Text);
//Job-Hold
Case cbTasktime.ItemIndex of
1 : St:='indefinite';
2 : St:='day-time';
3 : st:='evening';
4 : st:='night';
5 : st:='weekend';
6 : St:='second-shift';
7 : St:='third-shift';
8 : St:=GetTimeHold;
else St:='no-hold';
end;
THackCUPSPrinter(Printer).cupsAddOption('job-hold-until',St);
end;
procedure TdlgSelectPrinter.SetPrintRange(const AValue: TPrintRange);
begin
case aValue of
prAllPages : rbAllPage.checked:=True;
prCurrentPage : rbCurrentPage.checked:=True;
prPageNums : rbRange.checked:=True;
end;
end;
//Initialization of screen
procedure TdlgSelectPrinter.dlgSelectPrinterSHOW(Sender: TObject);
begin
if Sender=nil then ;
NbOpts.PageIndex:=0;
cbPrinters.Items.Assign(Printer.Printers);
if cbPrinters.Items.Count>0 then
cbPrinters.ItemIndex:= Printer.PrinterIndex;
RefreshInfos;
end;
procedure TdlgSelectPrinter.PrinterStateLabelChangeBounds(Sender: TObject);
begin
labState.BorderSpacing.Top:=PrinterStateLabel.Top-labState.BorderSpacing.Around;
end;
procedure TdlgSelectPrinter.cbTasktimeCHANGE(Sender: TObject);
begin
if Sender=nil then ;
//Time is active if last item is selected
edTimeTask.Enabled:=(cbTaskTime.ItemIndex=cbTaskTime.Items.Count-1);
edTimeTask.Text:=FormatDateTime('hh:nn:ss',Now);
end;
procedure TdlgSelectPrinter.dlgSelectPrinterCREATE(Sender: TObject);
begin
if Sender=nil then ;
fPropertiesSetting:=False;
NbOpts.PageIndex:=0;
edPageSet.Items[0]:=p4lrsAllPages;
edPageSet.Items[1]:=p4lrsPageOdd;
edPageSet.Items[2]:=p4lrsPageEven;
end;
//Show corresponding image
procedure TdlgSelectPrinter.cbReverseCLICK(Sender: TObject);
Var St : string;
begin
if Sender=nil then ;
St:='collate';
If not cbCollate.Checked then
St:='un'+St;
if cbReverse.Checked then
St:=St+'_rev';
imgCollate.Picture.PixMap.TransparentColor:=clNone;
imgCollate.Picture.PixMap.LoadFromResourceName(HInstance, St);
imgCollate.Picture.BitMap.Transparent:=True;
end;
procedure TdlgSelectPrinter.cbPrintersKEYPRESS(Sender: TObject; var Key: Char);
begin
if Sender=nil then ;
Key:=#0;
end;
procedure TdlgSelectPrinter.btnReducCLICK(Sender: TObject);
begin
if Sender=nil then ;
BigMode:=not BigMode;
end;
procedure TdlgSelectPrinter.SetBigMode(AValue: boolean);
begin
FBig:= AValue;
NbOpts.Visible:= FBig;
Constraints.MinHeight:=0;
Constraints.MaxHeight:=0;
Height:=FHeightInit-IfThen(not FBig, FHeightDec);
Constraints.MinHeight:=Height;
Constraints.MaxHeight:=Height;
if not FBig then
btnReduc.Caption:=p4lrsButtonMoreArrow
else
btnReduc.Caption:=p4lrsButtonLessArrow;
end;
procedure TdlgSelectPrinter.btnPrintCLICK(Sender: TObject);
begin
if Sender=nil then ;
InitPrinterOptions;
end;
//Show the printer properties dialog
procedure TdlgSelectPrinter.btnPropCLICK(Sender: TObject);
var Dlg : Tdlgpropertiesprinter;
begin
if Sender=nil then ;
//Set default printer
THackCUPSPrinter(Printer).SelectCurrentPrinterOrDefault;
Dlg:=Tdlgpropertiesprinter.Create(self);
try
if Dlg.ShowModal=mrOk then
begin
Dlg.InitProperties;
fPropertiesSetting:=True;
end;
finally
Dlg.free;
end;
end;
procedure TdlgSelectPrinter.cbPrintersCHANGE(Sender: TObject);
var
tmpn: Integer;
tmpOptions: Pcups_option_t;
begin
if Sender=nil then ;
tmpn := THackCupsPrinter(Printer).CopyOptions(tmpOptions);
Printer.SetPrinter(cbPrinters.Text);
fPropertiesSetting:=False;
THackCupsPrinter(Printer).MergeOptions(tmpOptions, tmpn);
RefreshInfos;
end;
end.
|