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_CUI_SOURCE_INC_HLTPBASE_HXX
20 #define INCLUDED_CUI_SOURCE_INC_HLTPBASE_HXX
22 #include <sfx2/app.hxx>
23 #include <sfx2/tabdlg.hxx>
24 #include <vcl/group.hxx>
25 #include <vcl/button.hxx>
26 #include <vcl/fixed.hxx>
27 #include <vcl/combobox.hxx>
28 #include <vcl/edit.hxx>
29 #include <vcl/lstbox.hxx>
30 #include <svl/stritem.hxx>
31 #include <svl/eitem.hxx>
32 #include <svtools/transfer.hxx>
33 #include <sfx2/dispatch.hxx>
34 #include <vcl/msgbox.hxx>
35 #include <sfx2/fcontnr.hxx>
36 #include <svtools/inettbc.hxx>
37 #include <vcl/timer.hxx>
39 #include <dialmgr.hxx>
40 #include <sfx2/docfile.hxx>
42 #include <com/sun/star/frame/XFrame.hpp>
44 #include <svx/hlnkitem.hxx>
46 #include "hlmarkwn.hxx"
47 #include "iconcdlg.hxx"
49 /// ComboBox-Control for URL's with History and Autocompletion
50 class SvxHyperURLBox
: public SvtURLBox
, public DropTargetHelper
53 virtual sal_Int8
AcceptDrop( const AcceptDropEvent
& rEvt
) SAL_OVERRIDE
;
54 virtual sal_Int8
ExecuteDrop( const ExecuteDropEvent
& rEvt
) SAL_OVERRIDE
;
56 virtual bool Notify( NotifyEvent
& rNEvt
) SAL_OVERRIDE
;
57 virtual void Select() SAL_OVERRIDE
;
58 virtual void Modify() SAL_OVERRIDE
;
59 virtual bool PreNotify( NotifyEvent
& rNEvt
) SAL_OVERRIDE
;
62 SvxHyperURLBox( vcl::Window
* pParent
, INetProtocol eSmart
= INetProtocol::File
);
66 /// Tabpage : Basisclass
67 class SvxHyperlinkTabPageBase
: public IconChoicePage
70 VclPtr
<ComboBox
> mpCbbFrame
;
71 VclPtr
<ListBox
> mpLbForm
;
72 VclPtr
<Edit
> mpEdIndication
;
73 VclPtr
<Edit
> mpEdText
;
74 VclPtr
<PushButton
> mpBtScript
;
76 bool mbIsCloseDisabled
;
78 ::com::sun::star::uno::Reference
< ::com::sun::star::frame::XFrame
>
82 VclPtr
<vcl::Window
> mpDialog
;
84 bool mbStdControlsInit
;
86 OUString maStrInitURL
;
90 VclPtr
<SvxHlinkDlgMarkWnd
> mpMarkWnd
;
92 void InitStdControls ();
93 void FillStandardDlgFields ( const SvxHyperlinkItem
* pHyperlinkItem
);
94 virtual void FillDlgFields(const OUString
& rStrURL
) = 0;
95 virtual void GetCurentItemData ( OUString
& rStrURL
, OUString
& aStrName
,
96 OUString
& aStrIntName
, OUString
& aStrFrame
,
97 SvxLinkInsertMode
& eMode
) = 0;
98 OUString
CreateUiNameFromURL( const OUString
& aStrURL
);
100 void GetDataFromCommonFields( OUString
& aStrName
,
101 OUString
& aStrIntName
, OUString
& aStrFrame
,
102 SvxLinkInsertMode
& eMode
);
104 DECL_LINK (ClickScriptHdl_Impl
, void * ); ///< Button : Script
108 static OUString
GetSchemeFromURL( const OUString
& rStrURL
);
110 inline void DisableClose( bool _bDisable
) { mbIsCloseDisabled
= _bDisable
; }
113 SvxHyperlinkTabPageBase (
114 vcl::Window
*pParent
,
115 IconChoiceDialog
* pDlg
,
117 const OUString
& rUIXMLDescription
,
118 const SfxItemSet
& rItemSet
120 virtual ~SvxHyperlinkTabPageBase ();
121 virtual void dispose() SAL_OVERRIDE
;
123 void SetDocumentFrame(
124 const ::com::sun::star::uno::Reference
< ::com::sun::star::frame::XFrame
>& rxDocumentFrame
)
126 mxDocumentFrame
= rxDocumentFrame
;
129 virtual bool AskApply ();
130 virtual void DoApply ();
131 virtual void SetInitFocus();
132 virtual void SetMarkStr ( const OUString
& aStrMark
);
133 virtual void Reset( const SfxItemSet
& ) SAL_OVERRIDE
;
134 virtual bool FillItemSet( SfxItemSet
* ) SAL_OVERRIDE
;
135 virtual void ActivatePage( const SfxItemSet
& rItemSet
) SAL_OVERRIDE
;
136 virtual int DeactivatePage( SfxItemSet
* pSet
= 0 ) SAL_OVERRIDE
;
138 bool IsMarkWndVisible () { return ((vcl::Window
*)mpMarkWnd
)->IsVisible(); }
139 Size
GetSizeExtraWnd () { return ( mpMarkWnd
->GetSizePixel() ); }
140 bool MoveToExtraWnd ( Point aNewPos
, bool bDisConnectDlg
= false );
142 virtual void ActivatePage() SAL_OVERRIDE
;
143 virtual void DeactivatePage() SAL_OVERRIDE
;
144 virtual bool QueryClose() SAL_OVERRIDE
;
147 virtual bool ShouldOpenMarkWnd();
148 virtual void SetMarkWndShouldOpen(bool bOpen
);
151 void HideMarkWnd () { ( ( vcl::Window
* ) mpMarkWnd
)->Hide(); }
152 void InvalidateMarkWnd () { ( ( vcl::Window
* ) mpMarkWnd
)->Invalidate(); }
154 SfxDispatcher
* GetDispatcher() const;
156 sal_uInt16
GetMacroEvents();
157 SvxMacroTableDtor
* GetMacroTable();
159 bool IsHTMLDoc() const;
162 #endif // INCLUDED_CUI_SOURCE_INC_HLTPBASE_HXX
164 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */