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 : #include "LineWidthValueSet.hxx"
20 :
21 : #include <i18nlangtag/mslangid.hxx>
22 : #include <vcl/settings.hxx>
23 :
24 : namespace svx { namespace sidebar {
25 :
26 :
27 0 : LineWidthValueSet::LineWidthValueSet (
28 : vcl::Window* pParent, const ResId& rResId)
29 : : ValueSet( pParent, rResId ),
30 : pVDev(NULL),
31 : nSelItem(0),
32 0 : bCusEnable(false)
33 : {
34 0 : strUnit = new OUString[9];
35 0 : SetColCount( 1 );
36 0 : SetLineCount( 9);
37 0 : }
38 :
39 :
40 :
41 :
42 0 : LineWidthValueSet::~LineWidthValueSet()
43 : {
44 0 : disposeOnce();
45 0 : }
46 :
47 0 : void LineWidthValueSet::dispose()
48 : {
49 0 : pVDev.disposeAndClear();
50 0 : delete[] strUnit;
51 0 : ValueSet::dispose();
52 0 : }
53 :
54 0 : void LineWidthValueSet::SetUnit(OUString* str)
55 : {
56 0 : for(int i = 0; i < 9; i++)
57 : {
58 0 : strUnit[i] = str[i];
59 : }
60 0 : }
61 :
62 :
63 :
64 0 : void LineWidthValueSet::SetSelItem(sal_uInt16 nSel)
65 : {
66 0 : nSelItem = nSel;
67 0 : if(nSel == 0)
68 : {
69 0 : SelectItem(1); // ,false); // 'false' nut supported by AOO
70 0 : SetNoSelection();
71 : }
72 : else
73 : {
74 0 : SelectItem(nSelItem);
75 0 : GrabFocus();
76 : }
77 0 : }
78 :
79 :
80 :
81 :
82 :
83 :
84 :
85 :
86 0 : void LineWidthValueSet::SetImage(Image img)
87 : {
88 0 : imgCus = img;
89 0 : }
90 :
91 :
92 :
93 :
94 0 : void LineWidthValueSet::SetCusEnable(bool bEnable)
95 : {
96 0 : bCusEnable = bEnable;
97 0 : }
98 :
99 :
100 :
101 :
102 0 : void LineWidthValueSet::UserDraw( const UserDrawEvent& rUDEvt )
103 : {
104 0 : Rectangle aRect = rUDEvt.GetRect();
105 0 : OutputDevice* pDev = rUDEvt.GetDevice();
106 0 : sal_uInt16 nItemId = rUDEvt.GetItemId();
107 :
108 0 : long nRectHeight = aRect.GetHeight();
109 0 : long nRectWidth = aRect.GetWidth();
110 0 : Point aBLPos = aRect.TopLeft();
111 :
112 : //const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
113 : //Color aBackColor(0,0,200);
114 : //const Color aTextColor = rStyleSettings.GetFieldTextColor();
115 0 : vcl::Font aOldFont = pDev->GetFont();
116 0 : Color aOldColor = pDev->GetLineColor();
117 0 : Color aOldFillColor = pDev->GetFillColor();
118 :
119 0 : vcl::Font aFont(OutputDevice::GetDefaultFont(DefaultFontType::UI_SANS, MsLangId::getSystemLanguage(), GetDefaultFontFlags::OnlyOne));
120 0 : Size aSize = aFont.GetSize();
121 0 : aSize.Height() = nRectHeight*3/5;
122 0 : aFont.SetSize( aSize );
123 :
124 0 : Point aLineStart(aBLPos.X() + 5, aBLPos.Y() + ( nRectHeight - nItemId )/2);
125 0 : Point aLineEnd(aBLPos.X() + nRectWidth * 7 / 9 - 10, aBLPos.Y() + ( nRectHeight - nItemId )/2);
126 0 : if(nItemId == 9)
127 : {
128 0 : Point aImgStart(aBLPos.X() + 5, aBLPos.Y() + ( nRectHeight - 23 ) / 2);
129 0 : pDev->DrawImage(aImgStart, imgCus);
130 : // Point aStart(aImgStart.X() + 14 + 20 , aBLPos.Y() + nRectHeight/6);
131 0 : Rectangle aStrRect = aRect;
132 0 : aStrRect.Top() += nRectHeight/6;
133 0 : aStrRect.Bottom() -= nRectHeight/6;
134 0 : aStrRect.Left() += imgCus.GetSizePixel().Width() + 20;
135 0 : if(bCusEnable)
136 0 : aFont.SetColor(GetSettings().GetStyleSettings().GetFieldTextColor());
137 : else
138 0 : aFont.SetColor(GetSettings().GetStyleSettings().GetDisableColor());
139 :
140 0 : pDev->SetFont(aFont);
141 0 : pDev->DrawText(aStrRect, strUnit[ nItemId - 1 ], DrawTextFlags::EndEllipsis);
142 : }
143 : else
144 : {
145 0 : if( nSelItem == nItemId )
146 : {
147 0 : Color aBackColor(50,107,197);
148 0 : Rectangle aBackRect = aRect;
149 0 : aBackRect.Top() += 3;
150 0 : aBackRect.Bottom() -= 2;
151 0 : pDev->SetFillColor(aBackColor);
152 0 : pDev->DrawRect(aBackRect);
153 : }
154 : else
155 : {
156 0 : pDev->SetFillColor( COL_TRANSPARENT );
157 0 : pDev->DrawRect(aRect);
158 : }
159 :
160 : //draw text
161 0 : if(nSelItem == nItemId )
162 0 : aFont.SetColor(COL_WHITE);
163 : else
164 0 : aFont.SetColor(GetSettings().GetStyleSettings().GetFieldTextColor());
165 0 : pDev->SetFont(aFont);
166 0 : Point aStart(aBLPos.X() + nRectWidth * 7 / 9 , aBLPos.Y() + nRectHeight/6);
167 0 : pDev->DrawText(aStart, strUnit[ nItemId - 1 ]); //can't set DrawTextFlags::EndEllipsis here ,or the text will disappear
168 :
169 : //draw line
170 0 : if( nSelItem == nItemId )
171 0 : pDev->SetLineColor(COL_WHITE);
172 : else
173 0 : pDev->SetLineColor(GetSettings().GetStyleSettings().GetFieldTextColor());
174 :
175 0 : for(sal_uInt16 i = 1; i <= nItemId; i++)
176 : {
177 0 : pDev->DrawLine(aLineStart,aLineEnd );
178 0 : aLineStart.setY(aLineStart.getY() + 1);
179 0 : aLineEnd.setY (aLineEnd.getY() + 1);
180 : }
181 : }
182 :
183 0 : Invalidate( aRect );
184 0 : pDev->SetLineColor(aOldColor);
185 0 : pDev->SetFillColor(aOldFillColor);
186 0 : pDev->SetFont(aOldFont);
187 0 : }
188 :
189 :
190 :
191 : } } // end of namespace svx::sidebar
192 :
193 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|