fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / sd / source / ui / dlg / RemoteDialog.hxx
blob882b9c21c343bbbd3e888dd5bf0d674a158e5f70
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/.
8 */
9 #ifndef _SD_REMOTEDIALOG_HXX_
10 #define _SD_REMOTEDIALOG_HXX_
12 #include <vcl/lstbox.hxx>
13 #include <vcl/fixed.hxx>
14 #include <vcl/button.hxx>
15 #include <vcl/dialog.hxx>
16 #include <vcl/field.hxx>
17 #include <svtools/treelistbox.hxx>
19 #include "RemoteDialogClientBox.hxx"
21 namespace sd
24 class RemoteDialog : public ModalDialog
26 private:
27 OKButton mButtonConnect;
28 CancelButton mButtonCancel;
29 ClientBox mClientBox;
31 DECL_DLLPRIVATE_LINK( HandleConnectButton, void * );
32 DECL_LINK( CloseHdl, void * );
33 public:
34 RemoteDialog( Window* pWindow );
35 ~RemoteDialog();
41 #endif // _SD_REMOTEDIALOG_HXX_
43 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */