blob: 6a66c2acfda228d2361945b22aa2e63a34d99857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include "RemoteDialog.hxx"
#include <RemoteServer.hxx>
using namespace ::sd;
RemoteDialog::RemoteDialog(weld::Window* pWindow)
: GenericDialogController(pWindow, "modules/simpress/ui/remotedialog.ui", "RemoteDialog")
, m_xButtonConnect(m_xBuilder->weld_button("ok"))
, m_xClientBox(new sd::ClientBox(m_xBuilder->weld_scrolled_window("scroll"),
m_xBuilder->weld_container("tree")))
{
m_xButtonConnect->connect_clicked(LINK(this, RemoteDialog, HandleConnectButton));
}
RemoteDialog::~RemoteDialog() {}
IMPL_LINK_NOARG(RemoteDialog, HandleConnectButton, weld::Button&, void)
{
weld::WaitObject(m_xDialog.get());
#if defined(ENABLE_SDREMOTE)
auto xEntry = m_xClientBox->GetActiveEntry();
if (!xEntry)
return;
OUString aPin = xEntry->m_xPinBox->get_text();
if (IPRemoteServer::connectClient(xEntry->m_xClientInfo, aPin))
m_xDialog->response(RET_OK);
#endif
}
short RemoteDialog::run()
{
short nRet = weld::GenericDialogController::run();
#ifdef ENABLE_SDREMOTE
RemoteServer::restoreDiscoverable();
#endif
return nRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|