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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "prtsetup.hxx"
#include <svdata.hxx>
#include <strings.hrc>
#include <officecfg/Office/Common.hxx>
using namespace psp;
void RTSDialog::insertAllPPDValues(weld::ComboBox& rBox, const PPDParser* pParser, const PPDKey* pKey )
{
if( ! pKey || ! pParser )
return;
const PPDValue* pValue = nullptr;
OUString aOptionText;
for (int i = 0; i < pKey->countValues(); ++i)
{
pValue = pKey->getValue( i );
if (pValue->m_bCustomOption)
continue;
aOptionText = pParser->translateOption( pKey->getKey(), pValue->m_aOption) ;
OUString sId(weld::toId(pValue));
int nCurrentPos = rBox.find_id(sId);
if( m_aJobData.m_aContext.checkConstraints( pKey, pValue ) )
{
if (nCurrentPos == -1)
rBox.append(sId, aOptionText);
}
else
{
if (nCurrentPos != -1)
rBox.remove(nCurrentPos);
}
}
pValue = m_aJobData.m_aContext.getValue( pKey );
if (pValue && !pValue->m_bCustomOption)
{
OUString sId(weld::toId(pValue));
int nPos = rBox.find_id(sId);
if (nPos != -1)
rBox.set_active(nPos);
}
}
/*
* RTSDialog
*/
RTSDialog::RTSDialog(const PrinterInfo& rJobData, weld::Window* pParent)
: GenericDialogController(pParent, "vcl/ui/printerpropertiesdialog.ui", "PrinterPropertiesDialog")
, m_aJobData(rJobData)
, m_bDataModified(false)
, m_xTabControl(m_xBuilder->weld_notebook("tabcontrol"))
, m_xOKButton(m_xBuilder->weld_button("ok"))
, m_xCancelButton(m_xBuilder->weld_button("cancel"))
, m_xPaperPage(new RTSPaperPage(m_xTabControl->get_page("paper"), this))
, m_xDevicePage(new RTSDevicePage(m_xTabControl->get_page("device"), this))
{
OUString aTitle(m_xDialog->get_title());
m_xDialog->set_title(aTitle.replaceAll("%s", m_aJobData.m_aPrinterName));
m_xTabControl->connect_enter_page( LINK( this, RTSDialog, ActivatePage ) );
m_xOKButton->connect_clicked( LINK( this, RTSDialog, ClickButton ) );
m_xCancelButton->connect_clicked( LINK( this, RTSDialog, ClickButton ) );
ActivatePage(m_xTabControl->get_current_page_ident());
}
RTSDialog::~RTSDialog()
{
}
IMPL_LINK(RTSDialog, ActivatePage, const OUString&, rPage, void)
{
if (rPage == "paper")
m_xPaperPage->update();
}
IMPL_LINK( RTSDialog, ClickButton, weld::Button&, rButton, void )
{
if (&rButton == m_xOKButton.get())
{
// refresh the changed values
if (m_xPaperPage)
{
// orientation
m_aJobData.m_eOrientation = m_xPaperPage->getOrientation() == 0 ?
orientation::Portrait : orientation::Landscape;
// assume use of paper size from printer setup if the user
// got here via File > Printer Settings ...
if ( m_aJobData.meSetupMode == PrinterSetupMode::DocumentGlobal )
m_aJobData.m_bPapersizeFromSetup = true;
}
if( m_xDevicePage )
{
m_aJobData.m_nColorDepth = m_xDevicePage->getDepth();
m_aJobData.m_nColorDevice = m_xDevicePage->getColorDevice();
}
m_xDialog->response(RET_OK);
}
else if (&rButton == m_xCancelButton.get())
m_xDialog->response(RET_CANCEL);
}
/*
* RTSPaperPage
*/
RTSPaperPage::RTSPaperPage(weld::Widget* pPage, RTSDialog* pDialog)
: m_xBuilder(Application::CreateBuilder(pPage, "vcl/ui/printerpaperpage.ui"))
, m_pParent(pDialog)
, m_xContainer(m_xBuilder->weld_widget("PrinterPaperPage"))
, m_xCbFromSetup(m_xBuilder->weld_check_button("papersizefromsetup"))
, m_xPaperText(m_xBuilder->weld_label("paperft"))
, m_xPaperBox(m_xBuilder->weld_combo_box("paperlb"))
, m_xOrientText(m_xBuilder->weld_label("orientft"))
, m_xOrientBox(m_xBuilder->weld_combo_box("orientlb"))
, m_xDuplexText(m_xBuilder->weld_label("duplexft"))
, m_xDuplexBox(m_xBuilder->weld_combo_box("duplexlb"))
, m_xSlotText(m_xBuilder->weld_label("slotft"))
, m_xSlotBox(m_xBuilder->weld_combo_box("slotlb"))
{
//PrinterPaperPage
m_xPaperBox->connect_changed( LINK( this, RTSPaperPage, SelectHdl ) );
m_xOrientBox->connect_changed( LINK( this, RTSPaperPage, SelectHdl ) );
m_xDuplexBox->connect_changed( LINK( this, RTSPaperPage, SelectHdl ) );
m_xSlotBox->connect_changed( LINK( this, RTSPaperPage, SelectHdl ) );
m_xCbFromSetup->connect_toggled( LINK( this, RTSPaperPage, CheckBoxHdl ) );
update();
}
RTSPaperPage::~RTSPaperPage()
{
}
void RTSPaperPage::update()
{
const PPDKey* pKey = nullptr;
// orientation
m_xOrientBox->set_active(m_pParent->m_aJobData.m_eOrientation == orientation::Portrait ? 0 : 1);
// duplex
if( m_pParent->m_aJobData.m_pParser &&
(pKey = m_pParent->m_aJobData.m_pParser->getKey( "Duplex" )) )
{
m_pParent->insertAllPPDValues( *m_xDuplexBox, m_pParent->m_aJobData.m_pParser, pKey );
}
else
{
m_xDuplexText->set_sensitive( false );
m_xDuplexBox->set_sensitive( false );
}
// paper
if( m_pParent->m_aJobData.m_pParser &&
(pKey = m_pParent->m_aJobData.m_pParser->getKey( "PageSize" )) )
{
m_pParent->insertAllPPDValues( *m_xPaperBox, m_pParent->m_aJobData.m_pParser, pKey );
}
else
{
m_xPaperText->set_sensitive( false );
m_xPaperBox->set_sensitive( false );
}
// input slots
if( m_pParent->m_aJobData.m_pParser &&
(pKey = m_pParent->m_aJobData.m_pParser->getKey( "InputSlot" )) )
{
m_pParent->insertAllPPDValues( *m_xSlotBox, m_pParent->m_aJobData.m_pParser, pKey );
}
else
{
m_xSlotText->set_sensitive( false );
m_xSlotBox->set_sensitive( false );
}
if ( m_pParent->m_aJobData.meSetupMode != PrinterSetupMode::SingleJob )
return;
m_xCbFromSetup->show();
if ( m_pParent->m_aJobData.m_bPapersizeFromSetup )
m_xCbFromSetup->set_active(m_pParent->m_aJobData.m_bPapersizeFromSetup);
// disable those, unless user wants to use papersize from printer prefs
// as they have no influence on what's going to be printed anyway
else
{
m_xPaperText->set_sensitive( false );
m_xPaperBox->set_sensitive( false );
m_xOrientText->set_sensitive( false );
m_xOrientBox->set_sensitive( false );
}
}
IMPL_LINK( RTSPaperPage, SelectHdl, weld::ComboBox&, rBox, void )
{
const PPDKey* pKey = nullptr;
if( &rBox == m_xPaperBox.get() )
{
if( m_pParent->m_aJobData.m_pParser )
pKey = m_pParent->m_aJobData.m_pParser->getKey( "PageSize" );
}
else if( &rBox == m_xDuplexBox.get() )
{
if( m_pParent->m_aJobData.m_pParser )
pKey = m_pParent->m_aJobData.m_pParser->getKey( "Duplex" );
}
else if( &rBox == m_xSlotBox.get() )
{
if( m_pParent->m_aJobData.m_pParser )
pKey = m_pParent->m_aJobData.m_pParser->getKey( "InputSlot" );
}
else if( &rBox == m_xOrientBox.get() )
{
m_pParent->m_aJobData.m_eOrientation = m_xOrientBox->get_active() == 0 ? orientation::Portrait : orientation::Landscape;
}
if( pKey )
{
PPDValue* pValue = weld::fromId<PPDValue*>(rBox.get_active_id());
m_pParent->m_aJobData.m_aContext.setValue( pKey, pValue );
update();
}
m_pParent->SetDataModified( true );
}
IMPL_LINK_NOARG(RTSPaperPage, CheckBoxHdl, weld::Toggleable&, void)
{
bool bFromSetup = m_xCbFromSetup->get_active();
m_pParent->m_aJobData.m_bPapersizeFromSetup = bFromSetup;
m_xPaperText->set_sensitive(bFromSetup);
m_xPaperBox->set_sensitive(bFromSetup);
m_xOrientText->set_sensitive(bFromSetup);
m_xOrientBox->set_sensitive(bFromSetup);
m_pParent->SetDataModified(true);
}
/*
* RTSDevicePage
*/
RTSDevicePage::RTSDevicePage(weld::Widget* pPage, RTSDialog* pParent)
: m_xBuilder(Application::CreateBuilder(pPage, "vcl/ui/printerdevicepage.ui"))
, m_pCustomValue(nullptr)
, m_pParent(pParent)
, m_xContainer(m_xBuilder->weld_widget("PrinterDevicePage"))
, m_xPPDKeyBox(m_xBuilder->weld_tree_view("options"))
, m_xPPDValueBox(m_xBuilder->weld_tree_view("values"))
, m_xCustomEdit(m_xBuilder->weld_entry("custom"))
, m_xSpaceBox(m_xBuilder->weld_combo_box("colorspace"))
, m_xDepthBox(m_xBuilder->weld_combo_box("colordepth"))
, m_aReselectCustomIdle("RTSDevicePage m_aReselectCustomIdle")
{
m_aReselectCustomIdle.SetInvokeHandler(LINK(this, RTSDevicePage, ImplHandleReselectHdl));
m_xPPDKeyBox->set_size_request(m_xPPDKeyBox->get_approximate_digit_width() * 32,
m_xPPDKeyBox->get_height_rows(12));
m_xCustomEdit->connect_changed(LINK(this, RTSDevicePage, ModifyHdl));
m_xPPDKeyBox->connect_changed( LINK( this, RTSDevicePage, SelectHdl ) );
m_xPPDValueBox->connect_changed( LINK( this, RTSDevicePage, SelectHdl ) );
m_xSpaceBox->connect_changed(LINK(this, RTSDevicePage, ComboChangedHdl));
m_xDepthBox->connect_changed(LINK(this, RTSDevicePage, ComboChangedHdl));
switch( m_pParent->m_aJobData.m_nColorDevice )
{
case 0:
m_xSpaceBox->set_active(0);
break;
case 1:
m_xSpaceBox->set_active(1);
break;
case -1:
m_xSpaceBox->set_active(2);
break;
}
if (m_pParent->m_aJobData.m_nColorDepth == 8)
m_xDepthBox->set_active(0);
else if (m_pParent->m_aJobData.m_nColorDepth == 24)
m_xDepthBox->set_active(1);
// fill ppd boxes
if( !m_pParent->m_aJobData.m_pParser )
return;
for( int i = 0; i < m_pParent->m_aJobData.m_pParser->getKeys(); i++ )
{
const PPDKey* pKey = m_pParent->m_aJobData.m_pParser->getKey( i );
// skip options already shown somewhere else
// also skip options from the "InstallableOptions" PPD group
// Options in that group define hardware features that are not
// job-specific and should better be handled in the system-wide
// printer configuration. Keyword is defined in PPD specification
// (version 4.3), section 5.4.
if( pKey->isUIKey() &&
pKey->getKey() != "PageSize" &&
pKey->getKey() != "InputSlot" &&
pKey->getKey() != "PageRegion" &&
pKey->getKey() != "Duplex" &&
pKey->getGroup() != "InstallableOptions")
{
OUString aEntry( m_pParent->m_aJobData.m_pParser->translateKey( pKey->getKey() ) );
m_xPPDKeyBox->append(weld::toId(pKey), aEntry);
}
}
}
RTSDevicePage::~RTSDevicePage()
{
}
sal_uLong RTSDevicePage::getDepth() const
{
sal_uInt16 nSelectPos = m_xDepthBox->get_active();
if (nSelectPos == 0)
return 8;
else
return 24;
}
sal_uLong RTSDevicePage::getColorDevice() const
{
sal_uInt16 nSelectPos = m_xSpaceBox->get_active();
switch (nSelectPos)
{
case 0:
return 0;
case 1:
return 1;
case 2:
return -1;
}
return 0;
}
IMPL_LINK(RTSDevicePage, ModifyHdl, weld::Entry&, rEdit, void)
{
if (m_pCustomValue)
{
// tdf#123734 Custom PPD option values are a CUPS extension to PPDs and the user-set value
// needs to be prefixed with "Custom." in order to be processed properly
m_pCustomValue->m_aCustomOption = "Custom." + rEdit.get_text();
m_pCustomValue->m_bCustomOptionSetViaApp = true;
}
}
IMPL_LINK( RTSDevicePage, SelectHdl, weld::TreeView&, rBox, void )
{
if (&rBox == m_xPPDKeyBox.get())
{
const PPDKey* pKey = weld::fromId<PPDKey*>(m_xPPDKeyBox->get_selected_id());
FillValueBox( pKey );
}
else if (&rBox == m_xPPDValueBox.get())
{
const PPDKey* pKey = weld::fromId<PPDKey*>(m_xPPDKeyBox->get_selected_id());
const PPDValue* pValue = weld::fromId<PPDValue*>(m_xPPDValueBox->get_selected_id());
if (pKey && pValue)
{
m_pParent->m_aJobData.m_aContext.setValue( pKey, pValue );
ValueBoxChanged(pKey);
}
}
m_pParent->SetDataModified( true );
}
IMPL_LINK_NOARG( RTSDevicePage, ComboChangedHdl, weld::ComboBox&, void )
{
m_pParent->SetDataModified( true );
}
void RTSDevicePage::FillValueBox( const PPDKey* pKey )
{
m_xPPDValueBox->clear();
m_xCustomEdit->hide();
if( ! pKey )
return;
const PPDValue* pValue = nullptr;
for( int i = 0; i < pKey->countValues(); i++ )
{
pValue = pKey->getValue( i );
if( m_pParent->m_aJobData.m_aContext.checkConstraints( pKey, pValue ) &&
m_pParent->m_aJobData.m_pParser )
{
OUString aEntry;
if (pValue->m_bCustomOption)
aEntry = VclResId(SV_PRINT_CUSTOM_TXT);
else
aEntry = m_pParent->m_aJobData.m_pParser->translateOption( pKey->getKey(), pValue->m_aOption);
m_xPPDValueBox->append(weld::toId(pValue), aEntry);
}
}
pValue = m_pParent->m_aJobData.m_aContext.getValue( pKey );
m_xPPDValueBox->select_id(weld::toId(pValue));
ValueBoxChanged(pKey);
}
IMPL_LINK_NOARG(RTSDevicePage, ImplHandleReselectHdl, Timer*, void)
{
//in case selected entry is now not visible select it again to scroll it into view
m_xPPDValueBox->select(m_xPPDValueBox->get_selected_index());
}
void RTSDevicePage::ValueBoxChanged( const PPDKey* pKey )
{
const PPDValue* pValue = m_pParent->m_aJobData.m_aContext.getValue(pKey);
if (pValue->m_bCustomOption)
{
m_pCustomValue = pValue;
m_pParent->m_aJobData.m_aContext.setValue(pKey, pValue);
// don't show the "Custom." prefix in the UI, s.a. comment in ModifyHdl
m_xCustomEdit->set_text(m_pCustomValue->m_aCustomOption.replaceFirst("Custom.", ""));
m_xCustomEdit->show();
m_aReselectCustomIdle.Start();
}
else
m_xCustomEdit->hide();
}
int SetupPrinterDriver(weld::Window* pParent, ::psp::PrinterInfo& rJobData)
{
int nRet = 0;
RTSDialog aDialog(rJobData, pParent);
// return 0 if cancel was pressed or if the data
// weren't modified, 1 otherwise
if (aDialog.run() != RET_CANCEL)
{
rJobData = aDialog.getSetup();
nRet = aDialog.GetDataModified() ? 1 : 0;
}
return nRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|