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 .
20 #ifndef INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_CREATIONWIZARD_HXX
21 #define INCLUDED_CHART2_SOURCE_CONTROLLER_INC_DLG_CREATIONWIZARD_HXX
23 #include "TimerTriggeredControllerLock.hxx"
24 #include "TabPageNotifiable.hxx"
26 #include <vcl/roadmapwizard.hxx>
30 namespace com
{ namespace sun
{ namespace star
{ namespace chart2
{ class XChartDocument
; } } } }
31 namespace com
{ namespace sun
{ namespace star
{ namespace uno
{ class XComponentContext
; } } } }
33 using vcl::WizardTypes::WizardState
;
34 using vcl::WizardTypes::CommitPageReason
;
40 class ChartTypeTemplateProvider
;
42 class CreationWizard
: public vcl::RoadmapWizardMachine
, public TabPageNotifiable
45 CreationWizard(weld::Window
* pParent
,
46 const css::uno::Reference
<css::frame::XModel
>& xChartModel
,
47 const css::uno::Reference
<css::uno::XComponentContext
>& xContext
);
49 CreationWizard() = delete;
50 virtual ~CreationWizard() override
;
53 virtual void setInvalidPage(BuilderPage
* pTabPage
) override
;
54 virtual void setValidPage(BuilderPage
* pTabPage
) override
;
57 virtual bool leaveState( WizardState _nState
) override
;
58 virtual WizardState
determineNextState(WizardState nCurrentState
) const override
;
59 virtual void enterState(WizardState nState
) override
;
61 virtual OUString
getStateDisplayName(WizardState nState
) const override
;
64 virtual std::unique_ptr
<BuilderPage
> createPage(WizardState nState
) override
;
66 css::uno::Reference
<css::chart2::XChartDocument
> m_xChartModel
;
67 css::uno::Reference
<css::uno::XComponentContext
> m_xComponentContext
;
68 ChartTypeTemplateProvider
* m_pTemplateProvider
;
69 std::unique_ptr
<DialogModel
> m_pDialogModel
;
71 TimerTriggeredControllerLock m_aTimerTriggeredControllerLock
;
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */