merge the formfield patch from ooo-build
[ooovba.git] / slideshow / source / inc / framerate.hxx
blobb768538ba15223a0b7514b2f775f842450125eb5
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: framerate.hxx,v $
10 * $Revision: 1.1.2.1 $
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 INCLUDED_SLIDESHOW_FRAMERATE_HXX
32 #define INCLUDED_SLIDESHOW_FRAMERATE_HXX
34 #include <sal/types.h>
36 namespace slideshow { namespace internal {
38 /** Some frame rate related data.
40 class FrameRate
42 public:
43 /** The minimum number of frames per second is used to calculate the
44 minimum number of frames that is to be shown for active activities.
46 static const sal_Int32 MinimumFramesPerSecond = 10;
48 /** Aim high with the number of preferred number of frames per second.
49 This number is the maximum as well and the true number will be lower.
51 static const sal_Int32 PreferredFramesPerSecond = 50;
54 } } // end of namespace slideshow::internal
56 #endif