1
0
Fork 0
libreoffice/sc/source/ui/dbgui/scendlg.cxx
Daniel Baumann 8e63e14cf6
Adding upstream version 4:25.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 16:20:04 +02:00

163 lines
6.4 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 .
*/
#undef SC_DLLIMPLEMENTATION
#include <comphelper/string.hxx>
#include <svx/colorbox.hxx>
#include <unotools/useroptions.hxx>
#include <vcl/svapp.hxx>
#include <vcl/weld.hxx>
#include <unotools/localedatawrapper.hxx>
#include <global.hxx>
#include <globstr.hrc>
#include <scresid.hxx>
#include <tabvwsh.hxx>
#include <viewdata.hxx>
#include <document.hxx>
#include <scendlg.hxx>
ScNewScenarioDlg::ScNewScenarioDlg(weld::Window* pParent, const OUString& rName, bool bEdit, bool bSheetProtected)
: GenericDialogController(pParent, u"modules/scalc/ui/scenariodialog.ui"_ustr, u"ScenarioDialog"_ustr)
, aDefScenarioName(rName)
, bIsEdit(bEdit)
, m_xEdName(m_xBuilder->weld_entry(u"name"_ustr))
, m_xEdComment(m_xBuilder->weld_text_view(u"comment"_ustr))
, m_xCbShowFrame(m_xBuilder->weld_check_button(u"showframe"_ustr))
, m_xLbColor(new ColorListBox(m_xBuilder->weld_menu_button(u"bordercolor"_ustr), [this] { return m_xDialog.get(); }))
, m_xCbTwoWay(m_xBuilder->weld_check_button(u"copyback"_ustr))
, m_xCbCopyAll(m_xBuilder->weld_check_button(u"copysheet"_ustr))
, m_xCbProtect(m_xBuilder->weld_check_button(u"preventchanges"_ustr))
, m_xBtnOk(m_xBuilder->weld_button(u"ok"_ustr))
, m_xAltTitle(m_xBuilder->weld_label(u"alttitle"_ustr))
, m_xCreatedFt(m_xBuilder->weld_label(u"createdft"_ustr))
, m_xOnFt(m_xBuilder->weld_label(u"onft"_ustr))
{
m_xEdComment->set_size_request(m_xEdComment->get_approximate_digit_width() * 60,
m_xEdComment->get_height_rows(6));
if (bIsEdit)
m_xDialog->set_title(m_xAltTitle->get_label());
SvtUserOptions aUserOpt;
OUString sCreatedBy(m_xCreatedFt->get_label());
OUString sOn(m_xOnFt->get_label());
OUString aComment(sCreatedBy + " " + aUserOpt.GetFirstName() + " " +aUserOpt.GetLastName()
+ ", " + sOn + " " + ScGlobal::getLocaleData().getDate(Date(Date::SYSTEM))
+ ", " + ScGlobal::getLocaleData().getTime(tools::Time(tools::Time::SYSTEM)));
m_xEdComment->set_text(aComment);
m_xEdName->set_text(rName);
m_xBtnOk->connect_clicked(LINK(this, ScNewScenarioDlg, OkHdl));
m_xCbShowFrame->connect_toggled(LINK(this, ScNewScenarioDlg, EnableHdl));
m_xLbColor->SelectEntry( COL_LIGHTGRAY );
m_xCbShowFrame->set_active(true);
m_xCbTwoWay->set_active(true);
m_xCbCopyAll->set_active(false);
m_xCbProtect->set_active(true);
if (bIsEdit)
m_xCbCopyAll->set_active(false);
// If the Sheet is protected then we disable the Scenario Protect input
// and default it to true above. Note we are in 'Add' mode here as: if
// Sheet && scenario protection are true, then we cannot edit this dialog.
if (bSheetProtected)
m_xCbProtect->set_active(false);
}
ScNewScenarioDlg::~ScNewScenarioDlg()
{
}
void ScNewScenarioDlg::GetScenarioData( OUString& rName, OUString& rComment,
Color& rColor, ScScenarioFlags& rFlags ) const
{
rComment = m_xEdComment->get_text();
rName = m_xEdName->get_text();
if (rName.isEmpty())
rName = aDefScenarioName;
rColor = m_xLbColor->GetSelectEntryColor();
ScScenarioFlags nBits = ScScenarioFlags::NONE;
if (m_xCbShowFrame->get_active())
nBits |= ScScenarioFlags::ShowFrame;
if (m_xCbTwoWay->get_active())
nBits |= ScScenarioFlags::TwoWay;
if (m_xCbCopyAll->get_active())
nBits |= ScScenarioFlags::CopyAll;
if (m_xCbProtect->get_active())
nBits |= ScScenarioFlags::Protected;
rFlags = nBits;
}
void ScNewScenarioDlg::SetScenarioData(const OUString& rName, const OUString& rComment,
const Color& rColor, ScScenarioFlags nFlags)
{
m_xEdComment->set_text(rComment);
m_xEdName->set_text(rName);
m_xLbColor->SelectEntry(rColor);
m_xCbShowFrame->set_active( (nFlags & ScScenarioFlags::ShowFrame) != ScScenarioFlags::NONE );
EnableHdl(*m_xCbShowFrame);
m_xCbTwoWay->set_active( (nFlags & ScScenarioFlags::TwoWay) != ScScenarioFlags::NONE );
// not CopyAll
m_xCbProtect->set_active( (nFlags & ScScenarioFlags::Protected) != ScScenarioFlags::NONE );
}
IMPL_LINK_NOARG(ScNewScenarioDlg, OkHdl, weld::Button&, void)
{
OUString aName = comphelper::string::strip(m_xEdName->get_text(), ' ');
ScDocument& rDoc = static_cast<ScTabViewShell*>(SfxViewShell::Current())->GetViewData().GetDocument();
m_xEdName->set_text(aName);
if ( !ScDocument::ValidTabName( aName ) )
{
std::unique_ptr<weld::MessageDialog> xInfoBox(Application::CreateMessageDialog(m_xDialog.get(),
VclMessageType::Info, VclButtonsType::Ok,
ScResId(STR_INVALIDTABNAME)));
xInfoBox->run();
m_xEdName->grab_focus();
}
else if ( !bIsEdit && !rDoc.ValidNewTabName( aName ) )
{
std::unique_ptr<weld::MessageDialog> xInfoBox(Application::CreateMessageDialog(m_xDialog.get(),
VclMessageType::Info, VclButtonsType::Ok,
ScResId(STR_NEWTABNAMENOTUNIQUE)));
xInfoBox->run();
m_xEdName->grab_focus();
}
else
m_xDialog->response(RET_OK);
//! when editing, test whether another table has the name!
}
IMPL_LINK(ScNewScenarioDlg, EnableHdl, weld::Toggleable&, rBox, void)
{
if (&rBox == m_xCbShowFrame.get())
m_xLbColor->set_sensitive(m_xCbShowFrame->get_active());
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */