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 #ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX
20 #define INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX
21 
22 #include <vcl/weld.hxx>
23 #include <vcl/vclptr.hxx>
24 
25 #include "TabPageNotifiable.hxx"
26 
27 namespace com { namespace sun { namespace star { namespace chart2 { class XChartDocument; } } } }
28 namespace com { namespace sun { namespace star { namespace uno { class XComponentContext; } } } }
29 
30 #include <memory>
31 
32 class BuilderPage;
33 
34 namespace chart
35 {
36 
37 class RangeChooserTabPage;
38 class DataSourceTabPage;
39 class ChartTypeTemplateProvider;
40 class DialogModel;
41 
42 class DataSourceDialog final :
43         public weld::GenericDialogController,
44         public TabPageNotifiable
45 {
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;
52 
53     // from GenericDialogController base
54     virtual short run() override;
55 
56     // TabPageNotifiable
57     virtual void setInvalidPage( BuilderPage * pTabPage ) override;
58     virtual void setValidPage( BuilderPage * pTabPage ) override;
59 
60 private:
61     void DisableTabToggling();
62     void EnableTabToggling();
63 
64     DECL_LINK(ActivatePageHdl, const OString&, void);
65     DECL_LINK(DeactivatePageHdl, const OString&, bool);
66 
67     std::unique_ptr< ChartTypeTemplateProvider >  m_apDocTemplateProvider;
68     std::unique_ptr< DialogModel >                m_apDialogModel;
69 
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;
75 
76     std::unique_ptr<weld::Notebook> m_xTabControl;
77     std::unique_ptr<weld::Button> m_xBtnOK;
78 
79     static sal_uInt16         m_nLastPageId;
80 };
81 
82 } //  namespace chart
83 
84 // INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX
85 #endif
86 
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
88