summaryrefslogtreecommitdiffstats
path: root/svtools/source/control/fixedhyper.cxx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-07-17 14:28:41 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-07-17 14:28:41 +0000
commit0ee0fd4a9ac3db9d5283e9e1217534e2975a13fb (patch)
treea9a439b6a05036845db6d050060433d78cb9fb93 /svtools/source/control/fixedhyper.cxx
parentINTEGRATION: CWS logger2 (1.5.96); FILE MERGED (diff)
downloadcore-0ee0fd4a9ac3db9d5283e9e1217534e2975a13fb.tar.gz
core-0ee0fd4a9ac3db9d5283e9e1217534e2975a13fb.zip
INTEGRATION: CWS logger2 (1.6.96); FILE MERGED
2008/06/30 10:57:02 pb 1.6.96.1: fix: #i90370# new class FixedHyperlinkImage
Diffstat (limited to 'svtools/source/control/fixedhyper.cxx')
-rw-r--r--svtools/source/control/fixedhyper.cxx92
1 files changed, 91 insertions, 1 deletions
diff --git a/svtools/source/control/fixedhyper.cxx b/svtools/source/control/fixedhyper.cxx
index b639ad3158c2..5525333e083c 100644
--- a/svtools/source/control/fixedhyper.cxx
+++ b/svtools/source/control/fixedhyper.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: fixedhyper.cxx,v $
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
* This file is part of OpenOffice.org.
*
@@ -140,6 +140,96 @@ void FixedHyperlink::SetDescription( const String& rNewDescription )
m_nTextLen = GetCtrlTextWidth( GetText() );
}
+// class FixedHyperlinkImage ---------------------------------------------
+
+FixedHyperlinkImage::FixedHyperlinkImage( Window* pParent, const ResId& rResId ) :
+ FixedImage( pParent, rResId )
+{
+ Initialize();
+}
+
+FixedHyperlinkImage::FixedHyperlinkImage( Window* pParent, WinBits nWinStyle ) :
+ FixedImage( pParent, nWinStyle )
+{
+ Initialize();
+}
+
+FixedHyperlinkImage::~FixedHyperlinkImage()
+{
+}
+
+void FixedHyperlinkImage::Initialize()
+{
+ // saves the old pointer
+ m_aOldPointer = GetPointer();
+}
+
+void FixedHyperlinkImage::MouseMove( const MouseEvent& rMEvt )
+{
+ // changes the pointer if the control is enabled and the mouse is over the text.
+ if ( !rMEvt.IsLeaveWindow() && IsEnabled() )
+ SetPointer( POINTER_REFHAND );
+ else
+ SetPointer( m_aOldPointer );
+}
+
+void FixedHyperlinkImage::MouseButtonUp( const MouseEvent& )
+{
+ // calls the link if the control is enabled and the mouse is over the text.
+ if ( IsEnabled() )
+ ImplCallEventListenersAndHandler( VCLEVENT_BUTTON_CLICK, m_aClickHdl, this );
+
+ Size aSize = GetSizePixel();
+ Size aImgSz = GetImage().GetSizePixel();
+ if ( aSize.Width() < aImgSz.Width() )
+ {
+ DBG_ERRORFILE("xxx");
+ }
+}
+
+void FixedHyperlinkImage::RequestHelp( const HelpEvent& rHEvt )
+{
+ if ( IsEnabled() )
+ FixedImage::RequestHelp( rHEvt );
+}
+
+void FixedHyperlinkImage::GetFocus()
+{
+ Paint( Rectangle( Point(), GetSizePixel() ) );
+ ShowFocus( Rectangle( Point( 1, 1 ), Size( GetSizePixel().Width() - 2, GetSizePixel().Height() - 2 ) ) );
+}
+
+void FixedHyperlinkImage::LoseFocus()
+{
+ Paint( Rectangle( Point(), GetSizePixel() ) );
+ HideFocus();
+}
+
+void FixedHyperlinkImage::KeyInput( const KeyEvent& rKEvt )
+{
+ switch ( rKEvt.GetKeyCode().GetCode() )
+ {
+ case KEY_SPACE:
+ case KEY_RETURN:
+ m_aClickHdl.Call( this );
+ break;
+
+ default:
+ FixedImage::KeyInput( rKEvt );
+ }
+}
+
+void FixedHyperlinkImage::SetURL( const String& rNewURL )
+{
+ m_sURL = rNewURL;
+ SetQuickHelpText( m_sURL );
+}
+
+String FixedHyperlinkImage::GetURL() const
+{
+ return m_sURL;
+}
+
//.........................................................................
} // namespace svt
//.........................................................................