blob: 5f7d289196ec6c2302e4c155cb39cd0ccd91f20a (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* -*- 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 <vcl/svapp.hxx>
#include "unx/x11windowprovider.hxx"
#include "unx/x11/x11display.hxx"
X11WindowProvider::~X11WindowProvider()
{
}
Display *OpenX11Display(OString& rDisplay)
{
/*
* open connection to X11 Display
* try in this order:
* o -display command line parameter,
* o $DISPLAY environment variable
* o default display
*/
Display *pDisp = nullptr;
// is there a -display command line parameter?
sal_uInt32 nParams = osl_getCommandArgCount();
OUString aParam;
for (sal_uInt32 i=0; i<nParams; i++)
{
osl_getCommandArg(i, &aParam.pData);
if ( aParam == "-display" )
{
osl_getCommandArg(i+1, &aParam.pData);
rDisplay = OUStringToOString(
aParam, osl_getThreadTextEncoding());
if ((pDisp = XOpenDisplay(rDisplay.getStr()))!=nullptr)
{
/*
* if a -display switch was used, we need
* to set the environment accoringly since
* the clipboard build another connection
* to the xserver using $DISPLAY
*/
OUString envVar("DISPLAY");
osl_setEnvironment(envVar.pData, aParam.pData);
}
break;
}
}
if (!pDisp && rDisplay.isEmpty())
{
// Open $DISPLAY or default...
char *pDisplay = getenv("DISPLAY");
if (pDisplay != nullptr)
rDisplay = OString(pDisplay);
pDisp = XOpenDisplay(pDisplay);
}
return pDisp;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|