4fbd638605
(*) create a rewriting plugin to do most of the work, heavily based on the fakebool plugin (*) but there are still a number of "long"s in the codebase that will need to be done by hand (*) the plugin needs lots of handholding, due to needing to add #include and update macros Change-Id: I8184d7000ca482c0469514bb73178c3a1123b1e9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104203 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
102 lines
3.7 KiB
C++
102 lines
3.7 KiB
C++
/* -*- 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 <osl/file.hxx>
|
|
#include <unotools/resmgr.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
#include <vcl/weld.hxx>
|
|
|
|
#include <strings.hrc>
|
|
#include "nameclashdlg.hxx"
|
|
|
|
// NameClashDialog ---------------------------------------------------------
|
|
|
|
IMPL_LINK(NameClashDialog, ButtonHdl_Impl, weld::Button&, rBtn, void)
|
|
{
|
|
tools::Long nRet = tools::Long(ABORT);
|
|
if (m_xBtnRename.get() == &rBtn)
|
|
{
|
|
nRet = tools::Long(RENAME);
|
|
OUString aNewName = m_xEDNewName->get_text();
|
|
if ( ( aNewName == m_aNewName ) || aNewName.isEmpty() )
|
|
{
|
|
std::unique_ptr<weld::MessageDialog> xErrorBox(Application::CreateMessageDialog(m_xDialog.get(),
|
|
VclMessageType::Warning, VclButtonsType::Ok,
|
|
m_aSameName));
|
|
xErrorBox->run();
|
|
return;
|
|
}
|
|
m_aNewName = aNewName;
|
|
}
|
|
else if (m_xBtnOverwrite.get() == &rBtn)
|
|
nRet = tools::Long(OVERWRITE);
|
|
|
|
m_xDialog->response(nRet);
|
|
}
|
|
|
|
|
|
NameClashDialog::NameClashDialog( weld::Window* pParent, const std::locale& rResLocale,
|
|
OUString const & rTargetFolderURL,
|
|
OUString const & rClashingName,
|
|
OUString const & rProposedNewName,
|
|
bool bAllowOverwrite )
|
|
: GenericDialogController(pParent, "uui/ui/simplenameclash.ui", "SimpleNameClashDialog")
|
|
, m_aNewName(rClashingName)
|
|
, m_xFTMessage(m_xBuilder->weld_label("warning"))
|
|
, m_xEDNewName(m_xBuilder->weld_entry("newname"))
|
|
, m_xBtnOverwrite(m_xBuilder->weld_button("replace"))
|
|
, m_xBtnRename(m_xBuilder->weld_button("rename"))
|
|
, m_xBtnCancel(m_xBuilder->weld_button("cancel"))
|
|
{
|
|
Link<weld::Button&,void> aLink( LINK( this, NameClashDialog, ButtonHdl_Impl ) );
|
|
m_xBtnOverwrite->connect_clicked( aLink );
|
|
m_xBtnRename->connect_clicked( aLink );
|
|
m_xBtnCancel->connect_clicked( aLink );
|
|
|
|
OUString aInfo;
|
|
if ( bAllowOverwrite )
|
|
{
|
|
aInfo = Translate::get(STR_RENAME_OR_REPLACE, rResLocale);
|
|
}
|
|
else
|
|
{
|
|
aInfo = Translate::get(STR_NAME_CLASH_RENAME_ONLY, rResLocale);
|
|
m_xBtnOverwrite->hide();
|
|
}
|
|
|
|
OUString aPath;
|
|
if ( osl::FileBase::E_None != osl::FileBase::getSystemPathFromFileURL( rTargetFolderURL, aPath ) )
|
|
aPath = rTargetFolderURL;
|
|
|
|
m_aSameName = Translate::get(STR_SAME_NAME_USED, rResLocale);
|
|
|
|
aInfo = aInfo.replaceFirst( "%NAME", rClashingName );
|
|
aInfo = aInfo.replaceFirst( "%FOLDER", aPath );
|
|
m_xFTMessage->set_label(aInfo);
|
|
if ( !rProposedNewName.isEmpty() )
|
|
m_xEDNewName->set_text( rProposedNewName );
|
|
else
|
|
m_xEDNewName->set_text( rClashingName );
|
|
}
|
|
|
|
NameClashDialog::~NameClashDialog()
|
|
{
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|