Line data Source code
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 :
10 : #ifndef CHART2_PROPERTY_MAPPING_HXX
11 : #define CHART2_PROPERTY_MAPPING_HXX
12 :
13 : #include <vcl/dialog.hxx>
14 : #include <vcl/button.hxx>
15 : #include <svtools/svtabbx.hxx>
16 :
17 : #include <com/sun/star/chart2/XChartType.hpp>
18 :
19 : namespace chart {
20 :
21 : class DialogModel;
22 :
23 0 : class PropertyMappingDlg : public ModalDialog
24 : {
25 : public:
26 :
27 : PropertyMappingDlg(Window* pParent, com::sun::star::uno::Reference<
28 : com::sun::star::chart2::XChartType > xChartType);
29 :
30 : OUString getSelectedEntry();
31 :
32 : private:
33 :
34 : DECL_LINK( OkBtnHdl, void* );
35 : DECL_LINK( CancelBtnHdl, void* );
36 :
37 : SvTabListBox* mpMappingTable;
38 : Button* mpBtnOk;
39 : Button* mpBtnCancel;
40 : };
41 :
42 : }
43 :
44 : #endif
45 :
46 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|