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 <svtools/hyperlabel.hxx>
21 : #include <vcl/bitmap.hxx>
22 : #include <tools/color.hxx>
23 :
24 : #include <vcl/tabpage.hxx>
25 :
26 :
27 : //.........................................................................
28 : namespace svt
29 : {
30 : //.........................................................................
31 :
32 : //=====================================================================
33 : //= FontChanger
34 : //=====================================================================
35 : class FontChanger
36 : {
37 : protected:
38 : OutputDevice* m_pDev;
39 :
40 : public:
41 : FontChanger( OutputDevice* _pDev, const Font& _rNewFont )
42 : :m_pDev( _pDev )
43 : {
44 : m_pDev->Push( PUSH_FONT );
45 : m_pDev->SetFont( _rNewFont );
46 : }
47 :
48 : ~FontChanger()
49 : {
50 : m_pDev->Pop( );
51 : }
52 : };
53 :
54 : class HyperLabelImpl
55 : {
56 : public:
57 : sal_Int16 ID;
58 : sal_Int32 Index;
59 : sal_Bool bInteractive;
60 : Size m_aMinSize;
61 : sal_Bool m_bHyperMode;
62 :
63 : HyperLabelImpl();
64 : };
65 :
66 : //---------------------------------------------------------------------
67 0 : HyperLabelImpl::HyperLabelImpl()
68 : {
69 0 : }
70 :
71 0 : HyperLabel::HyperLabel( Window* _pParent, WinBits _nWinStyle )
72 : :FixedText( _pParent, _nWinStyle )
73 0 : ,m_pImpl( new HyperLabelImpl )
74 : {
75 0 : implInit();
76 0 : }
77 :
78 0 : Size HyperLabel::CalcMinimumSize( long nMaxWidth ) const
79 : {
80 0 : m_pImpl->m_aMinSize = FixedText::CalcMinimumSize( nMaxWidth );
81 : // the MinimumSize is used to size the FocusRectangle
82 : // and for the MouseMove method
83 0 : m_pImpl->m_aMinSize.Height() += 2;
84 0 : m_pImpl->m_aMinSize.Width() += 1;
85 0 : return m_pImpl->m_aMinSize;
86 : }
87 :
88 0 : void HyperLabel::implInit()
89 : {
90 0 : ToggleBackgroundColor( COL_TRANSPARENT );
91 :
92 0 : WinBits nWinStyle = GetStyle();
93 0 : nWinStyle |= WB_EXTRAOFFSET;
94 0 : SetStyle( nWinStyle );
95 :
96 0 : Show();
97 0 : }
98 :
99 0 : void HyperLabel::ToggleBackgroundColor( const Color& _rGBColor )
100 : {
101 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
102 0 : SetControlBackground( _rGBColor );
103 0 : if (_rGBColor == COL_TRANSPARENT)
104 0 : SetTextColor( rStyleSettings.GetFieldTextColor( ) );
105 : else
106 0 : SetTextColor( rStyleSettings.GetHighlightTextColor( ) );
107 0 : }
108 :
109 :
110 0 : void HyperLabel::MouseMove( const MouseEvent& rMEvt )
111 : {
112 0 : Font aFont = GetControlFont( );
113 0 : const Color aColor = GetTextColor();
114 :
115 0 : if (rMEvt.IsLeaveWindow())
116 : {
117 0 : DeactivateHyperMode(aFont, aColor);
118 : }
119 : else
120 : {
121 0 : Point aPoint = GetPointerPosPixel();
122 0 : if (aPoint.X() < m_pImpl->m_aMinSize.Width())
123 : {
124 0 : if ( IsEnabled() && (m_pImpl->bInteractive) )
125 : {
126 0 : ActivateHyperMode( aFont, aColor);
127 0 : return;
128 : }
129 : }
130 0 : DeactivateHyperMode(aFont, aColor);
131 0 : }
132 : }
133 :
134 0 : void HyperLabel::ActivateHyperMode(Font aFont, const Color aColor)
135 : {
136 0 : aFont.SetUnderline(UNDERLINE_SINGLE);
137 0 : m_pImpl->m_bHyperMode = sal_True;
138 0 : SetPointer( POINTER_REFHAND );
139 0 : SetControlFont( aFont);
140 0 : SetTextColor( aColor);
141 :
142 0 : }
143 :
144 0 : void HyperLabel::DeactivateHyperMode(Font aFont, const Color aColor)
145 : {
146 0 : m_pImpl->m_bHyperMode = sal_False;
147 0 : aFont.SetUnderline(UNDERLINE_NONE);
148 0 : SetPointer( POINTER_ARROW );
149 0 : SetControlFont( aFont);
150 0 : SetTextColor( aColor);
151 0 : }
152 :
153 0 : void HyperLabel::MouseButtonDown( const MouseEvent& )
154 : {
155 0 : if ( m_pImpl->m_bHyperMode && m_pImpl->bInteractive )
156 : {
157 0 : maClickHdl.Call( this );
158 : }
159 0 : }
160 :
161 0 : void HyperLabel::GetFocus()
162 : {
163 0 : if ( IsEnabled() && m_pImpl->bInteractive )
164 : {
165 0 : Point aPoint(0,0);
166 0 : Rectangle rRect(aPoint, Size( m_pImpl->m_aMinSize.Width(), GetSizePixel().Height() ) );
167 0 : ShowFocus( rRect );
168 : }
169 0 : }
170 :
171 0 : void HyperLabel::LoseFocus()
172 : {
173 0 : HideFocus();
174 0 : }
175 :
176 0 : HyperLabel::~HyperLabel( )
177 : {
178 0 : delete m_pImpl;
179 0 : }
180 :
181 0 : void HyperLabel::SetInteractive( sal_Bool _bInteractive )
182 : {
183 0 : m_pImpl->bInteractive = ( _bInteractive && IsEnabled() );
184 0 : }
185 :
186 0 : sal_Int16 HyperLabel::GetID() const
187 : {
188 0 : return m_pImpl->ID;
189 : }
190 :
191 0 : sal_Int32 HyperLabel::GetIndex() const
192 : {
193 0 : return m_pImpl->Index;
194 : }
195 :
196 0 : void HyperLabel::SetID( sal_Int16 _ID )
197 : {
198 0 : m_pImpl->ID = _ID;
199 0 : }
200 :
201 0 : void HyperLabel::SetIndex( sal_Int32 _Index )
202 : {
203 0 : m_pImpl->Index = _Index;
204 0 : }
205 :
206 0 : void HyperLabel::SetLabel( const ::rtl::OUString& _rText )
207 : {
208 0 : SetText(_rText);
209 0 : }
210 :
211 :
212 : //------------------------------------------------------------------------------
213 0 : void HyperLabel::DataChanged( const DataChangedEvent& rDCEvt )
214 : {
215 0 : const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
216 0 : FixedText::DataChanged( rDCEvt );
217 0 : if ((( rDCEvt.GetType() == DATACHANGED_SETTINGS ) ||
218 0 : ( rDCEvt.GetType() == DATACHANGED_DISPLAY )) &&
219 0 : ( rDCEvt.GetFlags() & SETTINGS_STYLE ))
220 : {
221 0 : const Color& rGBColor = GetControlBackground();
222 0 : if (rGBColor == COL_TRANSPARENT)
223 0 : SetTextColor( rStyleSettings.GetFieldTextColor( ) );
224 : else
225 : {
226 0 : SetControlBackground(rStyleSettings.GetHighlightColor());
227 0 : SetTextColor( rStyleSettings.GetHighlightTextColor( ) );
228 : }
229 0 : Invalidate();
230 : }
231 0 : }
232 :
233 : //.........................................................................
234 : } // namespace svt
235 : //.........................................................................
236 :
237 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|