xref: /trunk/main/sd/source/ui/inc/assclass.hxx (revision cdf0e10c)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 #ifndef INC_ASSCLASS
29 #define INC_ASSCLASS
30 
31 #include <tools/solar.h>
32 #include "sddllapi.h"
33 
34 #define MAX_PAGES 10
35 
36 class List;
37 class Control;
38 
39 class SD_DLLPUBLIC Assistent
40 {
41 	List* mpPages[MAX_PAGES];
42 		//enthaelt fuer jede Seite die Controls die
43 		//korrekt geschaltet werden muessen
44 
45 	int mnPages;
46 		//gibt die Anzahl der Seiten an
47 
48 	int mnCurrentPage;
49 		//gibt die aktuelle Seite an
50 
51 	bool* mpPageStatus;
52 
53 public:
54 
55 	Assistent(int nNoOfPage);
56 
57 	bool IsEnabled( int nPage );
58 	void EnablePage( int nPage );
59 	void DisablePage( int nPage );
60 
61 	bool InsertControl(int nDestPage,Control* pUsedControl);
62 		//fuegt einer spezifizierten Seite ein Control hinzu
63 
64 	bool NextPage();
65 		//springt zur naechsten Seite
66 
67 	bool PreviousPage();
68 		//springt zur vorherigen Seite
69 
70 	bool GotoPage(const int nPageToGo);
71 		//springt zu einer angegebenen Seite
72 
73 	bool IsLastPage();
74 		//gibt an ob die aktuelle Seite die letzte ist
75 
76 	bool IsFirstPage();
77 		//gibt an ob die aktuelle Seite die erste ist
78 
79 	int  GetCurrentPage();
80 		//gibt die aktuelle Seite zurueck
81 
82 	~Assistent();
83 };
84 
85 
86 #endif
87