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 : #ifndef INCLUDED_SD_SOURCE_UI_DLG_REMOTEDIALOG_HXX
10 : #define INCLUDED_SD_SOURCE_UI_DLG_REMOTEDIALOG_HXX
11 :
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>
18 :
19 : #include "RemoteDialogClientBox.hxx"
20 :
21 : namespace sd
22 : {
23 :
24 0 : class RemoteDialog : public ModalDialog
25 : {
26 : private:
27 : PushButton* m_pButtonConnect;
28 : CloseButton* m_pButtonClose;
29 : ClientBox* m_pClientBox;
30 :
31 : DECL_DLLPRIVATE_LINK( HandleConnectButton, void * );
32 : DECL_LINK( CloseHdl, void * );
33 : public:
34 : RemoteDialog( vcl::Window* pWindow );
35 : };
36 :
37 : }
38 :
39 : #endif // INCLUDED_SD_SOURCE_UI_DLG_REMOTEDIALOG_HXX
40 :
41 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|