Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "connpooloptions.hxx"
21 : #include <svtools/editbrowsebox.hxx>
22 : #include <vcl/field.hxx>
23 : #include <vcl/builderfactory.hxx>
24 : #include "connpoolsettings.hxx"
25 : #include <svl/eitem.hxx>
26 : #include <cuires.hrc>
27 : #include "helpid.hrc"
28 : #include <dialmgr.hxx>
29 :
30 : using ::svt::EditBrowseBox;
31 :
32 : namespace offapp
33 : {
34 : /// Widget for the Connection Pool options page
35 0 : class DriverListControl : public EditBrowseBox
36 : {
37 : using Window::Update;
38 : protected:
39 : DriverPoolingSettings m_aSavedSettings;
40 : DriverPoolingSettings m_aSettings;
41 : DriverPoolingSettings::const_iterator m_aSeekRow;
42 :
43 : OUString m_sYes;
44 : OUString m_sNo;
45 :
46 : Link<> m_aRowChangeHandler;
47 :
48 : public:
49 : DriverListControl(vcl::Window* _pParent);
50 :
51 : virtual void Init() SAL_OVERRIDE;
52 : void Update(const DriverPoolingSettings& _rSettings);
53 : virtual OUString GetCellText( long nRow, sal_uInt16 nColId ) const SAL_OVERRIDE;
54 :
55 : // the handler will be called with a DriverPoolingSettings::const_iterator as parameter,
56 : // or NULL if no valid current row exists
57 0 : void SetRowChangeHandler(const Link<>& _rHdl) { m_aRowChangeHandler = _rHdl; }
58 :
59 : DriverPooling* getCurrentRow();
60 : void updateCurrentRow();
61 :
62 0 : const DriverPoolingSettings& getSettings() const { return m_aSettings; }
63 :
64 0 : void saveValue() { m_aSavedSettings = m_aSettings; }
65 : bool isModified() const;
66 :
67 : protected:
68 : virtual void InitController( ::svt::CellControllerRef& rController, long nRow, sal_uInt16 nCol ) SAL_OVERRIDE;
69 : virtual ::svt::CellController* GetController( long nRow, sal_uInt16 nCol ) SAL_OVERRIDE;
70 :
71 : virtual void PaintCell( OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId ) const SAL_OVERRIDE;
72 :
73 : virtual bool SeekRow( long nRow ) SAL_OVERRIDE;
74 : virtual bool SaveModified() SAL_OVERRIDE;
75 :
76 : virtual bool IsTabAllowed(bool _bForward) const SAL_OVERRIDE;
77 :
78 : virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
79 :
80 : virtual void CursorMoved() SAL_OVERRIDE;
81 :
82 : protected:
83 : virtual sal_uInt32 GetTotalCellWidth(long nRow, sal_uInt16 nColId) SAL_OVERRIDE;
84 :
85 :
86 : private:
87 : OUString implGetCellText(DriverPoolingSettings::const_iterator _rPos, sal_uInt16 _nColId) const;
88 : };
89 :
90 :
91 0 : DriverListControl::DriverListControl(vcl::Window* _pParent)
92 : :EditBrowseBox(_pParent, EditBrowseBoxFlags::NO_HANDLE_COLUMN_CONTENT, WB_BORDER,
93 0 : BrowserMode::AUTO_VSCROLL | BrowserMode::AUTO_HSCROLL | BrowserMode::HIDECURSOR | BrowserMode::AUTOSIZE_LASTCOL | BrowserMode::KEEPHIGHLIGHT)
94 0 : ,m_aSeekRow(m_aSettings.end())
95 0 : ,m_sYes(CUI_RES(RID_SVXSTR_YES))
96 0 : ,m_sNo(CUI_RES(RID_SVXSTR_NO))
97 : {
98 0 : SetStyle((GetStyle() & ~WB_HSCROLL) | WB_AUTOHSCROLL);
99 :
100 0 : SetUniqueId(UID_OFA_CONNPOOL_DRIVERLIST_BACK);
101 0 : }
102 :
103 0 : VCL_BUILDER_FACTORY(DriverListControl)
104 :
105 0 : bool DriverListControl::IsTabAllowed(bool /*_bForward*/) const
106 : {
107 : // no travelling within the fields via RETURN and TAB
108 0 : return false;
109 : }
110 :
111 :
112 0 : bool DriverListControl::isModified() const
113 : {
114 0 : if (m_aSettings.size() != m_aSavedSettings.size())
115 0 : return true;
116 :
117 0 : DriverPoolingSettings::const_iterator aCurrent = m_aSettings.begin();
118 0 : DriverPoolingSettings::const_iterator aCurrentEnd = m_aSettings.end();
119 0 : DriverPoolingSettings::const_iterator aSaved = m_aSavedSettings.begin();
120 0 : for (;aCurrent != aCurrentEnd; ++aCurrent, ++aSaved)
121 : {
122 0 : if (*aCurrent != *aSaved)
123 0 : return true;
124 : }
125 :
126 0 : return false;
127 : }
128 :
129 :
130 0 : void DriverListControl::Init()
131 : {
132 0 : EditBrowseBox::Init();
133 :
134 0 : Size aColWidth = LogicToPixel(Size(160, 0), MAP_APPFONT);
135 0 : InsertDataColumn(1, OUString(CUI_RES(RID_SVXSTR_DRIVER_NAME)), aColWidth.Width());
136 0 : aColWidth = LogicToPixel(Size(30, 0), MAP_APPFONT);
137 0 : InsertDataColumn(2, OUString(CUI_RES(RID_SVXSTR_POOLED_FLAG)), aColWidth.Width());
138 0 : aColWidth = LogicToPixel(Size(60, 0), MAP_APPFONT);
139 0 : InsertDataColumn(3, OUString(CUI_RES(RID_SVXSTR_POOL_TIMEOUT)), aColWidth.Width());
140 : // Attention: the resource of the string is local to the resource of the enclosing dialog!
141 0 : }
142 :
143 :
144 0 : void DriverListControl::CursorMoved()
145 : {
146 0 : EditBrowseBox::CursorMoved();
147 :
148 : // call the row change handler
149 0 : if ( m_aRowChangeHandler.IsSet() )
150 : {
151 0 : if ( GetCurRow() >= 0 )
152 : { // == -1 may happen in case the browse box has just been cleared
153 0 : m_aRowChangeHandler.Call( getCurrentRow() );
154 : }
155 : }
156 0 : }
157 :
158 0 : DriverPooling* DriverListControl::getCurrentRow()
159 : {
160 : OSL_ENSURE( ( GetCurRow() < m_aSettings.size() ) && ( GetCurRow() >= 0 ),
161 : "DriverListControl::getCurrentRow: invalid current row!");
162 :
163 0 : if ( ( GetCurRow() >= 0 ) && ( GetCurRow() < m_aSettings.size() ) )
164 0 : return &(*(m_aSettings.begin() + GetCurRow()));
165 :
166 0 : return NULL;
167 : }
168 :
169 :
170 0 : void DriverListControl::updateCurrentRow()
171 : {
172 0 : Window::Invalidate( GetRowRectPixel( GetCurRow() ), InvalidateFlags::Update );
173 0 : }
174 :
175 :
176 0 : void DriverListControl::Update(const DriverPoolingSettings& _rSettings)
177 : {
178 0 : m_aSettings = _rSettings;
179 :
180 0 : SetUpdateMode(false);
181 0 : RowRemoved(0, GetRowCount());
182 0 : RowInserted(0, m_aSettings.size());
183 0 : SetUpdateMode(true);
184 :
185 0 : ActivateCell(1, 0);
186 0 : }
187 :
188 :
189 0 : sal_uInt32 DriverListControl::GetTotalCellWidth(long nRow, sal_uInt16 nColId)
190 : {
191 0 : return GetDataWindow().GetTextWidth(GetCellText(nRow, nColId));
192 : }
193 :
194 :
195 0 : OUString DriverListControl::implGetCellText(DriverPoolingSettings::const_iterator _rPos, sal_uInt16 _nColId) const
196 : {
197 : OSL_ENSURE(_rPos < m_aSettings.end(), "DriverListControl::implGetCellText: invalid position!");
198 :
199 0 : OUString sReturn;
200 0 : switch (_nColId)
201 : {
202 : case 1:
203 0 : sReturn = _rPos->sName;
204 0 : break;
205 : case 2:
206 0 : sReturn = _rPos->bEnabled ? m_sYes : m_sNo;
207 0 : break;
208 : case 3:
209 0 : if (_rPos->bEnabled)
210 0 : sReturn = OUString::number(_rPos->nTimeoutSeconds);
211 0 : break;
212 : default:
213 : OSL_FAIL("DriverListControl::implGetCellText: invalid column id!");
214 : }
215 0 : return sReturn;
216 : }
217 :
218 :
219 0 : void DriverListControl::StateChanged( StateChangedType nStateChange )
220 : {
221 0 : if (StateChangedType::Enable == nStateChange)
222 0 : Window::Invalidate(InvalidateFlags::Update);
223 0 : EditBrowseBox::StateChanged( nStateChange );
224 0 : }
225 :
226 :
227 0 : OUString DriverListControl::GetCellText( long nRow, sal_uInt16 nColId ) const
228 : {
229 0 : OUString sReturn;
230 0 : if (nRow > m_aSettings.size())
231 : {
232 : OSL_FAIL("DriverListControl::GetCellText: don't ask me for such rows!");
233 : }
234 : else
235 : {
236 0 : sReturn = implGetCellText(m_aSettings.begin() + nRow, nColId);
237 : }
238 0 : return sReturn;
239 : }
240 :
241 :
242 0 : void DriverListControl::InitController( ::svt::CellControllerRef& rController, long nRow, sal_uInt16 nCol )
243 : {
244 0 : rController->GetWindow().SetText(GetCellText(nRow, nCol));
245 0 : }
246 :
247 :
248 0 : ::svt::CellController* DriverListControl::GetController( long /*nRow*/, sal_uInt16 /*nCol*/ )
249 : {
250 0 : return NULL;
251 : }
252 :
253 :
254 0 : bool DriverListControl::SaveModified()
255 : {
256 0 : return true;
257 : }
258 :
259 :
260 0 : bool DriverListControl::SeekRow( long _nRow )
261 : {
262 0 : EditBrowseBox::SeekRow(_nRow);
263 :
264 0 : if (_nRow < m_aSettings.size())
265 0 : m_aSeekRow = m_aSettings.begin() + _nRow;
266 : else
267 0 : m_aSeekRow = m_aSettings.end();
268 :
269 0 : return m_aSeekRow != m_aSettings.end();
270 : }
271 :
272 :
273 0 : void DriverListControl::PaintCell( OutputDevice& rDev, const Rectangle& rRect, sal_uInt16 nColId ) const
274 : {
275 : OSL_ENSURE(m_aSeekRow != m_aSettings.end(), "DriverListControl::PaintCell: invalid row!");
276 :
277 0 : if (m_aSeekRow != m_aSettings.end())
278 : {
279 0 : rDev.SetClipRegion(vcl::Region(rRect));
280 :
281 0 : DrawTextFlags nStyle = DrawTextFlags::Clip;
282 0 : if (!IsEnabled())
283 0 : nStyle |= DrawTextFlags::Disable;
284 0 : switch (nColId)
285 : {
286 0 : case 1: nStyle |= DrawTextFlags::Left; break;
287 : case 2:
288 0 : case 3: nStyle |= DrawTextFlags::Center; break;
289 : }
290 :
291 0 : rDev.DrawText(rRect, implGetCellText(m_aSeekRow, nColId), nStyle);
292 :
293 0 : rDev.SetClipRegion();
294 : }
295 0 : }
296 :
297 0 : ConnectionPoolOptionsPage::ConnectionPoolOptionsPage(vcl::Window* _pParent, const SfxItemSet& _rAttrSet)
298 0 : : SfxTabPage(_pParent, "ConnPoolPage", "cui/ui/connpooloptions.ui", &_rAttrSet)
299 : {
300 0 : get(m_pEnablePooling, "connectionpooling");
301 0 : get(m_pDriversLabel, "driverslabel");
302 0 : get(m_pDriverList, "driverlist");
303 0 : get(m_pDriverLabel, "driverlabel");
304 0 : get(m_pDriver, "driver");
305 0 : get(m_pDriverPoolingEnabled, "enablepooling");
306 0 : get(m_pTimeoutLabel, "timeoutlabel");
307 0 : get(m_pTimeout, "timeout");
308 :
309 0 : Size aControlSize(248, 100);
310 0 : aControlSize = LogicToPixel(aControlSize, MAP_APPFONT);
311 0 : m_pDriverList->set_width_request(aControlSize.Width());
312 0 : m_pDriverList->set_height_request(aControlSize.Height());
313 0 : m_pDriverList->Init();
314 0 : m_pDriverList->Show();
315 :
316 0 : m_pEnablePooling->SetClickHdl( LINK(this, ConnectionPoolOptionsPage, OnEnabledDisabled) );
317 0 : m_pDriverPoolingEnabled->SetClickHdl( LINK(this, ConnectionPoolOptionsPage, OnEnabledDisabled) );
318 :
319 0 : m_pDriverList->SetRowChangeHandler( LINK(this, ConnectionPoolOptionsPage, OnDriverRowChanged) );
320 0 : }
321 :
322 0 : ConnectionPoolOptionsPage::~ConnectionPoolOptionsPage()
323 : {
324 0 : disposeOnce();
325 0 : }
326 :
327 0 : void ConnectionPoolOptionsPage::dispose()
328 : {
329 0 : m_pEnablePooling.clear();
330 0 : m_pDriversLabel.clear();
331 0 : m_pDriverList.clear();
332 0 : m_pDriverLabel.clear();
333 0 : m_pDriver.clear();
334 0 : m_pDriverPoolingEnabled.clear();
335 0 : m_pTimeoutLabel.clear();
336 0 : m_pTimeout.clear();
337 0 : SfxTabPage::dispose();
338 0 : }
339 :
340 0 : VclPtr<SfxTabPage> ConnectionPoolOptionsPage::Create(vcl::Window* _pParent, const SfxItemSet* _rAttrSet)
341 : {
342 0 : return VclPtr<ConnectionPoolOptionsPage>::Create(_pParent, *_rAttrSet);
343 : }
344 :
345 0 : void ConnectionPoolOptionsPage::implInitControls(const SfxItemSet& _rSet, bool /*_bFromReset*/)
346 : {
347 : // the enabled flag
348 0 : SFX_ITEMSET_GET( _rSet, pEnabled, SfxBoolItem, SID_SB_POOLING_ENABLED, true );
349 : OSL_ENSURE(pEnabled, "ConnectionPoolOptionsPage::implInitControls: missing the Enabled item!");
350 0 : m_pEnablePooling->Check(pEnabled == nullptr || pEnabled->GetValue());
351 :
352 0 : m_pEnablePooling->SaveValue();
353 :
354 : // the settings for the single drivers
355 0 : SFX_ITEMSET_GET( _rSet, pDriverSettings, DriverPoolingSettingsItem, SID_SB_DRIVER_TIMEOUTS, true );
356 0 : if (pDriverSettings)
357 0 : m_pDriverList->Update(pDriverSettings->getSettings());
358 : else
359 : {
360 : OSL_FAIL("ConnectionPoolOptionsPage::implInitControls: missing the DriverTimeouts item!");
361 0 : m_pDriverList->Update(DriverPoolingSettings());
362 : }
363 0 : m_pDriverList->saveValue();
364 :
365 : // reflect the new settings
366 0 : OnEnabledDisabled(m_pEnablePooling);
367 0 : }
368 :
369 :
370 0 : bool ConnectionPoolOptionsPage::Notify( NotifyEvent& _rNEvt )
371 : {
372 0 : if (MouseNotifyEvent::LOSEFOCUS == _rNEvt.GetType())
373 0 : if (m_pTimeout->IsWindowOrChild(_rNEvt.GetWindow()))
374 0 : commitTimeoutField();
375 :
376 0 : return SfxTabPage::Notify(_rNEvt);
377 : }
378 :
379 :
380 0 : bool ConnectionPoolOptionsPage::FillItemSet(SfxItemSet* _rSet)
381 : {
382 0 : commitTimeoutField();
383 :
384 0 : bool bModified = false;
385 : // the enabled flag
386 0 : if (m_pEnablePooling->IsValueChangedFromSaved())
387 : {
388 0 : _rSet->Put(SfxBoolItem(SID_SB_POOLING_ENABLED, m_pEnablePooling->IsChecked()), SID_SB_POOLING_ENABLED);
389 0 : bModified = true;
390 : }
391 :
392 : // the settings for the single drivers
393 0 : if (m_pDriverList->isModified())
394 : {
395 0 : _rSet->Put(DriverPoolingSettingsItem(SID_SB_DRIVER_TIMEOUTS, m_pDriverList->getSettings()), SID_SB_DRIVER_TIMEOUTS);
396 0 : bModified = true;
397 : }
398 :
399 0 : return bModified;
400 : }
401 :
402 :
403 0 : void ConnectionPoolOptionsPage::ActivatePage( const SfxItemSet& _rSet)
404 : {
405 0 : SfxTabPage::ActivatePage(_rSet);
406 0 : implInitControls(_rSet, false);
407 0 : }
408 :
409 :
410 0 : void ConnectionPoolOptionsPage::Reset(const SfxItemSet* _rSet)
411 : {
412 0 : implInitControls(*_rSet, true);
413 0 : }
414 :
415 :
416 0 : IMPL_LINK( ConnectionPoolOptionsPage, OnDriverRowChanged, const void*, _pRowIterator )
417 : {
418 0 : bool bValidRow = (NULL != _pRowIterator);
419 0 : m_pDriverPoolingEnabled->Enable(bValidRow && m_pEnablePooling->IsChecked());
420 0 : m_pTimeoutLabel->Enable(bValidRow);
421 0 : m_pTimeout->Enable(bValidRow);
422 :
423 0 : if (!bValidRow)
424 : { // positioned on an invalid row
425 0 : m_pDriver->SetText(OUString());
426 : }
427 : else
428 : {
429 0 : const DriverPooling *pDriverPos = static_cast<const DriverPooling*>(_pRowIterator);
430 :
431 0 : m_pDriver->SetText(pDriverPos->sName);
432 0 : m_pDriverPoolingEnabled->Check(pDriverPos->bEnabled);
433 0 : m_pTimeout->SetText(OUString::number(pDriverPos->nTimeoutSeconds));
434 :
435 0 : OnEnabledDisabled(m_pDriverPoolingEnabled);
436 : }
437 :
438 0 : return 0L;
439 : }
440 :
441 :
442 0 : void ConnectionPoolOptionsPage::commitTimeoutField()
443 : {
444 0 : if (DriverPooling* pCurrentDriver = m_pDriverList->getCurrentRow())
445 : {
446 0 : pCurrentDriver->nTimeoutSeconds = static_cast<long>(m_pTimeout->GetValue());
447 0 : m_pDriverList->updateCurrentRow();
448 : }
449 0 : }
450 :
451 :
452 0 : IMPL_LINK( ConnectionPoolOptionsPage, OnEnabledDisabled, const CheckBox*, _pCheckBox )
453 : {
454 0 : bool bGloballyEnabled = m_pEnablePooling->IsChecked();
455 0 : bool bLocalDriverChanged = m_pDriverPoolingEnabled == _pCheckBox;
456 :
457 0 : if (m_pEnablePooling == _pCheckBox)
458 : {
459 0 : m_pDriversLabel->Enable(bGloballyEnabled);
460 0 : m_pDriverList->Enable(bGloballyEnabled);
461 0 : m_pDriverLabel->Enable(bGloballyEnabled);
462 0 : m_pDriver->Enable(bGloballyEnabled);
463 0 : m_pDriverPoolingEnabled->Enable(bGloballyEnabled);
464 : }
465 : else
466 : OSL_ENSURE(bLocalDriverChanged, "ConnectionPoolOptionsPage::OnEnabledDisabled: where did this come from?");
467 :
468 0 : m_pTimeoutLabel->Enable(bGloballyEnabled && m_pDriverPoolingEnabled->IsChecked());
469 0 : m_pTimeout->Enable(bGloballyEnabled && m_pDriverPoolingEnabled->IsChecked());
470 :
471 0 : if (bLocalDriverChanged)
472 : {
473 : // update the list
474 0 : m_pDriverList->getCurrentRow()->bEnabled = m_pDriverPoolingEnabled->IsChecked();
475 0 : m_pDriverList->updateCurrentRow();
476 : }
477 :
478 0 : return 0L;
479 : }
480 :
481 0 : } // namespace offapp
482 :
483 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|