Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef INC_ASSCLASS
21 : #define INC_ASSCLASS
22 :
23 : #include <vector>
24 : #include <boost/scoped_array.hpp>
25 :
26 : #include <tools/solar.h>
27 : #include "sddllapi.h"
28 :
29 : #define MAX_PAGES 10
30 :
31 : class Control;
32 :
33 0 : class SD_DLLPUBLIC Assistent
34 : {
35 : std::vector<Control*> maPages[MAX_PAGES];
36 : //enthaelt fuer jede Seite die Controls die
37 : //korrekt geschaltet werden muessen
38 :
39 : int mnPages;
40 : //gibt die Anzahl der Seiten an
41 :
42 : int mnCurrentPage;
43 : //gibt die aktuelle Seite an
44 :
45 : boost::scoped_array<bool> mpPageStatus;
46 :
47 : public:
48 :
49 : Assistent(int nNoOfPage);
50 :
51 : bool IsEnabled ( int nPage ) const;
52 : void EnablePage( int nPage );
53 : void DisablePage( int nPage );
54 :
55 : bool InsertControl(int nDestPage,Control* pUsedControl);
56 : //fuegt einer spezifizierten Seite ein Control hinzu
57 :
58 : bool NextPage();
59 : //springt zur naechsten Seite
60 :
61 : bool PreviousPage();
62 : //springt zur vorherigen Seite
63 :
64 : bool GotoPage(const int nPageToGo);
65 : //springt zu einer angegebenen Seite
66 :
67 : bool IsLastPage() const;
68 : //gibt an ob die aktuelle Seite die letzte ist
69 :
70 : bool IsFirstPage() const;
71 : //gibt an ob die aktuelle Seite die erste ist
72 :
73 : int GetCurrentPage() const;
74 : //gibt die aktuelle Seite zurueck
75 : };
76 :
77 :
78 : #endif
79 :
80 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|