LCOV - code coverage report
Current view: top level - svtools/source/control - hyperlabel.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 98 1.0 %
Date: 2014-11-03 Functions: 2 22 9.1 %
Legend: Lines: hit not hit

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

Generated by: LCOV version 1.10