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 #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"
24 class RemoteDialog
: public ModalDialog
27 OKButton mButtonConnect
;
28 CancelButton mButtonCancel
;
31 DECL_DLLPRIVATE_LINK( HandleConnectButton
, void * );
32 DECL_LINK( CloseHdl
, void * );
34 RemoteDialog( Window
* pWindow
);
41 #endif // _SD_REMOTEDIALOG_HXX_
43 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */