1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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
; } } } }
37 class RangeChooserTabPage
;
38 class DataSourceTabPage
;
39 class ChartTypeTemplateProvider
;
42 class DataSourceDialog final
:
43 public weld::GenericDialogController
,
44 public TabPageNotifiable
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
;
57 virtual void setInvalidPage( BuilderPage
* pTabPage
) override
;
58 virtual void setValidPage( BuilderPage
* pTabPage
) override
;
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
;
84 // INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_DATASOURCE_HXX
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */