Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
48b91481
Unverified
Commit
48b91481
authored
Nov 04, 2020
by
Mike Gabriel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'uli42-pr/various5' into 3.6.x
Attributes GH PR #963:
https://github.com/ArcticaProject/nx-libs/pull/963
parents
6cd4f123
252b86ee
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
98 additions
and
81 deletions
+98
-81
panoramiX.c
nx-X11/programs/Xserver/Xext/panoramiX.c
+7
-7
Atoms.c
nx-X11/programs/Xserver/hw/nxagent/Atoms.c
+2
-3
Clipboard.c
nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
+10
-3
Events.c
nx-X11/programs/Xserver/hw/nxagent/Events.c
+2
-2
GCs.h
nx-X11/programs/Xserver/hw/nxagent/GCs.h
+1
-1
Screen.c
nx-X11/programs/Xserver/hw/nxagent/Screen.c
+37
-37
Compext.c
nx-X11/programs/Xserver/hw/nxagent/compext/Compext.c
+0
-0
Jpeg.c
nx-X11/programs/Xserver/hw/nxagent/compext/Jpeg.c
+4
-2
Png.c
nx-X11/programs/Xserver/hw/nxagent/compext/Png.c
+15
-13
Z.c
nx-X11/programs/Xserver/hw/nxagent/compext/Z.c
+4
-2
nx-libs.spec
nx-libs.spec
+5
-0
Channel.h
nxcomp/src/Channel.h
+4
-4
Log.h
nxcomp/src/Log.h
+7
-7
No files found.
nx-X11/programs/Xserver/Xext/panoramiX.c
View file @
48b91481
...
...
@@ -601,8 +601,8 @@ extern Bool CreateConnectionBlock(void);
Bool
PanoramiXCreateConnectionBlock
(
void
)
{
int
i
,
j
,
length
;
Bool
disable
BackingS
tore
=
FALSE
;
Bool
disable
SaveU
nders
=
FALSE
;
Bool
disable
_backing_s
tore
=
FALSE
;
Bool
disable
_save_u
nders
=
FALSE
;
int
old_width
,
old_height
;
float
width_mult
,
height_mult
;
xWindowRoot
*
root
;
...
...
@@ -627,17 +627,17 @@ Bool PanoramiXCreateConnectionBlock(void)
return
FALSE
;
}
if
(
pScreen
->
backingStoreSupport
!=
screenInfo
.
screens
[
0
]
->
backingStoreSupport
)
disable
BackingS
tore
=
TRUE
;
disable
_backing_s
tore
=
TRUE
;
if
(
pScreen
->
saveUnderSupport
!=
screenInfo
.
screens
[
0
]
->
saveUnderSupport
)
disable
SaveU
nders
=
TRUE
;
disable
_save_u
nders
=
TRUE
;
}
if
(
disable
BackingStore
||
disableSaveU
nders
)
{
if
(
disable
_backing_store
||
disable_save_u
nders
)
{
for
(
i
=
0
;
i
<
screenInfo
.
numScreens
;
i
++
)
{
pScreen
=
screenInfo
.
screens
[
i
];
if
(
disable
BackingS
tore
)
if
(
disable
_backing_s
tore
)
pScreen
->
backingStoreSupport
=
NotUseful
;
if
(
disable
SaveU
nders
)
if
(
disable
_save_u
nders
)
pScreen
->
saveUnderSupport
=
NotUseful
;
}
}
...
...
nx-X11/programs/Xserver/hw/nxagent/Atoms.c
View file @
48b91481
...
...
@@ -42,7 +42,6 @@
#include "Display.h"
#include "Screen.h"
#include "Options.h"
#include "Agent.h"
#include "Utils.h"
/*
...
...
@@ -709,7 +708,7 @@ XlibAtom nxagentLocalToRemoteAtom(Atom local)
if
(
current
->
string
)
fprintf
(
stderr
,
"%s: local [%d] -> remote [%d (%s)]
\n
"
,
__func__
,
local
,
current
->
remote
,
current
->
string
);
else
fprintf
(
stderr
,
"%s: local [%d] -> remote [%d]
\n
"
,
__func__
,
local
,
current
->
remote
);
fprintf
(
stderr
,
"%s: local [%d] -> remote [%d]
(no string cached)
\n
"
,
__func__
,
local
,
current
->
remote
);
#endif
return
current
->
remote
;
...
...
@@ -718,7 +717,7 @@ XlibAtom nxagentLocalToRemoteAtom(Atom local)
{
const
char
*
string
=
NameForAtom
(
local
);
/* F
IXME: why False?
*/
/* F
alse means "create Atom if it does not exist yet"
*/
XlibAtom
remote
=
XInternAtom
(
nxagentDisplay
,
string
,
False
);
if
(
remote
==
None
)
...
...
nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
View file @
48b91481
...
...
@@ -292,7 +292,7 @@ static void printSelectionStat(int sel)
#else
fprintf
(
stderr
,
" CurrentSelections[].client [%p] index [%d]
\n
"
,
(
void
*
)
curSel
.
client
,
CLINDEX
(
curSel
.
client
);
CLINDEX
(
curSel
.
client
)
)
;
#endif
fprintf
(
stderr
,
" CurrentSelections[].window [0x%x]
\n
"
,
curSel
.
window
);
return
;
...
...
@@ -1937,17 +1937,23 @@ int nxagentConvertSelection(ClientPtr client, WindowPtr pWin, Atom selection,
*/
XlibAtom
p
=
serverTransToAgentProperty
;
XlibAtom
t
;
#ifdef DEBUG
char
*
pstr
=
"NX_CUT_BUFFER_SERVER"
;
const
char
*
tstr
;
#endif
if
(
target
==
clientUTF8_STRING
)
{
t
=
serverUTF8_STRING
;
#ifdef DEBUG
tstr
=
szAgentUTF8_STRING
;
#endif
}
else
{
t
=
XA_STRING
;
#ifdef DEBUG
tstr
=
validateString
(
NameForAtom
(
XA_STRING
));
#endif
}
#ifdef DEBUG
...
...
@@ -2025,11 +2031,12 @@ int nxagentSendNotify(xEvent *event)
* communication happens completely between our own clients (some of
* which can be nxagents themselves). In that case we return 0 (tell
* dix to go on) and do nothing!
* Be sure to not let this trigger for the failure answer (property 0)
*/
if
(
event
->
u
.
selectionNotify
.
property
!=
clientCutProperty
||
lastServerRequestor
==
None
)
if
(
!
(
event
->
u
.
selectionNotify
.
property
==
clientCutProperty
||
event
->
u
.
selectionNotify
.
property
==
0
)
||
lastServerRequestor
==
None
)
{
#ifdef DEBUG
fprintf
(
stderr
,
"%s: sent nothing.
\n
"
,
__func__
);
fprintf
(
stderr
,
"%s: sent nothing
- message to real X server is not required
.
\n
"
,
__func__
);
#endif
return
0
;
}
...
...
nx-X11/programs/Xserver/hw/nxagent/Events.c
View file @
48b91481
...
...
@@ -2851,10 +2851,10 @@ int nxagentHandleXFixesSelectionNotify(XEvent *X)
fprintf
(
stderr
,
"%s: Handling event.
\n
"
,
__func__
);
#endif
Atom
local
=
nxagentRemoteToLocalAtom
(
xfixesEvent
->
xfixesselection
.
selection
);
if
(
SelectionCallback
)
{
Atom
local
=
nxagentRemoteToLocalAtom
(
xfixesEvent
->
xfixesselection
.
selection
);
int
i
=
nxagentFindCurrentSelectionIndex
(
local
);
if
(
i
<
NumCurrentSelections
)
{
...
...
nx-X11/programs/Xserver/hw/nxagent/GCs.h
View file @
48b91481
...
...
@@ -42,7 +42,7 @@ is" without express or implied warranty.
extern
RESTYPE
RT_NX_GC
;
/* This file uses the GC definition f
or
m Xlib.h as XlibGC. */
/* This file uses the GC definition f
ro
m Xlib.h as XlibGC. */
typedef
struct
{
XlibGC
gc
;
...
...
nx-X11/programs/Xserver/hw/nxagent/Screen.c
View file @
48b91481
...
...
@@ -341,7 +341,7 @@ void nxagentMaximizeToFullScreen(ScreenPtr pScreen)
XUnmapWindow(nxagentDisplay, nxagentIconWindow);
*/
Window
root
=
RootWindow
(
nxagentDisplay
,
DefaultScreen
(
nxagentDisplay
));
Window
root
=
RootWindow
(
nxagentDisplay
,
DefaultScreen
(
nxagentDisplay
));
/*
FIXME: We'll check for ReparentNotify and LeaveNotify events after
...
...
@@ -351,55 +351,55 @@ FIXME: We'll check for ReparentNotify and LeaveNotify events after
unnecessary.
*/
/* only reparent if necessary. FIXME: also check if the desired coordinates match */
/* only reparent if necessary. FIXME: also check if the desired coordinates match */
if
(
!
nxagentIsParentOf
(
nxagentDisplay
,
root
,
nxagentFullscreenWindow
))
{
XReparentWindow
(
nxagentDisplay
,
nxagentFullscreenWindow
,
root
,
0
,
0
);
if
(
!
nxagentIsParentOf
(
nxagentDisplay
,
root
,
nxagentFullscreenWindow
))
{
XReparentWindow
(
nxagentDisplay
,
nxagentFullscreenWindow
,
root
,
0
,
0
);
for
(
int
i
=
0
;
i
<
100
&&
nxagentWMIsRunning
;
i
++
)
{
XEvent
e
;
for
(
int
i
=
0
;
i
<
100
&&
nxagentWMIsRunning
;
i
++
)
{
XEvent
e
;
#ifdef TEST
fprintf
(
stderr
,
"nxagentMaximizeToFullscreen: WARNING! Going to wait for the ReparentNotify event [%d].
\n
"
,
i
);
#endif
#ifdef TEST
fprintf
(
stderr
,
"nxagentMaximizeToFullscreen: WARNING! Going to wait for the ReparentNotify event [%d].
\n
"
,
i
);
#endif
if
(
XCheckTypedWindowEvent
(
nxagentDisplay
,
nxagentFullscreenWindow
,
ReparentNotify
,
&
e
))
{
break
;
}
if
(
XCheckTypedWindowEvent
(
nxagentDisplay
,
nxagentFullscreenWindow
,
ReparentNotify
,
&
e
))
{
break
;
}
XSync
(
nxagentDisplay
,
0
);
XSync
(
nxagentDisplay
,
0
);
nxagentWaitEvents
(
nxagentDisplay
,
50
);
}
}
else
{
#ifdef TEST
fprintf
(
stderr
,
"%s: FullscreenWindow already is child of root window - skipping reparenting,
\n
"
,
__func__
);
#endif
nxagentWaitEvents
(
nxagentDisplay
,
50
);
}
}
else
{
#ifdef TEST
fprintf
(
stderr
,
"%s: FullscreenWindow already is child of root window - skipping reparenting,
\n
"
,
__func__
);
#endif
}
XMapRaised
(
nxagentDisplay
,
nxagentFullscreenWindow
);
XIconifyWindow
(
nxagentDisplay
,
nxagentIconWindow
,
DefaultScreen
(
nxagentDisplay
));
/* swallow all LeaveNotify events for the FullscreenWindow;
Normally this does not swallow anything these days, but when
using fvwm you see one of these events here. */
while
(
1
)
{
XEvent
e
;
if
(
!
XCheckTypedWindowEvent
(
nxagentDisplay
,
nxagentFullscreenWindow
,
LeaveNotify
,
&
e
))
break
;
#ifdef TEST
fprintf
(
stderr
,
"%s: swallowing LeaveNotify event
\n
"
,
__func__
);
#endif
}
/* swallow all LeaveNotify events for the FullscreenWindow;
Normally this does not swallow anything these days, but when
using fvwm you see one of these events here. */
while
(
1
)
{
XEvent
e
;
if
(
!
XCheckTypedWindowEvent
(
nxagentDisplay
,
nxagentFullscreenWindow
,
LeaveNotify
,
&
e
))
break
;
#ifdef TEST
fprintf
(
stderr
,
"%s: swallowing LeaveNotify event
\n
"
,
__func__
);
#endif
}
/*
XMapWindow(nxagentDisplay, nxagentIconWindow);
...
...
nx-X11/programs/Xserver/hw/nxagent/compext/Compext.c
View file @
48b91481
This diff is collapsed.
Click to expand it.
nx-X11/programs/Xserver/hw/nxagent/compext/Jpeg.c
View file @
48b91481
...
...
@@ -38,6 +38,8 @@
#include "Mask.h"
#include "Jpeg.h"
#include "../Utils.h"
#define PANIC
#define WARNING
#undef TEST
...
...
@@ -277,7 +279,7 @@ char *JpegCompressData(XImage *image, int level, int *compressed_size)
jpegError
);
#endif
free
(
jpegCompBuf
);
SAFE_
free
(
jpegCompBuf
);
return
NULL
;
}
...
...
@@ -326,7 +328,7 @@ char *JpegCompressData(XImage *image, int level, int *compressed_size)
jpegDstDataLen
);
#endif
free
(
jpegCompBuf
);
SAFE_
free
(
jpegCompBuf
);
return
NULL
;
}
...
...
nx-X11/programs/Xserver/hw/nxagent/compext/Png.c
View file @
48b91481
...
...
@@ -34,6 +34,8 @@
#include "Mask.h"
#include "Png.h"
#include "../Utils.h"
#define PANIC
#define WARNING
#undef TEST
...
...
@@ -361,7 +363,7 @@ char *PngCompressData(XImage *image, int *compressed_size)
#endif
png_destroy_write_struct
(
&
png_ptr
,
&
info_ptr
);
free
(
pngCompBuf
);
SAFE_
free
(
pngCompBuf
);
return
NULL
;
}
...
...
@@ -373,7 +375,7 @@ char *PngCompressData(XImage *image, int *compressed_size)
fprintf
(
stderr
,
"******PngCompressData: PANIC! Could not alloc image_index.
\n
"
);
#endif
free
(
pngCompBuf
);
SAFE_
free
(
pngCompBuf
);
return
NULL
;
}
...
...
@@ -475,8 +477,8 @@ char *PngCompressData(XImage *image, int *compressed_size)
png_destroy_write_struct
(
&
png_ptr
,
&
info_ptr
);
free
(
pngCompBuf
);
free
(
image_index
);
SAFE_
free
(
pngCompBuf
);
SAFE_
free
(
image_index
);
return
NULL
;
}
...
...
@@ -500,8 +502,8 @@ char *PngCompressData(XImage *image, int *compressed_size)
(
int
)
(
count
*
sizeof
(
CARD8
)));
#endif
free
(
pngCompBuf
);
free
(
image_index
);
SAFE_
free
(
pngCompBuf
);
SAFE_
free
(
image_index
);
return
NULL
;
}
...
...
@@ -532,8 +534,8 @@ char *PngCompressData(XImage *image, int *compressed_size)
dy
,
h
);
#endif
free
(
srcBuf
);
srcBuf
=
NULL
;
free
(
image_index
);
image_index
=
NULL
;
SAFE_free
(
srcBuf
)
;
SAFE_free
(
image_index
)
;
if
(
setjmp
(
png_jmpbuf
(
png_ptr
)))
{
...
...
@@ -543,7 +545,7 @@ char *PngCompressData(XImage *image, int *compressed_size)
png_destroy_write_struct
(
&
png_ptr
,
&
info_ptr
);
free
(
pngCompBuf
);
SAFE_
free
(
pngCompBuf
);
return
NULL
;
}
...
...
@@ -594,20 +596,20 @@ char *PngCompressData(XImage *image, int *compressed_size)
pngDataLen
);
#endif
free
(
pngCompBuf
);
SAFE_
free
(
pngCompBuf
);
return
NULL
;
}
}
static
void
PngWriteData
(
png_structp
png_ptr
,
png_bytep
data
,
png_size_t
length
)
static
void
PngWriteData
(
png_structp
_
png_ptr
,
png_bytep
data
,
png_size_t
length
)
{
memcpy
(((
char
*
)
png_get_io_ptr
(
png_ptr
)
+
pngDataLen
),
data
,
length
);
memcpy
(((
char
*
)
png_get_io_ptr
(
_
png_ptr
)
+
pngDataLen
),
data
,
length
);
pngDataLen
+=
length
;
}
static
void
PngFlushData
(
png_structp
png_ptr
)
static
void
PngFlushData
(
png_structp
_
png_ptr
)
{
}
...
...
nx-X11/programs/Xserver/hw/nxagent/compext/Z.c
View file @
48b91481
...
...
@@ -33,6 +33,8 @@
#include "Z.h"
#include "../Utils.h"
#define PANIC
#define WARNING
#undef TEST
...
...
@@ -129,7 +131,7 @@ char *ZCompressData(const char *plainData, unsigned int plainSize, int threshold
plainSize
,
zError
(
result
));
#endif
free
(
compressedData
);
SAFE_
free
(
compressedData
);
*
compressedSize
=
0
;
...
...
@@ -300,7 +302,7 @@ int ZResetEncoder(void)
#endif
}
free
(
zStream
);
SAFE_
free
(
zStream
);
}
zInitialized
=
0
;
...
...
nx-libs.spec
View file @
48b91481
...
...
@@ -473,6 +473,11 @@ rm -r %{buildroot}%{_includedir}/nx-X11/Xtrans
#Remove our shared libraries' .la files before wrapping up the packages
rm %{buildroot}%{_libdir}/*.la
# Fix python scripts
%if 0%{?fedora} >= 23 || 0%{?rhel} >= 8 || 0%{?py_ver} == 3
sed -i '1 s/python/python3/' %{buildroot}%{_bindir}/nxdialog
%endif
%if 0%{?fdupes:1}
%fdupes %{buildroot}%{_prefix}
%endif
...
...
nxcomp/src/Channel.h
View file @
48b91481
...
...
@@ -365,18 +365,18 @@ class Channel
int
handleEncodeIdentity
(
EncodeBuffer
&
encodeBuffer
,
ChannelCache
*
channelCache
,
MessageStore
*
store
,
const
unsigned
char
*
buffer
,
const
unsigned
int
size
,
int
bigEndian
)
const
unsigned
int
size
,
int
_
bigEndian
)
{
return
(
store
->
encodeIdentity
(
encodeBuffer
,
buffer
,
size
,
bigEndian
,
channelCache
));
_
bigEndian
,
channelCache
));
}
int
handleDecodeIdentity
(
DecodeBuffer
&
decodeBuffer
,
ChannelCache
*
channelCache
,
MessageStore
*
store
,
unsigned
char
*&
buffer
,
unsigned
int
&
size
,
int
bigEndian
,
unsigned
int
&
size
,
int
_
bigEndian
,
WriteBuffer
*
writeBuffer
)
{
return
(
store
->
decodeIdentity
(
decodeBuffer
,
buffer
,
size
,
bigEndian
,
return
(
store
->
decodeIdentity
(
decodeBuffer
,
buffer
,
size
,
_
bigEndian
,
writeBuffer
,
channelCache
));
}
...
...
nxcomp/src/Log.h
View file @
48b91481
...
...
@@ -105,7 +105,7 @@ class NXLogStamp
}
NXLogStamp
(
NXLogLevel
level
,
const
char
*
file
=
""
,
const
char
*
function
=
""
,
size_t
line
=
0
)
:
file_
(
file
),
function_
(
function
),
line_
(
line
),
level_
(
level
)
NXLogStamp
(
NXLogLevel
_level
,
const
char
*
_file
=
""
,
const
char
*
_function
=
""
,
size_t
_line
=
0
)
:
file_
(
_file
),
function_
(
_function
),
line_
(
_line
),
level_
(
_
level
)
{
gettimeofday
(
&
timestamp_
,
NULL
);
}
...
...
@@ -300,9 +300,9 @@ class NXLog
return
level_
;
}
void
level
(
NXLogLevel
level
)
void
level
(
NXLogLevel
_
level
)
{
level_
=
level
;
level_
=
_
level
;
}
...
...
@@ -312,9 +312,9 @@ class NXLog
return
get_data
()
->
current_level
;
}
void
current_level
(
NXLogLevel
level
)
void
current_level
(
NXLogLevel
_
level
)
{
get_data
()
->
current_level
=
level
;
get_data
()
->
current_level
=
_
level
;
}
/** Source file from which messages are currently originating */
...
...
@@ -333,10 +333,10 @@ class NXLog
return
stream_
;
}
void
stream
(
std
::
ostream
*
stream
)
void
stream
(
std
::
ostream
*
_
stream
)
{
flush
();
stream_
=
stream
;
stream_
=
_
stream
;
}
bool
synchronized
()
const
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment