1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #ifndef _SD_PRESENT_HXX_
22 #define _SD_PRESENT_HXX_
24 #include <vcl/lstbox.hxx>
25 #include <vcl/fixed.hxx>
26 #include <vcl/button.hxx>
27 #include <vcl/dialog.hxx>
28 #include <vcl/field.hxx>
32 class SdCustomShowList
;
35 * Dialog to define options and to start the presentation
37 class SdStartPresentationDlg
: public ModalDialog
42 RadioButton
* aRbtAtDia
;
43 RadioButton
* aRbtCustomshow
;
45 ListBox
* aLbCustomshow
;
47 RadioButton
* aRbtStandard
;
48 RadioButton
* aRbtWindow
;
49 RadioButton
* aRbtAuto
;
51 CheckBox
* aCbxAutoLogo
;
54 CheckBox
* aCbxMousepointer
;
56 CheckBox
* aCbxNavigator
;
57 CheckBox
* aCbxAnimationAllowed
;
58 CheckBox
* aCbxChangePage
;
59 CheckBox
* aCbxAlwaysOnTop
;
61 FixedText
* maFtMonitor
;
64 SdCustomShowList
* pCustomShowList
;
65 const SfxItemSet
& rOutAttrs
;
68 FixedText
* msExternalMonitor
;
70 FixedText
* msAllMonitors
;
72 DECL_LINK( ChangeRangeHdl
, void * );
73 DECL_LINK( ClickWindowPresentationHdl
, void * );
74 DECL_LINK( ChangePauseHdl
, void * );
76 void InitMonitorSettings();
77 sal_Int32
InsertDisplayEntry(const rtl::OUString
&aName
,
79 String
GetDisplayName( sal_Int32 nDisplay
, bool bExternal
);
81 SdStartPresentationDlg( Window
* pWindow
,
82 const SfxItemSet
& rInAttrs
,
83 const std::vector
<String
> &rPageNames
,
84 SdCustomShowList
* pCSList
);
86 void GetAttr( SfxItemSet
& rOutAttrs
);
89 #endif // _SD_PRESENT_HXX_
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */