Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / chart2 / source / controller / inc / dlg_DataSource.hxx
blob680256d1db53cfc6863b4e0faea388b1cb93fa81
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX
20 #define INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX
22 #include <vcl/weld.hxx>
23 #include <vcl/vclptr.hxx>
25 #include "TabPageNotifiable.hxx"
27 namespace com { namespace sun { namespace star { namespace chart2 { class XChartDocument; } } } }
28 namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } }
30 #include <memory>
32 class BuilderPage;
34 namespace chart
37 class RangeChooserTabPage;
38 class DataSourceTabPage;
39 class ChartTypeTemplateProvider;
40 class DialogModel;
42 class DataSourceDialog final :
43 public weld::GenericDialogController,
44 public TabPageNotifiable
46 public:
47 explicit DataSourceDialog(
48 weld::Window * pParent,
49 const css::uno::Reference< css::chart2::XChartDocument > & xChartDocument,
50 const css::uno::Reference< css::uno::XComponentContext > & xContext );
51 virtual ~DataSourceDialog() override;
53 // from GenericDialogController base
54 virtual short run() override;
56 // TabPageNotifiable
57 virtual void setInvalidPage( BuilderPage * pTabPage ) override;
58 virtual void setValidPage( BuilderPage * pTabPage ) override;
60 private:
61 void DisableTabToggling();
62 void EnableTabToggling();
64 DECL_LINK(ActivatePageHdl, const OString&, void);
65 DECL_LINK(DeactivatePageHdl, const OString&, bool);
67 std::unique_ptr< ChartTypeTemplateProvider > m_apDocTemplateProvider;
68 std::unique_ptr< DialogModel > m_apDialogModel;
70 std::unique_ptr<RangeChooserTabPage> m_xRangeChooserTabPage;
71 std::unique_ptr<DataSourceTabPage> m_xDataSourceTabPage;
72 bool m_bRangeChooserTabIsValid;
73 bool m_bDataSourceTabIsValid;
74 bool m_bTogglingEnabled;
76 std::unique_ptr<weld::Notebook> m_xTabControl;
77 std::unique_ptr<weld::Button> m_xBtnOK;
79 static sal_uInt16 m_nLastPageId;
82 } // namespace chart
84 // INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX
85 #endif
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */