1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_SVX_HLNKITEM_HXX
20 #define INCLUDED_SVX_HLNKITEM_HXX
22 #include <rtl/ustring.hxx>
23 #include <svl/poolitem.hxx>
24 #include <sfx2/sfxsids.hrc>
25 #include <svl/macitem.hxx>
26 #include <svx/svxdllapi.h>
27 #include <o3tl/typed_flags_set.hxx>
30 enum class HyperDialogEvent
{
32 MouseOverObject
= 0x0001,
33 MouseClickObject
= 0x0002,
34 MouseOutObject
= 0x0004,
37 template<> struct typed_flags
<HyperDialogEvent
> : is_typed_flags
<HyperDialogEvent
, 0x07> {};
40 enum SvxLinkInsertMode
45 HLINK_HTMLMODE
= 0x0080
48 class SVX_DLLPUBLIC SvxHyperlinkItem final
: public SfxPoolItem
53 SvxLinkInsertMode eType
;
54 OUString sReplacementText
;
57 std::unique_ptr
<SvxMacroTableDtor
> pMacroTable
;
59 HyperDialogEvent nMacroEvents
;
62 static SfxPoolItem
* CreateDefault();
64 SvxHyperlinkItem( TypedWhichId
<SvxHyperlinkItem
> _nWhich
= SID_HYPERLINK_GETLINK
):
65 SfxPoolItem(_nWhich
, SfxItemType::SvxHyperlinkItemType
)
66 { eType
= HLINK_DEFAULT
; nMacroEvents
=HyperDialogEvent::NONE
; };
67 SvxHyperlinkItem( const SvxHyperlinkItem
& rHyperlinkItem
);
68 SvxHyperlinkItem( TypedWhichId
<SvxHyperlinkItem
> nWhich
, OUString aName
, OUString aURL
,
69 OUString aTarget
, OUString aIntName
,
70 SvxLinkInsertMode eTyp
,
71 HyperDialogEvent nEvents
,
72 SvxMacroTableDtor
const *pMacroTbl
,
73 OUString aReplacementText
= OUString());
75 virtual bool operator==( const SfxPoolItem
& ) const override
;
76 virtual SvxHyperlinkItem
* Clone( SfxItemPool
*pPool
= nullptr ) const override
;
77 virtual bool QueryValue( css::uno::Any
& rVal
, sal_uInt8 nMemberId
= 0 ) const override
;
78 virtual bool PutValue( const css::uno::Any
& rVal
, sal_uInt8 nMemberId
) override
;
80 const OUString
& GetName() const { return sName
; }
81 void SetName(const OUString
& rName
) { sName
= rName
; }
83 const OUString
& GetURL() const { return sURL
; }
84 void SetURL(const OUString
& rURL
) { sURL
= rURL
; }
86 const OUString
& GetIntName () const { return sIntName
; }
87 void SetIntName(const OUString
& rIntName
) { sIntName
= rIntName
; }
89 const OUString
& GetTargetFrame() const { return sTarget
; }
90 void SetTargetFrame(const OUString
& rTarget
) { sTarget
= rTarget
; }
92 SvxLinkInsertMode
GetInsertMode() const { return eType
; }
93 void SetInsertMode( SvxLinkInsertMode eNew
) { eType
= eNew
; }
95 void SetMacro( HyperDialogEvent nEvent
, const SvxMacro
& rMacro
);
97 void SetMacroTable( const SvxMacroTableDtor
& rTbl
);
98 const SvxMacroTableDtor
* GetMacroTable() const { return pMacroTable
.get(); }
100 void SetMacroEvents (const HyperDialogEvent nEvents
) { nMacroEvents
= nEvents
; }
101 HyperDialogEvent
GetMacroEvents() const { return nMacroEvents
; }
103 const OUString
& GetReplacementText() const { return sReplacementText
; }
104 void SetReplacementText(const OUString
& rReplacementText
) { sReplacementText
= rReplacementText
; }
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */