Line data Source code
1 : /*
2 : * This file is part of the LibreOffice project.
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * This file incorporates work covered by the following license notice:
9 : *
10 : * Licensed to the Apache Software Foundation (ASF) under one or more
11 : * contributor license agreements. See the NOTICE file distributed
12 : * with this work for additional information regarding copyright
13 : * ownership. The ASF licenses this file to you under the Apache
14 : * License, Version 2.0 (the "License"); you may not use this file
15 : * except in compliance with the License. You may obtain a copy of
16 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
17 : */
18 : #include "LineWidthValueSet.hxx"
19 :
20 : #include <i18nlangtag/mslangid.hxx>
21 : #include <vcl/settings.hxx>
22 :
23 : namespace svx { namespace sidebar {
24 :
25 :
26 0 : LineWidthValueSet::LineWidthValueSet (
27 : Window* pParent, const ResId& rResId)
28 : : ValueSet( pParent, rResId ),
29 : pVDev(NULL),
30 : nSelItem(0),
31 0 : bCusEnable(false)
32 : {
33 0 : strUnit = new OUString[9];
34 0 : SetColCount( 1 );
35 0 : SetLineCount( 9);
36 0 : }
37 :
38 :
39 :
40 :
41 0 : LineWidthValueSet::~LineWidthValueSet (void)
42 : {
43 0 : delete pVDev;
44 0 : delete[] strUnit;
45 0 : }
46 :
47 :
48 :
49 :
50 0 : void LineWidthValueSet::SetUnit(OUString* str)
51 : {
52 0 : for(int i = 0; i < 9; i++)
53 : {
54 0 : strUnit[i] = str[i];
55 : }
56 0 : }
57 :
58 :
59 :
60 0 : void LineWidthValueSet::SetSelItem(sal_uInt16 nSel)
61 : {
62 0 : nSelItem = nSel;
63 0 : if(nSel == 0)
64 : {
65 0 : SelectItem(1); // ,false); // 'false' nut supported by AOO
66 0 : SetNoSelection();
67 : }
68 : else
69 : {
70 0 : SelectItem(nSelItem);
71 0 : GrabFocus();
72 : }
73 0 : }
74 :
75 :
76 :
77 :
78 0 : sal_uInt16 LineWidthValueSet::GetSelItem()
79 : {
80 0 : return nSelItem;
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 : Font aOldFont = pDev->GetFont();
116 0 : Color aOldColor = pDev->GetLineColor();
117 0 : Color aOldFillColor = pDev->GetFillColor();
118 :
119 0 : Font aFont(OutputDevice::GetDefaultFont(DEFAULTFONT_UI_SANS, MsLangId::getSystemLanguage(), DEFAULTFONT_FLAGS_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 ], TEXT_DRAW_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 TEXT_DRAW_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 : // eof
|