2014-02-09 14:19:14 +01:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CHART2_PROPERTY_MAPPING_HXX
|
|
|
|
#define CHART2_PROPERTY_MAPPING_HXX
|
|
|
|
|
|
|
|
#include <vcl/dialog.hxx>
|
2014-03-09 18:45:58 +01:00
|
|
|
#include <vcl/button.hxx>
|
2014-02-09 14:19:14 +01:00
|
|
|
#include <svtools/svtabbx.hxx>
|
|
|
|
|
2014-03-09 19:02:03 +01:00
|
|
|
#include <com/sun/star/chart2/XChartType.hpp>
|
|
|
|
|
2014-02-09 14:19:14 +01:00
|
|
|
namespace chart {
|
|
|
|
|
2014-03-09 19:08:51 +01:00
|
|
|
class DialogModel;
|
|
|
|
|
2014-02-09 14:19:14 +01:00
|
|
|
class PropertyMappingDlg : public ModalDialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-03-09 19:02:03 +01:00
|
|
|
PropertyMappingDlg(Window* pParent, com::sun::star::uno::Reference<
|
2014-03-09 19:19:56 +01:00
|
|
|
com::sun::star::chart2::XChartType > xChartType);
|
2014-02-09 14:19:14 +01:00
|
|
|
|
|
|
|
OUString getSelectedEntry();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-03-09 18:45:58 +01:00
|
|
|
DECL_LINK( OkBtnHdl, void* );
|
|
|
|
DECL_LINK( CancelBtnHdl, void* );
|
|
|
|
|
2014-02-09 14:19:14 +01:00
|
|
|
SvTabListBox* mpMappingTable;
|
2014-03-09 18:45:58 +01:00
|
|
|
Button* mpBtnOk;
|
|
|
|
Button* mpBtnCancel;
|
2014-02-09 14:19:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|