merge the formfield patch from ooo-build
[ooovba.git] / autodoc / source / display / inc / cfrstd.hxx
blob78d3e09e9eb8d5ae02e1ea823bb86debc073cdbd
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: cfrstd.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 ADC_CFRSTD_HXX
32 #define ADC_CFRSTD_HXX
36 // USED SERVICES
37 // BASE CLASSES
38 #include <display/corframe.hxx>
39 // COMPONENTS
40 // PARAMETERS
44 class StdFrame : public display::CorporateFrame
46 public:
47 // LIFECYCLE
48 StdFrame();
50 // INQUIRY
51 virtual DYN Html_Image *
52 LogoSrc() const;
53 virtual const char *
54 LogoLink() const;
55 virtual const char *
56 CopyrightText() const;
57 virtual const char *
58 CssStyle() const;
59 virtual const char *
60 CssStylesExplanation() const;
61 virtual const char *
62 DevelopersGuideHtmlRoot() const;
63 virtual bool SimpleLinks() const;
65 // ACCESS
66 virtual void Set_DevelopersGuideHtmlRoot(
67 const String & i_directory );
68 virtual void Set_SimpleLinks();
70 private:
71 String sDevelopersGuideHtmlRoot;
72 bool bSimpleLinks;
77 // IMPLEMENTATION
82 #endif