Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 :
21 : #ifndef INCLUDED_SD_SOURCE_UI_INC_PRESENT_HXX
22 : #define INCLUDED_SD_SOURCE_UI_INC_PRESENT_HXX
23 :
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>
29 :
30 : class SfxItemSet;
31 : class List;
32 : class SdCustomShowList;
33 :
34 : /**
35 : * Dialog to define options and to start the presentation
36 : */
37 0 : class SdStartPresentationDlg : public ModalDialog
38 : {
39 : private:
40 :
41 : RadioButton* aRbtAll;
42 : RadioButton* aRbtAtDia;
43 : RadioButton* aRbtCustomshow;
44 : ListBox* aLbDias;
45 : ListBox* aLbCustomshow;
46 :
47 : RadioButton* aRbtStandard;
48 : RadioButton* aRbtWindow;
49 : RadioButton* aRbtAuto;
50 : TimeField* aTmfPause;
51 : CheckBox* aCbxAutoLogo;
52 :
53 : CheckBox* aCbxManuel;
54 : CheckBox* aCbxMousepointer;
55 : CheckBox* aCbxPen;
56 : CheckBox* aCbxNavigator;
57 : CheckBox* aCbxAnimationAllowed;
58 : CheckBox* aCbxChangePage;
59 : CheckBox* aCbxAlwaysOnTop;
60 :
61 : FixedText* maFtMonitor;
62 : ListBox* maLBMonitor;
63 :
64 : SdCustomShowList* pCustomShowList;
65 : const SfxItemSet& rOutAttrs;
66 : sal_Int32 mnMonitors;
67 :
68 : FixedText* msMonitor;
69 : FixedText* msAllMonitors;
70 : FixedText* msMonitorExternal;
71 : FixedText* msExternal;
72 :
73 : DECL_LINK( ChangeRangeHdl, void * );
74 : DECL_LINK( ClickWindowPresentationHdl, void * );
75 : DECL_LINK( ChangePauseHdl, void * );
76 :
77 : void InitMonitorSettings();
78 : enum DisplayType {
79 : EXTERNAL_IS_NUMBER,
80 : MONITOR_NORMAL,
81 : MONITOR_IS_EXTERNAL,
82 : };
83 : sal_Int32 InsertDisplayEntry(const rtl::OUString &aName,
84 : sal_Int32 nDisplay);
85 : OUString GetDisplayName( sal_Int32 nDisplay,
86 : DisplayType eType );
87 : public:
88 : SdStartPresentationDlg( Window* pWindow,
89 : const SfxItemSet& rInAttrs,
90 : const std::vector<OUString> &rPageNames,
91 : SdCustomShowList* pCSList );
92 :
93 : void GetAttr( SfxItemSet& rOutAttrs );
94 : };
95 :
96 : #endif // INCLUDED_SD_SOURCE_UI_INC_PRESENT_HXX
97 :
98 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|