LCOV - code coverage report
Current view: top level - libreoffice/solver/unxlngi6.pro/inc/vcl - fixedhyper.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 1 0.0 %
Date: 2012-12-27 Functions: 0 1 0.0 %
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             : #ifndef VCL_FIXEDHYPER_HXX
      21             : #define VCL_FIXEDHYPER_HXX
      22             : 
      23             : #include <vcl/dllapi.h>
      24             : #include <vcl/fixed.hxx>
      25             : 
      26             :     //=====================================================================
      27             :     //= FixedHyperlink
      28             :     //=====================================================================
      29             :     class VCL_DLLPUBLIC FixedHyperlink : public FixedText
      30             :     {
      31             :     private:
      32             :         long                m_nTextLen;
      33             :         Pointer             m_aOldPointer;
      34             :         Link                m_aClickHdl;
      35             :         OUString            m_sURL;
      36             : 
      37             :         /** initializes the font (link color and underline).
      38             : 
      39             :             Called by the Ctors.
      40             :         */
      41             :         void                Initialize();
      42             : 
      43             :     protected:
      44             :         /** overwrites Window::MouseMove().
      45             : 
      46             :             Changes the pointer only over the text.
      47             :         */
      48             :         virtual void        MouseMove( const MouseEvent& rMEvt );
      49             : 
      50             :         /** overwrites Window::MouseButtonUp().
      51             : 
      52             :             Calls the set link if the mouse is over the text.
      53             :         */
      54             :         virtual void        MouseButtonUp( const MouseEvent& rMEvt );
      55             : 
      56             :         /** overwrites Window::RequestHelp().
      57             : 
      58             :             Shows tooltip only if the mouse is over the text.
      59             :         */
      60             :         virtual void        RequestHelp( const HelpEvent& rHEvt );
      61             : 
      62             :     public:
      63             :         /** ctors
      64             : 
      65             :             With ResId or WinBits.
      66             :         */
      67             :         FixedHyperlink( Window* pParent, const ResId& rId );
      68             :         FixedHyperlink( Window* pParent, WinBits nWinStyle = 0 );
      69             : 
      70             :         /** dtor
      71             : 
      72             :         */
      73             :         virtual ~FixedHyperlink();
      74             : 
      75             :         /** overwrites Window::GetFocus().
      76             : 
      77             :             Changes the color of the text and shows a focus rectangle.
      78             :         */
      79             :         virtual void        GetFocus();
      80             : 
      81             :         /** overwrites Window::LoseFocus().
      82             : 
      83             :             Changes the color of the text and hides the focus rectangle.
      84             :         */
      85             :         virtual void        LoseFocus();
      86             : 
      87             :         /** overwrites Window::KeyInput().
      88             : 
      89             :             KEY_RETURN and KEY_SPACE calls the link handler.
      90             :         */
      91             :         virtual void        KeyInput( const KeyEvent& rKEvt );
      92             : 
      93             :         virtual bool        set_property(const OString &rKey, const OString &rValue);
      94             : 
      95             : 
      96             :         /** sets <member>m_aClickHdl</member> with <arg>rLink</arg>.
      97             : 
      98             :             <member>m_aClickHdl</member> is called if the text is clicked.
      99             :         */
     100           0 :         inline void         SetClickHdl( const Link& rLink ) { m_aClickHdl = rLink; }
     101             : 
     102             :         /** returns <member>m_aClickHdl</member>.
     103             : 
     104             :             @return
     105             :                 <member>m_aClickHdl</member>
     106             :         */
     107             :         inline const Link&  GetClickHdl() const { return m_aClickHdl; }
     108             : 
     109             :         // ::FixedHyperbaseLink
     110             : 
     111             :         /** sets the URL of the hyperlink and uses it as tooltip. */
     112             :         void        SetURL(const OUString& rNewURL);
     113             : 
     114             :         /** returns the URL of the hyperlink.
     115             : 
     116             :             @return
     117             :                 <member>m_sURL</member>
     118             :         */
     119             :         OUString    GetURL() const;
     120             : 
     121             :         /** sets new text and recalculates the text length. */
     122             :         virtual void SetText(const String& rNewDescription);
     123             :     };
     124             : 
     125             : #endif
     126             : 
     127             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10