Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
gtk
Commits
acb95ed9
Commit
acb95ed9
authored
Apr 01, 1998
by
Elliot Lee
Browse files
a little more debugging code.
parent
c36ca76b
Changes
4
Hide whitespace changes
Inline
Side-by-side
gdk/gdk.c
View file @
acb95ed9
...
...
@@ -3163,6 +3163,9 @@ static void
gdk_dnd_drag_begin
(
GdkWindow
*
initial_window
)
{
GdkEventDragBegin
tev
;
GDK_NOTE
(
DND
,
g_print
(
"------- STARTING DRAG from %p
\n
"
,
initial_window
));
tev
.
type
=
GDK_DRAG_BEGIN
;
tev
.
window
=
initial_window
;
tev
.
u
.
allflags
=
0
;
...
...
gdk/gdkdnd.c
View file @
acb95ed9
...
...
@@ -98,6 +98,7 @@ gdk_dnd_display_drag_cursor(gint x, gint y, gboolean drag_ok,
{
gdk_window_hide
(
gdk_dnd
.
c
->
drag_pm_ok
);
gdk_window_hide
(
gdk_dnd
.
c
->
drag_pm_default
);
GDK_NOTE
(
DND
,
g_print
(
"Hiding both drag cursors
\n
"
));
return
;
}
...
...
@@ -107,18 +108,22 @@ gdk_dnd_display_drag_cursor(gint x, gint y, gboolean drag_ok,
if
(
drag_ok
)
{
GDK_NOTE
(
DND
,
g_print
(
"Switching to drag_ok cursor
\n
"
));
mypix
=
gdk_dnd
.
c
->
drag_pm_ok
;
opix
=
gdk_dnd
.
c
->
drag_pm_default
;
myhotspot
=
&
gdk_dnd
.
c
->
ok_hotspot
;
}
else
{
GDK_NOTE
(
DND
,
g_print
(
"Switching to drag_default cursor
\n
"
));
mypix
=
gdk_dnd
.
c
->
drag_pm_default
;
opix
=
gdk_dnd
.
c
->
drag_pm_ok
;
myhotspot
=
&
gdk_dnd
.
c
->
default_hotspot
;
}
gdk_window_move
(
mypix
,
x
-
myhotspot
->
x
,
y
-
myhotspot
->
y
);
if
(
change_made
)
{
GDK_NOTE
(
DND
,
g_print
(
"Cursors switched, hide & show
\n
"
));
gdk_window_hide
(
opix
);
}
gdk_window_move
(
mypix
,
x
-
myhotspot
->
x
,
y
-
myhotspot
->
y
);
...
...
gdk/x11/gdkdnd-x11.c
View file @
acb95ed9
...
...
@@ -98,6 +98,7 @@ gdk_dnd_display_drag_cursor(gint x, gint y, gboolean drag_ok,
{
gdk_window_hide
(
gdk_dnd
.
c
->
drag_pm_ok
);
gdk_window_hide
(
gdk_dnd
.
c
->
drag_pm_default
);
GDK_NOTE
(
DND
,
g_print
(
"Hiding both drag cursors
\n
"
));
return
;
}
...
...
@@ -107,18 +108,22 @@ gdk_dnd_display_drag_cursor(gint x, gint y, gboolean drag_ok,
if
(
drag_ok
)
{
GDK_NOTE
(
DND
,
g_print
(
"Switching to drag_ok cursor
\n
"
));
mypix
=
gdk_dnd
.
c
->
drag_pm_ok
;
opix
=
gdk_dnd
.
c
->
drag_pm_default
;
myhotspot
=
&
gdk_dnd
.
c
->
ok_hotspot
;
}
else
{
GDK_NOTE
(
DND
,
g_print
(
"Switching to drag_default cursor
\n
"
));
mypix
=
gdk_dnd
.
c
->
drag_pm_default
;
opix
=
gdk_dnd
.
c
->
drag_pm_ok
;
myhotspot
=
&
gdk_dnd
.
c
->
default_hotspot
;
}
gdk_window_move
(
mypix
,
x
-
myhotspot
->
x
,
y
-
myhotspot
->
y
);
if
(
change_made
)
{
GDK_NOTE
(
DND
,
g_print
(
"Cursors switched, hide & show
\n
"
));
gdk_window_hide
(
opix
);
}
gdk_window_move
(
mypix
,
x
-
myhotspot
->
x
,
y
-
myhotspot
->
y
);
...
...
gdk/x11/gdkmain-x11.c
View file @
acb95ed9
...
...
@@ -3163,6 +3163,9 @@ static void
gdk_dnd_drag_begin
(
GdkWindow
*
initial_window
)
{
GdkEventDragBegin
tev
;
GDK_NOTE
(
DND
,
g_print
(
"------- STARTING DRAG from %p
\n
"
,
initial_window
));
tev
.
type
=
GDK_DRAG_BEGIN
;
tev
.
window
=
initial_window
;
tev
.
u
.
allflags
=
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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