LibreOffice Module chart2 (master) 1
ChartController_EditData.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#include <ChartController.hxx>
21#include <ChartModel.hxx>
22
23#include <dlg_DataEditor.hxx>
24#include "UndoGuard.hxx"
25#include <ResId.hxx>
26#include <strings.hrc>
27
28#include <vcl/svapp.hxx>
29
30using namespace ::com::sun::star;
31
32namespace chart
33{
34
36{
37 rtl::Reference<::chart::ChartModel> xChartDoc( getChartModel(), uno::UNO_QUERY );
38 if (xChartDoc.is())
39 {
40 SolarMutexGuard aSolarGuard;
42 SchResId( STR_ACTION_EDIT_CHART_DATA ),
44 DataEditor aDataEditorDialog(GetChartFrame(), xChartDoc, m_xCC);
45 aDataEditorDialog.run();
46 aUndoGuard.commit();
47 }
48}
49
50} // namespace chart
51
52/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
rtl::Reference<::chart::ChartModel > getChartModel()
css::uno::Reference< css::document::XUndoManager > m_xUndoManager
weld::Window * GetChartFrame()
css::uno::Reference< css::uno::XComponentContext > m_xCC
Same as UndoLiveUpdateGuard but with additional storage of the chart's data.
Definition: UndoGuard.hxx:82
virtual short run()
OUString OOO_DLLPUBLIC_CHARTTOOLS SchResId(TranslateId aId)
Definition: ResId.cxx:24