summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-08-31 12:20:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-08-31 15:07:57 +0200
commit8d3f4245555f5fbaba8be7b318f80dd79532099d (patch)
tree39c95e50b57601e3f4e82bf189882386c320a0e4 /svtools
parent0e944350e92810adfcf080ae1d98ad7bc4bd578d (diff)
drop newly unused OFileURLControl
Change-Id: I8a043df9a90f363f0b6a1c470ac74c02c52db9a9 Reviewed-on: https://gerrit.libreoffice.org/78342 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/Library_svt.mk1
-rw-r--r--svtools/source/control/urlcontrol.cxx78
2 files changed, 0 insertions, 79 deletions
diff --git a/svtools/Library_svt.mk b/svtools/Library_svt.mk
index 83815d191487..ecffada72bb7 100644
--- a/svtools/Library_svt.mk
+++ b/svtools/Library_svt.mk
@@ -114,7 +114,6 @@ $(eval $(call gb_Library_add_exception_objects,svt,\
svtools/source/control/tabbar \
svtools/source/control/toolbarmenu \
svtools/source/control/toolbarmenuacc \
- svtools/source/control/urlcontrol \
svtools/source/control/valueacc \
svtools/source/control/valueset \
svtools/source/dialogs/addresstemplate \
diff --git a/svtools/source/control/urlcontrol.cxx b/svtools/source/control/urlcontrol.cxx
deleted file mode 100644
index dcf22fbdab78..000000000000
--- a/svtools/source/control/urlcontrol.cxx
+++ /dev/null
@@ -1,78 +0,0 @@
-/* -*- 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 .
- */
-
-#include <svl/filenotation.hxx>
-#include <svtools/urlcontrol.hxx>
-#include <vcl/layout.hxx>
-#include <vcl/builderfactory.hxx>
-
-namespace svt
-{
- //= OFileURLControl
- OFileURLControl::OFileURLControl(vcl::Window* _pParent, WinBits nStyle)
- : SvtURLBox(_pParent, nStyle, INetProtocol::File)
- {
- DisableHistory();
- }
-
- extern "C" SAL_DLLPUBLIC_EXPORT void makeOFileURLControl(VclPtr<vcl::Window> & rRet, VclPtr<vcl::Window> & pParent, VclBuilder::stringmap &)
- {
- WinBits nWinBits = WB_LEFT|WB_VCENTER|WB_3DLOOK|WB_TABSTOP|
- WB_DROPDOWN|WB_AUTOHSCROLL;
- VclPtrInstance<OFileURLControl> pListBox(pParent, nWinBits);
- pListBox->EnableAutoSize(true);
- rRet = pListBox;
- }
-
- bool OFileURLControl::PreNotify( NotifyEvent& _rNEvt )
- {
- if (GetSubEdit() == _rNEvt.GetWindow())
- if (MouseNotifyEvent::KEYINPUT == _rNEvt.GetType())
- if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode())
- if (IsInDropDown())
- m_sPreservedText = GetURL();
-
- return SvtURLBox::PreNotify(_rNEvt);
- }
-
- bool OFileURLControl::EventNotify( NotifyEvent& _rNEvt )
- {
- if (GetSubEdit() == _rNEvt.GetWindow())
- if (MouseNotifyEvent::KEYINPUT == _rNEvt.GetType())
- if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode())
- if (IsInDropDown())
- {
- bool bReturn = SvtURLBox::EventNotify(_rNEvt);
-
- // build a system dependent (thus more user readable) file name
- OFileNotation aTransformer(m_sPreservedText, OFileNotation::N_URL);
- SetText(aTransformer.get(OFileNotation::N_SYSTEM));
- Modify();
-
- // Update the pick list
- UpdatePickList();
-
- return bReturn;
- }
-
- return SvtURLBox::EventNotify(_rNEvt);
- }
-} // namespace svt
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */