1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef SVTOOLS_ROADMAPSKELETONPAGES_HXX
25 #define SVTOOLS_ROADMAPSKELETONPAGES_HXX
26 
27 #include <svtools/wizardmachine.hxx>
28 
29 namespace svt
30 {
31     class RoadmapWizard;
32 }
33 
34 //........................................................................
35 namespace udlg
36 {
37 //........................................................................
38 
39     class RoadmapSkeletonDialog;
40 
41 	//====================================================================
42 	//= RoadmapSkeletonPage
43 	//====================================================================
44     typedef ::svt::OWizardPage  RoadmapSkeletonPage_Base;
45     class RoadmapSkeletonPage : public RoadmapSkeletonPage_Base
46 	{
47     public:
48         RoadmapSkeletonPage( RoadmapSkeletonDialog& _rParentDialog, const ResId& _rRes );
49         ~RoadmapSkeletonPage();
50 	};
51 
52 	//====================================================================
53 	//= WelcomePage
54 	//====================================================================
55     class WelcomePage : public RoadmapSkeletonPage
56     {
57     public:
58         WelcomePage( RoadmapSkeletonDialog& _rParentDialog );
59 
60         static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
61     };
62 
63 	//====================================================================
64 	//= PreparationPage
65 	//====================================================================
66     class PreparationPage : public RoadmapSkeletonPage
67     {
68     public:
69         PreparationPage( RoadmapSkeletonDialog& _rParentDialog );
70 
71         static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
72     };
73 
74 	//====================================================================
75 	//= SetupPage
76 	//====================================================================
77     class SetupPage : public RoadmapSkeletonPage
78     {
79     public:
80         SetupPage( RoadmapSkeletonDialog& _rParentDialog );
81 
82         static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
83     };
84 
85 	//====================================================================
86 	//= FinishPage
87 	//====================================================================
88     class FinishPage : public RoadmapSkeletonPage
89     {
90     public:
91         FinishPage( RoadmapSkeletonDialog& _rParentDialog );
92 
93         static TabPage* Create( ::svt::RoadmapWizard& _rParentDialog );
94     };
95 
96 //........................................................................
97 } // namespace udlg
98 //........................................................................
99 
100 #endif // SVTOOLS_ROADMAPSKELETONPAGES_HXX
101