1de066d04f
Change-Id: I2985b6793a776639214a25bf9732c000b9026bfc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167236 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Jenkins
147 lines
5.6 KiB
C++
147 lines
5.6 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 <dlg_DataEditor.hxx>
|
|
#include "DataBrowser.hxx"
|
|
#include <ChartModel.hxx>
|
|
|
|
#include <com/sun/star/awt/XWindow.hpp>
|
|
#include <utility>
|
|
|
|
using namespace ::com::sun::star;
|
|
using ::com::sun::star::uno::Reference;
|
|
|
|
namespace chart
|
|
{
|
|
|
|
DataEditor::DataEditor(weld::Window* pParent,
|
|
rtl::Reference<::chart::ChartModel> xChartDoc,
|
|
const Reference< uno::XComponentContext > & xContext)
|
|
: GenericDialogController(pParent, u"modules/schart/ui/chartdatadialog.ui"_ustr, u"ChartDataDialog"_ustr)
|
|
, m_bReadOnly(false)
|
|
, m_xChartDoc(std::move(xChartDoc))
|
|
, m_xContext(xContext)
|
|
, m_xTbxData(m_xBuilder->weld_toolbar(u"toolbar"_ustr))
|
|
, m_xCloseBtn(m_xBuilder->weld_button(u"close"_ustr))
|
|
, m_xTable(m_xBuilder->weld_container(u"datawindow"_ustr))
|
|
, m_xColumns(m_xBuilder->weld_container(u"columns"_ustr))
|
|
, m_xColors(m_xBuilder->weld_container(u"colorcolumns"_ustr))
|
|
, m_xTableCtrlParent(m_xTable->CreateChildFrame())
|
|
, m_xBrwData(VclPtr<DataBrowser>::Create(m_xTableCtrlParent, m_xColumns.get(), m_xColors.get()))
|
|
{
|
|
m_xCloseBtn->connect_clicked(LINK(this, DataEditor, CloseHdl));
|
|
|
|
Size aSize(m_xTable->get_approximate_digit_width() * 75, m_xTable->get_text_height() * 15);
|
|
m_xTable->set_size_request(aSize.Width(), aSize.Height());
|
|
|
|
m_xBrwData->Show();
|
|
|
|
m_xTbxData->connect_clicked(LINK(this, DataEditor, ToolboxHdl));
|
|
|
|
m_xBrwData->SetCursorMovedHdl( LINK( this, DataEditor, BrowserCursorMovedHdl ));
|
|
|
|
m_xBrwData->SetDataFromModel( m_xChartDoc );
|
|
m_xBrwData->GrabFocus();
|
|
|
|
bool bReadOnly = true;
|
|
if( m_xChartDoc.is())
|
|
bReadOnly = m_xChartDoc->isReadonly();
|
|
SetReadOnly( bReadOnly );
|
|
}
|
|
|
|
DataEditor::~DataEditor()
|
|
{
|
|
m_xBrwData.disposeAndClear();
|
|
m_xTableCtrlParent->dispose();
|
|
m_xTableCtrlParent.clear();
|
|
}
|
|
|
|
// react on click (or keypress) on toolbar icon
|
|
IMPL_LINK(DataEditor, ToolboxHdl, const OUString&, rId, void)
|
|
{
|
|
if (rId == "InsertRow")
|
|
m_xBrwData->InsertRow();
|
|
else if (rId == "InsertColumn")
|
|
m_xBrwData->InsertColumn();
|
|
else if (rId == "InsertTextColumn")
|
|
m_xBrwData->InsertTextColumn();
|
|
else if (rId == "RemoveRow")
|
|
m_xBrwData->RemoveRow();
|
|
else if (rId == "RemoveColumn")
|
|
m_xBrwData->RemoveColumn();
|
|
else if (rId == "MoveLeftColumn")
|
|
m_xBrwData->MoveLeftColumn();
|
|
else if (rId == "MoveRightColumn")
|
|
m_xBrwData->MoveRightColumn();
|
|
else if (rId == "MoveUpRow")
|
|
m_xBrwData->MoveUpRow();
|
|
else if (rId == "MoveDownRow")
|
|
m_xBrwData->MoveDownRow();
|
|
}
|
|
|
|
// refresh toolbar icons according to currently selected cell in browse box
|
|
IMPL_LINK_NOARG(DataEditor, BrowserCursorMovedHdl, DataBrowser*, void)
|
|
{
|
|
if( m_bReadOnly )
|
|
return;
|
|
|
|
bool bIsDataValid = m_xBrwData->IsEnableItem();
|
|
|
|
m_xTbxData->set_item_sensitive(u"InsertRow"_ustr, bIsDataValid && m_xBrwData->MayInsertRow() );
|
|
m_xTbxData->set_item_sensitive(u"InsertColumn"_ustr, bIsDataValid && m_xBrwData->MayInsertColumn() );
|
|
m_xTbxData->set_item_sensitive(u"InsertTextColumn"_ustr, bIsDataValid && m_xBrwData->MayInsertColumn() );
|
|
m_xTbxData->set_item_sensitive(u"RemoveRow"_ustr, m_xBrwData->MayDeleteRow() );
|
|
m_xTbxData->set_item_sensitive(u"RemoveColumn"_ustr, m_xBrwData->MayDeleteColumn() );
|
|
|
|
m_xTbxData->set_item_sensitive(u"MoveLeftColumn"_ustr, bIsDataValid && m_xBrwData->MayMoveLeftColumns() );
|
|
m_xTbxData->set_item_sensitive(u"MoveRightColumn"_ustr, bIsDataValid && m_xBrwData->MayMoveRightColumns() );
|
|
m_xTbxData->set_item_sensitive(u"MoveDownRow"_ustr, bIsDataValid && m_xBrwData->MayMoveDownRows() );
|
|
m_xTbxData->set_item_sensitive(u"MoveUpRow"_ustr, bIsDataValid && m_xBrwData->MayMoveUpRows() );
|
|
}
|
|
|
|
// disable all modifying controls
|
|
void DataEditor::SetReadOnly( bool bReadOnly )
|
|
{
|
|
m_bReadOnly = bReadOnly;
|
|
if( m_bReadOnly )
|
|
{
|
|
m_xTbxData->set_item_sensitive(u"InsertRow"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"InsertColumn"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"InsertTextColumn"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"RemoveRow"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"RemoveColumn"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"MoveLeftColumn"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"MoveRightColumn"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"MoveUpRow"_ustr, false);
|
|
m_xTbxData->set_item_sensitive(u"MoveDownRow"_ustr, false);
|
|
}
|
|
|
|
m_xBrwData->SetReadOnly( m_bReadOnly );
|
|
}
|
|
|
|
IMPL_LINK_NOARG(DataEditor, CloseHdl, weld::Button&, void)
|
|
{
|
|
bool bApplied = m_xBrwData->EndEditing(); // apply changes to model
|
|
if (bApplied)
|
|
m_xDialog->response(RET_CLOSE);
|
|
}
|
|
|
|
} // namespace chart
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|