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