/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
/************************************************************************* |* |* Constructor / Destructor |*
|************************************************************************/
SvxHyperlinkInternetTp::SvxHyperlinkInternetTp(weld::Container* pParent,
SvxHpLinkDlg* pDlg, const SfxItemSet* pItemSet)
: SvxHyperlinkTabPageBase(pParent, pDlg, u"cui/ui/hyperlinkinternetpage.ui"_ustr, u"HyperlinkInternetPage"_ustr,
pItemSet)
, m_bMarkWndOpen(false)
, m_xCbbTarget(new SvxHyperURLBox(xBuilder->weld_combo_box(u"target"_ustr)))
, m_xFtTarget(xBuilder->weld_label(u"target_label"_ustr))
{ // gtk_size_group_set_ignore_hidden, "Measuring the size of hidden widgets // ... they will report a size of 0 nowadays, and thus, their size will // not affect the other size group members", which is unfortunate. So here // before we hide the labels, take the size group width and set it as // explicit preferred size on a label that won't be hidden auto nLabelWidth = m_xFtTarget->get_preferred_size().Width();
m_xFtTarget->set_size_request(nLabelWidth, -1);
// set URL-field // Show the scheme, #72740 if ( aURL.GetProtocol() != INetProtocol::NotValid )
m_xCbbTarget->set_entry_text( aURL.GetMainURL( INetURLObject::DecodeMechanism::Unambiguous ) ); else
m_xCbbTarget->set_entry_text(rStrURL);
SetScheme(aStrScheme);
}
/************************************************************************* |* |* retrieve and prepare data from dialog-fields |*
|************************************************************************/
if ( aURL.GetProtocol() != INetProtocol::NotValid ) return aURL.GetMainURL( INetURLObject::DecodeMechanism::ToIUri ); else//#105788# always create a URL even if it is not valid return aStrURL;
}
/************************************************************************* |* |* static method to create Tabpage |*
|************************************************************************/
/************************************************************************* |* |* If target-field was modify, to browse the new doc after timeout |*
|************************************************************************/
IMPL_LINK_NOARG(SvxHyperlinkInternetTp, TimeoutHdl_Impl, Timer *, void)
{
RefreshMarkWindow();
}
//update 'link target in document'-window and opening-button if (o3tl::starts_with(rScheme, INET_HTTP_SCHEME) || rScheme.empty())
{ if ( m_bMarkWndOpen )
ShowMarkWnd ();
} else
{ //disable for https and ftp if ( m_bMarkWndOpen )
HideMarkWnd ();
}
}
/************************************************************************* |* |* Remove protocol if it does not fit to the current button selection |*
|************************************************************************/
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.