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 <sfx2/sidebar/ResourceDefinitions.hrc>
21 : #include <sfx2/sidebar/Theme.hxx>
22 : #include <sfx2/sidebar/ControlFactory.hxx>
23 : #include "CellAppearancePropertyPanel.hxx"
24 : #include <CellAppearancePropertyPanel.hrc>
25 : #include "sc.hrc"
26 : #include "scresid.hxx"
27 : #include <sfx2/bindings.hxx>
28 : #include <sfx2/dispatch.hxx>
29 : #include <vcl/fixed.hxx>
30 : #include <svl/eitem.hxx>
31 : #include <editeng/borderline.hxx>
32 : #include <editeng/boxitem.hxx>
33 : #include <editeng/lineitem.hxx>
34 : #include <vcl/svapp.hxx>
35 : #include <vcl/settings.hxx>
36 : #include <boost/bind.hpp>
37 : #include <svx/sidebar/PopupContainer.hxx>
38 : #include "CellLineStyleControl.hxx"
39 : #include "CellLineStylePopup.hxx"
40 : #include "CellBorderUpdater.hxx"
41 : #include "CellBorderStyleControl.hxx"
42 : #include "CellBorderStylePopup.hxx"
43 :
44 : using namespace css;
45 : using namespace css::uno;
46 :
47 : const char UNO_SETBORDERSTYLE[] = ".uno:SetBorderStyle";
48 : const char UNO_LINESTYLE[] = ".uno:LineStyle";
49 :
50 : // namespace open
51 :
52 : namespace sc { namespace sidebar {
53 :
54 0 : svx::sidebar::PopupControl* CellAppearancePropertyPanel::CreateCellLineStylePopupControl(svx::sidebar::PopupContainer* pParent)
55 : {
56 0 : return VclPtr<CellLineStyleControl>::Create(pParent, *this);
57 : }
58 :
59 0 : void CellAppearancePropertyPanel::EndCellLineStylePopupMode()
60 : {
61 0 : if(mpCellLineStylePopup.get())
62 : {
63 0 : mpCellLineStylePopup->Hide();
64 : }
65 0 : }
66 :
67 0 : svx::sidebar::PopupControl* CellAppearancePropertyPanel::CreateCellBorderStylePopupControl(svx::sidebar::PopupContainer* pParent)
68 : {
69 0 : return VclPtr<CellBorderStyleControl>::Create(pParent, *this);
70 : }
71 :
72 0 : void CellAppearancePropertyPanel::EndCellBorderStylePopupMode()
73 : {
74 0 : if(mpCellBorderStylePopup.get())
75 : {
76 0 : mpCellBorderStylePopup->Hide();
77 : }
78 0 : }
79 :
80 176 : CellAppearancePropertyPanel::CellAppearancePropertyPanel(
81 : vcl::Window* pParent,
82 : const css::uno::Reference<css::frame::XFrame>& rxFrame,
83 : SfxBindings* pBindings)
84 : : PanelLayout(pParent, "CellAppearancePropertyPanel", "modules/scalc/ui/sidebarcellappearance.ui", rxFrame),
85 :
86 : maLineStyleControl(SID_FRAME_LINESTYLE, *pBindings, *this),
87 : maBorderOuterControl(SID_ATTR_BORDER_OUTER, *pBindings, *this),
88 : maBorderInnerControl(SID_ATTR_BORDER_INNER, *pBindings, *this),
89 : maGridShowControl(FID_TAB_TOGGLE_GRID, *pBindings, *this),
90 : maBorderTLBRControl(SID_ATTR_BORDER_DIAG_TLBR, *pBindings, *this),
91 : maBorderBLTRControl(SID_ATTR_BORDER_DIAG_BLTR, *pBindings, *this),
92 :
93 : maIMGCellBorder(ScResId(IMG_CELL_BORDER)),
94 : maIMGLineStyle1(ScResId(IMG_LINE_STYLE1)),
95 : maIMGLineStyle2(ScResId(IMG_LINE_STYLE2)),
96 : maIMGLineStyle3(ScResId(IMG_LINE_STYLE3)),
97 : maIMGLineStyle4(ScResId(IMG_LINE_STYLE4)),
98 : maIMGLineStyle5(ScResId(IMG_LINE_STYLE5)),
99 : maIMGLineStyle6(ScResId(IMG_LINE_STYLE6)),
100 : maIMGLineStyle7(ScResId(IMG_LINE_STYLE7)),
101 : maIMGLineStyle8(ScResId(IMG_LINE_STYLE8)),
102 : maIMGLineStyle9(ScResId(IMG_LINE_STYLE9)),
103 :
104 : mnIn(0),
105 : mnOut(0),
106 : mnDis(0),
107 : mnTLBRIn(0),
108 : mnTLBROut(0),
109 : mnTLBRDis(0),
110 : mnBLTRIn(0),
111 : mnBLTROut(0),
112 : mnBLTRDis(0),
113 : mbBorderStyleAvailable(true),
114 : mbLeft(false),
115 : mbRight(false),
116 : mbTop(false),
117 : mbBottom(false),
118 : mbVer(false),
119 : mbHor(false),
120 : mbOuterBorder(false),
121 : mbInnerBorder(false),
122 : mbTLBR(false),
123 : mbBLTR(false),
124 :
125 : mpCellLineStylePopup(),
126 : mpCellBorderStylePopup(),
127 :
128 : mxFrame(rxFrame),
129 : maContext(),
130 201 : mpBindings(pBindings)
131 : {
132 151 : get(mpTBCellBorder, "cellbordertype");
133 151 : get(mpTBLineStyle, "borderlinestyle");
134 151 : get(mpTBLineColor, "borderlinecolor");
135 :
136 : mpCellBorderUpdater.reset( new CellBorderUpdater(
137 151 : mpTBCellBorder->GetItemId( UNO_SETBORDERSTYLE ), *mpTBCellBorder) );
138 :
139 151 : Initialize();
140 151 : }
141 :
142 0 : CellAppearancePropertyPanel::~CellAppearancePropertyPanel()
143 : {
144 0 : disposeOnce();
145 0 : }
146 :
147 151 : void CellAppearancePropertyPanel::dispose()
148 : {
149 151 : mpTBCellBorder.clear();
150 151 : mpTBLineStyle.clear();
151 151 : mpTBLineColor.clear();
152 :
153 151 : maLineStyleControl.dispose();
154 151 : maBorderOuterControl.dispose();
155 151 : maBorderInnerControl.dispose();
156 151 : maGridShowControl.dispose();
157 151 : maBorderTLBRControl.dispose();
158 151 : maBorderBLTRControl.dispose();
159 :
160 151 : PanelLayout::dispose();
161 151 : }
162 :
163 151 : void CellAppearancePropertyPanel::Initialize()
164 : {
165 151 : const sal_uInt16 nIdBorderType = mpTBCellBorder->GetItemId( UNO_SETBORDERSTYLE );
166 151 : mpTBCellBorder->SetItemImage( nIdBorderType, maIMGCellBorder );
167 151 : mpTBCellBorder->SetItemBits( nIdBorderType, mpTBCellBorder->GetItemBits( nIdBorderType ) | ToolBoxItemBits::DROPDOWNONLY );
168 151 : Link<ToolBox *, void> aLink = LINK(this, CellAppearancePropertyPanel, TbxCellBorderSelectHdl);
169 151 : mpTBCellBorder->SetDropdownClickHdl ( aLink );
170 151 : mpTBCellBorder->SetSelectHdl ( aLink );
171 :
172 151 : const sal_uInt16 nIdBorderLineStyle = mpTBLineStyle->GetItemId( UNO_LINESTYLE );
173 151 : mpTBLineStyle->SetItemImage( nIdBorderLineStyle, maIMGLineStyle1 );
174 151 : mpTBLineStyle->SetItemBits( nIdBorderLineStyle, mpTBLineStyle->GetItemBits( nIdBorderLineStyle ) | ToolBoxItemBits::DROPDOWNONLY );
175 151 : aLink = LINK(this, CellAppearancePropertyPanel, TbxLineStyleSelectHdl);
176 151 : mpTBLineStyle->SetDropdownClickHdl ( aLink );
177 151 : mpTBLineStyle->SetSelectHdl ( aLink );
178 151 : mpTBLineStyle->Disable();
179 :
180 151 : mpTBLineColor->Disable();
181 :
182 151 : mpTBLineColor->SetAccessibleRelationLabeledBy(mpTBLineColor);
183 151 : mpTBLineStyle->SetAccessibleRelationLabeledBy(mpTBLineStyle);
184 151 : }
185 :
186 0 : IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxCellBorderSelectHdl, ToolBox*, pToolBox, void)
187 : {
188 0 : const OUString aCommand(pToolBox->GetItemCommand(pToolBox->GetCurItemId()));
189 :
190 0 : if(aCommand == UNO_SETBORDERSTYLE)
191 : {
192 : // create popup on demand
193 0 : if(!mpCellBorderStylePopup.get())
194 : {
195 : mpCellBorderStylePopup.reset(
196 : new CellBorderStylePopup(
197 : this,
198 0 : ::boost::bind(&CellAppearancePropertyPanel::CreateCellBorderStylePopupControl, this, _1)));
199 : }
200 :
201 0 : if(mpCellBorderStylePopup.get())
202 : {
203 0 : mpCellBorderStylePopup->Show(*pToolBox);
204 : }
205 0 : }
206 0 : }
207 :
208 0 : IMPL_LINK_TYPED(CellAppearancePropertyPanel, TbxLineStyleSelectHdl, ToolBox*, pToolBox, void)
209 : {
210 0 : const OUString aCommand(pToolBox->GetItemCommand(pToolBox->GetCurItemId()));
211 :
212 0 : if(aCommand == UNO_LINESTYLE)
213 : {
214 : // create popup on demand
215 0 : if(!mpCellLineStylePopup.get())
216 : {
217 : mpCellLineStylePopup.reset(
218 : new CellLineStylePopup(
219 : this,
220 0 : ::boost::bind(&CellAppearancePropertyPanel::CreateCellLineStylePopupControl, this, _1)));
221 : }
222 :
223 0 : if(mpCellLineStylePopup.get())
224 : {
225 0 : mpCellLineStylePopup->SetLineStyleSelect(mnOut, mnIn, mnDis);
226 0 : mpCellLineStylePopup->Show(*pToolBox);
227 : }
228 0 : }
229 0 : }
230 :
231 176 : VclPtr<vcl::Window> CellAppearancePropertyPanel::Create (
232 : vcl::Window* pParent,
233 : const css::uno::Reference<css::frame::XFrame>& rxFrame,
234 : SfxBindings* pBindings)
235 : {
236 176 : if (pParent == NULL)
237 0 : throw lang::IllegalArgumentException("no parent Window given to CellAppearancePropertyPanel::Create", NULL, 0);
238 176 : if ( ! rxFrame.is())
239 0 : throw lang::IllegalArgumentException("no XFrame given to CellAppearancePropertyPanel::Create", NULL, 1);
240 176 : if (pBindings == NULL)
241 0 : throw lang::IllegalArgumentException("no SfxBindings given to CellAppearancePropertyPanel::Create", NULL, 2);
242 :
243 : return VclPtr<CellAppearancePropertyPanel>::Create(
244 176 : pParent, rxFrame, pBindings);
245 : }
246 :
247 0 : void CellAppearancePropertyPanel::DataChanged(
248 : const DataChangedEvent& rEvent)
249 : {
250 : (void)rEvent;
251 0 : }
252 :
253 165 : void CellAppearancePropertyPanel::HandleContextChange(const ::sfx2::sidebar::EnumContext& rContext)
254 : {
255 165 : if (maContext == rContext)
256 : {
257 : // Nothing to do.
258 165 : return;
259 : }
260 :
261 165 : maContext = rContext;
262 : }
263 :
264 378 : void CellAppearancePropertyPanel::NotifyItemUpdate(
265 : sal_uInt16 nSID,
266 : SfxItemState eState,
267 : const SfxPoolItem* pState,
268 : const bool bIsEnabled)
269 : {
270 : (void)bIsEnabled;
271 :
272 378 : switch(nSID)
273 : {
274 : case SID_FRAME_LINESTYLE:
275 90 : if( eState == SfxItemState::DONTCARE )
276 : {
277 0 : mbBorderStyleAvailable = true;
278 0 : mnIn = 0;
279 0 : mnOut = 0;
280 0 : mnDis = 0;
281 0 : SetStyleIcon();
282 0 : break;
283 : }
284 :
285 90 : if(eState >= SfxItemState::DEFAULT)
286 : {
287 85 : const SvxLineItem* pSvxLineItem = dynamic_cast< const SvxLineItem* >(pState);
288 :
289 85 : if(pSvxLineItem)
290 : {
291 85 : const editeng::SvxBorderLine* mbLineItem = pSvxLineItem->GetLine();
292 85 : mnIn = mbLineItem->GetInWidth();
293 85 : mnOut = mbLineItem->GetOutWidth();
294 85 : mnDis = mbLineItem->GetDistance();
295 :
296 85 : if(mnIn == 0 && mnOut == 0 && mnDis == 0)
297 85 : mbBorderStyleAvailable = false;
298 : else
299 0 : mbBorderStyleAvailable = true;
300 :
301 85 : SetStyleIcon();
302 85 : break;
303 : }
304 : }
305 :
306 5 : mbBorderStyleAvailable = false;
307 5 : SetStyleIcon();
308 5 : break;
309 : case SID_ATTR_BORDER_OUTER:
310 36 : if(eState >= SfxItemState::DEFAULT)
311 : {
312 31 : const SvxBoxItem* pBoxItem = dynamic_cast< const SvxBoxItem* >(pState);
313 :
314 31 : if(pBoxItem)
315 : {
316 31 : mbLeft=false, mbRight=false, mbTop=false, mbBottom=false;
317 :
318 31 : if(pBoxItem->GetLeft())
319 0 : mbLeft = true;
320 :
321 31 : if(pBoxItem->GetRight())
322 0 : mbRight = true;
323 :
324 31 : if(pBoxItem->GetTop())
325 0 : mbTop = true;
326 :
327 31 : if(pBoxItem->GetBottom())
328 0 : mbBottom = true;
329 :
330 31 : if(!AllSettings::GetLayoutRTL())
331 31 : mpCellBorderUpdater->UpdateCellBorder(mbTop, mbBottom, mbLeft, mbRight, maIMGCellBorder, mbVer, mbHor);
332 : else
333 0 : mpCellBorderUpdater->UpdateCellBorder(mbTop, mbBottom, mbRight, mbLeft, maIMGCellBorder, mbVer, mbHor);
334 :
335 31 : if(mbLeft || mbRight || mbTop || mbBottom)
336 0 : mbOuterBorder = true;
337 : else
338 31 : mbOuterBorder = false;
339 :
340 31 : UpdateControlState();
341 : }
342 : }
343 36 : break;
344 : case SID_ATTR_BORDER_INNER:
345 36 : if(eState >= SfxItemState::DEFAULT)
346 : {
347 31 : const SvxBoxInfoItem* pBoxInfoItem = dynamic_cast< const SvxBoxInfoItem* >(pState);
348 :
349 31 : if(pBoxInfoItem)
350 : {
351 31 : bool bLeft(false), bRight(false), bTop(false), bBottom(false);
352 :
353 31 : mbVer = false, mbHor = false;
354 :
355 31 : if(!pBoxInfoItem->IsValid( SvxBoxInfoItemValidFlags::VERT ) || pBoxInfoItem->GetVert())
356 0 : mbVer = true;
357 :
358 31 : if(!pBoxInfoItem->IsValid( SvxBoxInfoItemValidFlags::HORI ) || pBoxInfoItem->GetHori())
359 0 : mbHor = true;
360 :
361 31 : if(!pBoxInfoItem->IsValid( SvxBoxInfoItemValidFlags::LEFT ) || mbLeft)
362 0 : bLeft = true;
363 :
364 31 : if(!pBoxInfoItem->IsValid( SvxBoxInfoItemValidFlags::RIGHT ) || mbRight)
365 0 : bRight = true;
366 :
367 31 : if(!pBoxInfoItem->IsValid( SvxBoxInfoItemValidFlags::TOP ) || mbTop)
368 0 : bTop = true;
369 :
370 31 : if(!pBoxInfoItem->IsValid( SvxBoxInfoItemValidFlags::BOTTOM ) || mbBottom)
371 0 : bBottom = true;
372 :
373 31 : if(!AllSettings::GetLayoutRTL())
374 31 : mpCellBorderUpdater->UpdateCellBorder(bTop, bBottom, bLeft, bRight, maIMGCellBorder, mbVer, mbHor);
375 : else
376 0 : mpCellBorderUpdater->UpdateCellBorder(bTop, bBottom, bRight, bLeft, maIMGCellBorder, mbVer, mbHor);
377 :
378 31 : if(mbVer || mbHor || bLeft || bRight || bTop || bBottom)
379 0 : mbInnerBorder = true;
380 : else
381 31 : mbInnerBorder = false;
382 :
383 31 : UpdateControlState();
384 : }
385 : }
386 36 : break;
387 : case SID_ATTR_BORDER_DIAG_TLBR:
388 90 : if( eState == SfxItemState::DONTCARE )
389 : {
390 0 : mbTLBR = true;
391 0 : mnTLBRIn = mnTLBROut = mnTLBRDis = 0;
392 0 : UpdateControlState();
393 0 : break;
394 : }
395 :
396 90 : if(eState >= SfxItemState::DEFAULT)
397 : {
398 85 : const SvxLineItem* pItem = dynamic_cast< const SvxLineItem* >(pState);
399 :
400 85 : if(pItem)
401 : {
402 85 : const editeng::SvxBorderLine* aLine = pItem->GetLine();
403 :
404 85 : if(!aLine)
405 : {
406 85 : mbTLBR = false;
407 : }
408 : else
409 : {
410 0 : mbTLBR = true;
411 0 : mnTLBRIn = aLine->GetInWidth();
412 0 : mnTLBROut = aLine->GetOutWidth();
413 0 : mnTLBRDis = aLine->GetDistance();
414 :
415 0 : if(mnTLBRIn == 0 && mnTLBROut == 0 && mnTLBRDis == 0)
416 0 : mbTLBR = false;
417 : }
418 :
419 85 : UpdateControlState();
420 85 : break;
421 : }
422 : }
423 :
424 5 : mbTLBR = false;
425 5 : UpdateControlState();
426 5 : break;
427 : case SID_ATTR_BORDER_DIAG_BLTR:
428 90 : if( eState == SfxItemState::DONTCARE )
429 : {
430 0 : mbBLTR = true;
431 0 : mnBLTRIn = mnBLTROut = mnBLTRDis = 0;
432 0 : UpdateControlState();
433 0 : break;
434 : }
435 :
436 90 : if(eState >= SfxItemState::DEFAULT)
437 : {
438 85 : const SvxLineItem* pItem = dynamic_cast< const SvxLineItem* >(pState);
439 :
440 85 : if(pItem)
441 : {
442 85 : const editeng::SvxBorderLine* aLine = pItem->GetLine();
443 :
444 85 : if(!aLine)
445 : {
446 85 : mbBLTR = false;
447 : }
448 : else
449 : {
450 0 : mbBLTR = true;
451 0 : mnBLTRIn = aLine->GetInWidth();
452 0 : mnBLTROut = aLine->GetOutWidth();
453 0 : mnBLTRDis = aLine->GetDistance();
454 :
455 0 : if(mnBLTRIn == 0 && mnBLTROut == 0 && mnBLTRDis == 0)
456 0 : mbBLTR = false;
457 : }
458 :
459 85 : UpdateControlState();
460 : }
461 85 : break;
462 : }
463 :
464 5 : mbBLTR = false;
465 5 : UpdateControlState();
466 5 : break;
467 : }
468 378 : }
469 :
470 90 : void CellAppearancePropertyPanel::SetStyleIcon()
471 : {
472 90 : const sal_uInt16 nIdBorderLineStyle = mpTBLineStyle->GetItemId( UNO_LINESTYLE );
473 :
474 : //FIXME: update for new line border possibilities
475 90 : if(mnOut == DEF_LINE_WIDTH_0 && mnIn == 0 && mnDis == 0) //1
476 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle1);
477 90 : else if(mnOut == DEF_LINE_WIDTH_2 && mnIn == 0 && mnDis == 0) //2
478 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle2);
479 90 : else if(mnOut == DEF_LINE_WIDTH_3 && mnIn == 0 && mnDis == 0) //3
480 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle3);
481 90 : else if(mnOut == DEF_LINE_WIDTH_4 && mnIn == 0 && mnDis == 0) //4
482 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle4);
483 90 : else if(mnOut == DEF_LINE_WIDTH_0 && mnIn == DEF_LINE_WIDTH_0 && mnDis == DEF_LINE_WIDTH_1) //5
484 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle5);
485 90 : else if(mnOut == DEF_LINE_WIDTH_0 && mnIn == DEF_LINE_WIDTH_0 && mnDis == DEF_LINE_WIDTH_2) //6
486 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle6);
487 90 : else if(mnOut == DEF_LINE_WIDTH_1 && mnIn == DEF_LINE_WIDTH_2 && mnDis == DEF_LINE_WIDTH_1) //7
488 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle7);
489 90 : else if(mnOut == DEF_LINE_WIDTH_2 && mnIn == DEF_LINE_WIDTH_0 && mnDis == DEF_LINE_WIDTH_2) //8
490 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle8);
491 90 : else if(mnOut == DEF_LINE_WIDTH_2 && mnIn == DEF_LINE_WIDTH_2 && mnDis == DEF_LINE_WIDTH_2) //9
492 0 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle9);
493 : else
494 90 : mpTBLineStyle->SetItemImage(nIdBorderLineStyle, maIMGLineStyle1);
495 90 : }
496 :
497 242 : void CellAppearancePropertyPanel::UpdateControlState()
498 : {
499 242 : if(mbOuterBorder || mbInnerBorder || mbTLBR || mbBLTR)
500 : {
501 0 : mpTBLineColor->Enable();
502 0 : mpTBLineStyle->Enable();
503 :
504 : //set line style state
505 0 : if( mbBorderStyleAvailable && !mbTLBR && !mbBLTR )
506 : {
507 : }
508 0 : else if( !mbBorderStyleAvailable && mbTLBR && !mbBLTR )
509 : {
510 0 : mnIn = mnTLBRIn;
511 0 : mnOut = mnTLBROut;
512 0 : mnDis = mnTLBRDis;
513 : }
514 0 : else if ( !mbBorderStyleAvailable && !mbTLBR && mbBLTR )
515 : {
516 0 : mnIn = mnBLTRIn;
517 0 : mnOut = mnBLTROut;
518 0 : mnDis = mnBLTRDis;
519 : }
520 0 : else if( !mbBorderStyleAvailable && mbTLBR && mbBLTR)
521 : {
522 0 : if( mnTLBRIn == mnBLTRIn && mnTLBROut == mnBLTROut && mnTLBRDis == mnBLTRDis)
523 : {
524 0 : mnIn = mnTLBRIn;
525 0 : mnOut = mnTLBROut;
526 0 : mnDis = mnTLBRDis;
527 : }
528 : else
529 : {
530 0 : mnIn = 0;
531 0 : mnOut = 0;
532 0 : mnDis = 0;
533 : }
534 : }
535 0 : else if( mbBorderStyleAvailable && mbTLBR && !mbBLTR )
536 : {
537 0 : if( mnTLBRIn != mnIn || mnTLBROut != mnOut || mnTLBRDis != mnDis)
538 : {
539 0 : mnIn = 0;
540 0 : mnOut = 0;
541 0 : mnDis = 0;
542 : }
543 : }
544 0 : else if( mbBorderStyleAvailable && !mbTLBR && mbBLTR )
545 : {
546 0 : if( mnBLTRIn != mnIn || mnBLTROut != mnOut || mnBLTRDis != mnDis )
547 : {
548 0 : mnIn = 0;
549 0 : mnOut = 0;
550 0 : mnDis = 0;
551 : }
552 : }
553 : else
554 : {
555 0 : mnIn = 0;
556 0 : mnOut = 0;
557 0 : mnDis = 0;
558 : }
559 0 : SetStyleIcon();
560 : }
561 : else
562 : {
563 242 : mpTBLineColor->Disable();
564 242 : mpTBLineStyle->Disable();
565 : }
566 242 : }
567 :
568 : // namespace close
569 :
570 156 : }} // end of namespace ::sc::sidebar
571 :
572 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|