fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / sd / source / ui / inc / present.hxx
blobef27bfbe5da3bde57c6bc871ea228c896d0fdd24
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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>
30 class SfxItemSet;
31 class List;
32 class SdCustomShowList;
34 /**
35 * Dialog to define options and to start the presentation
37 class SdStartPresentationDlg : public ModalDialog
39 private:
41 RadioButton* aRbtAll;
42 RadioButton* aRbtAtDia;
43 RadioButton* aRbtCustomshow;
44 ListBox* aLbDias;
45 ListBox* aLbCustomshow;
47 RadioButton* aRbtStandard;
48 RadioButton* aRbtWindow;
49 RadioButton* aRbtAuto;
50 TimeField* aTmfPause;
51 CheckBox* aCbxAutoLogo;
53 CheckBox* aCbxManuel;
54 CheckBox* aCbxMousepointer;
55 CheckBox* aCbxPen;
56 CheckBox* aCbxNavigator;
57 CheckBox* aCbxAnimationAllowed;
58 CheckBox* aCbxChangePage;
59 CheckBox* aCbxAlwaysOnTop;
61 FixedText* maFtMonitor;
62 ListBox* maLBMonitor;
64 SdCustomShowList* pCustomShowList;
65 const SfxItemSet& rOutAttrs;
66 sal_Int32 mnMonitors;
68 FixedText* msExternalMonitor;
69 FixedText* msMonitor;
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,
78 sal_Int32 nDisplay);
79 String GetDisplayName( sal_Int32 nDisplay, bool bExternal );
80 public:
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: */