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 INCLUDED_VCL_FIXEDHYPER_HXX
21 : #define INCLUDED_VCL_FIXEDHYPER_HXX
22 :
23 : #include <vcl/dllapi.h>
24 : #include <vcl/fixed.hxx>
25 :
26 : class VCL_DLLPUBLIC FixedHyperlink : public FixedText
27 : {
28 : private:
29 : long m_nTextLen;
30 : Pointer m_aOldPointer;
31 : Link m_aClickHdl;
32 : OUString m_sURL;
33 :
34 : /** initializes the font (link color and underline).
35 :
36 : Called by the Ctors.
37 : */
38 : void Initialize();
39 :
40 : /** is position X position hitting text */
41 : SAL_DLLPRIVATE bool ImplIsOverText(Point rPosition);
42 :
43 : protected:
44 : /** overwrites Window::MouseMove().
45 :
46 : Changes the pointer only over the text.
47 : */
48 : virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
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 ) SAL_OVERRIDE;
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 ) SAL_OVERRIDE;
61 :
62 : public:
63 : /** ctors
64 :
65 : With ResId or WinBits.
66 : */
67 : FixedHyperlink( vcl::Window* pParent, WinBits nWinStyle = 0 );
68 :
69 : /** dtor
70 :
71 : */
72 : virtual ~FixedHyperlink();
73 :
74 : /** overwrites Window::GetFocus().
75 :
76 : Changes the color of the text and shows a focus rectangle.
77 : */
78 : virtual void GetFocus() SAL_OVERRIDE;
79 :
80 : /** overwrites Window::LoseFocus().
81 :
82 : Changes the color of the text and hides the focus rectangle.
83 : */
84 : virtual void LoseFocus() SAL_OVERRIDE;
85 :
86 : /** overwrites Window::KeyInput().
87 :
88 : KEY_RETURN and KEY_SPACE calls the link handler.
89 : */
90 : virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
91 :
92 : virtual bool set_property(const OString &rKey, const OString &rValue) SAL_OVERRIDE;
93 :
94 :
95 : /** sets m_aClickHdl with rLink.
96 :
97 : m_aClickHdl is called if the text is clicked.
98 : */
99 0 : inline void SetClickHdl( const Link& rLink ) { m_aClickHdl = rLink; }
100 :
101 : /** returns m_aClickHdl.
102 :
103 : @return
104 : m_aClickHdl
105 : */
106 : inline const Link& GetClickHdl() const { return m_aClickHdl; }
107 :
108 : // ::FixedHyperbaseLink
109 :
110 : /** sets the URL of the hyperlink and uses it as tooltip. */
111 : void SetURL(const OUString& rNewURL);
112 :
113 : /** returns the URL of the hyperlink.
114 :
115 : @return
116 : m_sURL
117 : */
118 0 : const OUString& GetURL() const { return m_sURL;}
119 :
120 : /** sets new text and recalculates the text length. */
121 : virtual void SetText(const OUString& rNewDescription) SAL_OVERRIDE;
122 : };
123 :
124 : #endif
125 :
126 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|