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 #ifndef _SVX_RECOVER_HXX 24 #define _SVX_RECOVER_HXX 25 26 #include <layout/layout.hxx> 27 #include <vcl/button.hxx> 28 #include <vcl/field.hxx> 29 #include <vcl/fixed.hxx> 30 #include <layout/core/box.hxx> 31 #include <layout/layout-pre.hxx> 32 33 class SvxRecoverDialog : public SfxModalDialog 34 { 35 private: 36 FixedImage aHeaderImage; 37 FixedText aHeaderText; 38 FixedLine aHeaderLine; 39 FixedText aRecoverText; 40 FixedText aTextAdvanced; 41 42 CheckBox aCheckBoxDoc; 43 FixedImage aImageDoc; 44 FixedText aTextDoc; 45 CheckBox aCheckBoxSheet; 46 FixedImage aImageSheet; 47 FixedText aTextSheet; 48 CheckBox aCheckBoxDraw; 49 FixedImage aImageDraw; 50 FixedText aTextDraw; 51 CheckBox aCheckBoxPresent; 52 FixedImage aImagePresent; 53 FixedText aTextPresent; 54 AdvancedButton aButtonAdvanced; 55 56 FixedText aProgressText; 57 ProgressBar aProgressBar; 58 CheckBox aCheckBoxLogFile; 59 OKButton aOKBtn; 60 CancelButton aCancelBtn; 61 HelpButton aHelpBtn; 62 63 public: 64 #if TEST_LAYOUT 65 SvxRecoverDialog( Window* pParent ); 66 #else /* !TEST_LAYOUT */ 67 SvxRecoverDialog( Window* pParent, const SfxItemSet& rCoreSet ); 68 #endif /* !TEST_LAYOUT */ 69 ~SvxRecoverDialog(); 70 }; 71 72 #include <layout/layout-post.hxx> 73 74 #endif 75 76