Branch libreoffice-5-0-4
[LibreOffice.git] / include / svtools / hyperlabel.hxx
blob2ee42485b7df070f53c529df48424ed9122f4b0f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_SVTOOLS_HYPERLABEL_HXX
20 #define INCLUDED_SVTOOLS_HYPERLABEL_HXX
22 #include <vcl/event.hxx>
25 #include <vcl/fixed.hxx>
27 #define LABELBASEMAPHEIGHT 8
31 namespace svt
35 class HyperLabelImpl;
37 class HyperLabel : public FixedText
39 protected:
40 HyperLabelImpl* m_pImpl;
41 Link<> maClickHdl;
43 virtual void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE;
44 virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
45 virtual void GetFocus() SAL_OVERRIDE;
46 virtual void LoseFocus() SAL_OVERRIDE;
48 void DeactivateHyperMode(vcl::Font aFont, const Color aColor);
49 void ActivateHyperMode(vcl::Font aFont, const Color aColor);
51 protected:
52 void implInit();
54 public:
55 HyperLabel( vcl::Window* _pParent, WinBits _nWinStyle = 0 );
56 virtual ~HyperLabel( );
57 virtual void dispose() SAL_OVERRIDE;
59 virtual void DataChanged( const DataChangedEvent& rDCEvt ) SAL_OVERRIDE;
61 void SetID( sal_Int16 _ID );
62 sal_Int16 GetID() const;
64 void SetIndex( sal_Int32 _Index );
65 sal_Int32 GetIndex() const;
67 void SetLabel( const OUString& _rText );
69 void ToggleBackgroundColor( const Color& _rGBColor );
70 void SetInteractive( bool _bInteractive );
72 void SetClickHdl( const Link<>& rLink ) { maClickHdl = rLink; }
73 const Link<>& GetClickHdl() const { return maClickHdl; }
75 Size CalcMinimumSize( long nMaxWidth = 0 ) const;
77 private:
79 DECL_LINK(ImplClickHdl, HyperLabel*);
81 private:
82 using FixedText::CalcMinimumSize;
86 #endif
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */