update dev300-m58
[ooovba.git] / toolkit / workben / layout / recover.hxx
blob963327a8aecf22deb9eca649899db8303794dbde
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: recover.hxx,v $
11 * $Revision: 1.2 $
13 * This file is part of OpenOffice.org.
15 * OpenOffice.org is free software: you can redistribute it and/or modify
16 * it under the terms of the GNU Lesser General Public License version 3
17 * only, as published by the Free Software Foundation.
19 * OpenOffice.org is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Lesser General Public License version 3 for more details
23 * (a copy is included in the LICENSE file that accompanied this code).
25 * You should have received a copy of the GNU Lesser General Public License
26 * version 3 along with OpenOffice.org. If not, see
27 * <http://www.openoffice.org/license.html>
28 * for a copy of the LGPLv3 License.
30 ************************************************************************/
31 #ifndef _SVX_RECOVER_HXX
32 #define _SVX_RECOVER_HXX
34 #include <layout/layout.hxx>
35 #include <vcl/button.hxx>
36 #include <vcl/field.hxx>
37 #include <vcl/fixed.hxx>
38 #include <layout/core/box.hxx>
39 #include <layout/layout-pre.hxx>
41 class SvxRecoverDialog : public SfxModalDialog
43 private:
44 FixedImage aHeaderImage;
45 FixedText aHeaderText;
46 FixedLine aHeaderLine;
47 FixedText aRecoverText;
48 FixedText aTextAdvanced;
50 CheckBox aCheckBoxDoc;
51 FixedImage aImageDoc;
52 FixedText aTextDoc;
53 CheckBox aCheckBoxSheet;
54 FixedImage aImageSheet;
55 FixedText aTextSheet;
56 CheckBox aCheckBoxDraw;
57 FixedImage aImageDraw;
58 FixedText aTextDraw;
59 CheckBox aCheckBoxPresent;
60 FixedImage aImagePresent;
61 FixedText aTextPresent;
62 AdvancedButton aButtonAdvanced;
64 FixedText aProgressText;
65 ProgressBar aProgressBar;
66 CheckBox aCheckBoxLogFile;
67 OKButton aOKBtn;
68 CancelButton aCancelBtn;
69 HelpButton aHelpBtn;
71 public:
72 #if TEST_LAYOUT
73 SvxRecoverDialog( Window* pParent );
74 #else /* !TEST_LAYOUT */
75 SvxRecoverDialog( Window* pParent, const SfxItemSet& rCoreSet );
76 #endif /* !TEST_LAYOUT */
77 ~SvxRecoverDialog();
80 #include <layout/layout-post.hxx>
82 #endif