Does a Gtk application window have a callback for mouse movement?











up vote
0
down vote

favorite












I'm just playing around with Gtk, deciding whether I should spend time learning it. I have an application window with an "activate" callback, which gets called. After that callback returns, and the window is present on the screen, if I move the mouse, I get a "division-by-zero" error. I don't have a mouse movement callback. If that's the problem, I should add one. But what is the name of the mouse movement callback? The only one I've found is "move-cursor", which seems to be for an editing cursor, not a mouse cursor.



I'm using /usr/lib/x86_64-linux-gnu/libgtk-3.so.0 because that's the one that happens to be on my Ubuntu PC. libgtk-3.so.0 is identical to libgtk-3.so.0.2200.25.



MCVE:

#!/usr/local/bin/sbcl --script

(define-alien-routine gtk_application_window_new (* t) (app (* t)))
(define-alien-routine gtk_application_new (* t) (txt c-string) (flags int))
(define-alien-routine g_application_run int
(app (* t)) (argc int) (argv (* t)))
(define-alien-routine g_signal_connect_data int;
(instance (* t)) (sig c-string)
(cback (function void (* t) int))
(data (* t)) (unusedptr (* t)) (unusedint int))
(define-alien-routine gtk_window_set_title void (win (* t)) (ttl (c-string)))
(define-alien-routine gtk_window_set_default_size void
(win (* t)) (x int) (y int))
(define-alien-routine gtk_widget_show_all void (win (* t)))

(sb-alien::define-alien-callback mycallback void ((app (* t)) (u int))
(with-alien ((win (* t)))
(setf win (gtk_application_window_new app))
(gtk_window_set_title win "This")
(gtk_window_set_default_size win 100 100)
(gtk_widget_show_all win)))

(load-shared-object "/usr/lib/x86_64-linux-gnu/libgtk-3.so.0")
(with-alien ((app (* t)) (status int))
(setf app (gtk_application_new nil 0))
(g_signal_connect_data app "activate" mycallback nil nil 0)
(g_application_run app 0 nil))









share|improve this question




















  • 2




    Give us guys an MCVE to observe. We have no idea what your code looks like.
    – theGtknerd
    Nov 11 at 17:21










  • I should give it the mouse movement callback first, then make the MCVE from that. The only callback I presently give it is the "activate" callback. It calls that and shows the window. Then when it gets mouse movement is when it crashes with the division-by-zero error.
    – Mr E
    Nov 12 at 1:37










  • If you don't know what I mean by a callback, I mean the function you give as an argument to g_signal_connect. The only callback I presently have is the "activate" callback, which gets called and returns. Then, with the window visible, waiting for input, I move the mouse, and it crashes. That seems to imply I need a mouse-movement callback. Right?
    – Mr E
    Nov 12 at 2:19






  • 3




    Please show us some code first. We can't guess why you get a division by 0 error out of the blue. A simple app won't crash just because you didn't connect a callback to a signal.
    – liberforce
    Nov 12 at 10:30










  • Please also add the result of pkg-config --modversion gtk+-3.0, so we know exactly the version you're using, as the so name is mostly useless.
    – liberforce
    Nov 12 at 10:32















up vote
0
down vote

favorite












I'm just playing around with Gtk, deciding whether I should spend time learning it. I have an application window with an "activate" callback, which gets called. After that callback returns, and the window is present on the screen, if I move the mouse, I get a "division-by-zero" error. I don't have a mouse movement callback. If that's the problem, I should add one. But what is the name of the mouse movement callback? The only one I've found is "move-cursor", which seems to be for an editing cursor, not a mouse cursor.



I'm using /usr/lib/x86_64-linux-gnu/libgtk-3.so.0 because that's the one that happens to be on my Ubuntu PC. libgtk-3.so.0 is identical to libgtk-3.so.0.2200.25.



MCVE:

#!/usr/local/bin/sbcl --script

(define-alien-routine gtk_application_window_new (* t) (app (* t)))
(define-alien-routine gtk_application_new (* t) (txt c-string) (flags int))
(define-alien-routine g_application_run int
(app (* t)) (argc int) (argv (* t)))
(define-alien-routine g_signal_connect_data int;
(instance (* t)) (sig c-string)
(cback (function void (* t) int))
(data (* t)) (unusedptr (* t)) (unusedint int))
(define-alien-routine gtk_window_set_title void (win (* t)) (ttl (c-string)))
(define-alien-routine gtk_window_set_default_size void
(win (* t)) (x int) (y int))
(define-alien-routine gtk_widget_show_all void (win (* t)))

(sb-alien::define-alien-callback mycallback void ((app (* t)) (u int))
(with-alien ((win (* t)))
(setf win (gtk_application_window_new app))
(gtk_window_set_title win "This")
(gtk_window_set_default_size win 100 100)
(gtk_widget_show_all win)))

(load-shared-object "/usr/lib/x86_64-linux-gnu/libgtk-3.so.0")
(with-alien ((app (* t)) (status int))
(setf app (gtk_application_new nil 0))
(g_signal_connect_data app "activate" mycallback nil nil 0)
(g_application_run app 0 nil))









share|improve this question




















  • 2




    Give us guys an MCVE to observe. We have no idea what your code looks like.
    – theGtknerd
    Nov 11 at 17:21










  • I should give it the mouse movement callback first, then make the MCVE from that. The only callback I presently give it is the "activate" callback. It calls that and shows the window. Then when it gets mouse movement is when it crashes with the division-by-zero error.
    – Mr E
    Nov 12 at 1:37










  • If you don't know what I mean by a callback, I mean the function you give as an argument to g_signal_connect. The only callback I presently have is the "activate" callback, which gets called and returns. Then, with the window visible, waiting for input, I move the mouse, and it crashes. That seems to imply I need a mouse-movement callback. Right?
    – Mr E
    Nov 12 at 2:19






  • 3




    Please show us some code first. We can't guess why you get a division by 0 error out of the blue. A simple app won't crash just because you didn't connect a callback to a signal.
    – liberforce
    Nov 12 at 10:30










  • Please also add the result of pkg-config --modversion gtk+-3.0, so we know exactly the version you're using, as the so name is mostly useless.
    – liberforce
    Nov 12 at 10:32













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm just playing around with Gtk, deciding whether I should spend time learning it. I have an application window with an "activate" callback, which gets called. After that callback returns, and the window is present on the screen, if I move the mouse, I get a "division-by-zero" error. I don't have a mouse movement callback. If that's the problem, I should add one. But what is the name of the mouse movement callback? The only one I've found is "move-cursor", which seems to be for an editing cursor, not a mouse cursor.



I'm using /usr/lib/x86_64-linux-gnu/libgtk-3.so.0 because that's the one that happens to be on my Ubuntu PC. libgtk-3.so.0 is identical to libgtk-3.so.0.2200.25.



MCVE:

#!/usr/local/bin/sbcl --script

(define-alien-routine gtk_application_window_new (* t) (app (* t)))
(define-alien-routine gtk_application_new (* t) (txt c-string) (flags int))
(define-alien-routine g_application_run int
(app (* t)) (argc int) (argv (* t)))
(define-alien-routine g_signal_connect_data int;
(instance (* t)) (sig c-string)
(cback (function void (* t) int))
(data (* t)) (unusedptr (* t)) (unusedint int))
(define-alien-routine gtk_window_set_title void (win (* t)) (ttl (c-string)))
(define-alien-routine gtk_window_set_default_size void
(win (* t)) (x int) (y int))
(define-alien-routine gtk_widget_show_all void (win (* t)))

(sb-alien::define-alien-callback mycallback void ((app (* t)) (u int))
(with-alien ((win (* t)))
(setf win (gtk_application_window_new app))
(gtk_window_set_title win "This")
(gtk_window_set_default_size win 100 100)
(gtk_widget_show_all win)))

(load-shared-object "/usr/lib/x86_64-linux-gnu/libgtk-3.so.0")
(with-alien ((app (* t)) (status int))
(setf app (gtk_application_new nil 0))
(g_signal_connect_data app "activate" mycallback nil nil 0)
(g_application_run app 0 nil))









share|improve this question















I'm just playing around with Gtk, deciding whether I should spend time learning it. I have an application window with an "activate" callback, which gets called. After that callback returns, and the window is present on the screen, if I move the mouse, I get a "division-by-zero" error. I don't have a mouse movement callback. If that's the problem, I should add one. But what is the name of the mouse movement callback? The only one I've found is "move-cursor", which seems to be for an editing cursor, not a mouse cursor.



I'm using /usr/lib/x86_64-linux-gnu/libgtk-3.so.0 because that's the one that happens to be on my Ubuntu PC. libgtk-3.so.0 is identical to libgtk-3.so.0.2200.25.



MCVE:

#!/usr/local/bin/sbcl --script

(define-alien-routine gtk_application_window_new (* t) (app (* t)))
(define-alien-routine gtk_application_new (* t) (txt c-string) (flags int))
(define-alien-routine g_application_run int
(app (* t)) (argc int) (argv (* t)))
(define-alien-routine g_signal_connect_data int;
(instance (* t)) (sig c-string)
(cback (function void (* t) int))
(data (* t)) (unusedptr (* t)) (unusedint int))
(define-alien-routine gtk_window_set_title void (win (* t)) (ttl (c-string)))
(define-alien-routine gtk_window_set_default_size void
(win (* t)) (x int) (y int))
(define-alien-routine gtk_widget_show_all void (win (* t)))

(sb-alien::define-alien-callback mycallback void ((app (* t)) (u int))
(with-alien ((win (* t)))
(setf win (gtk_application_window_new app))
(gtk_window_set_title win "This")
(gtk_window_set_default_size win 100 100)
(gtk_widget_show_all win)))

(load-shared-object "/usr/lib/x86_64-linux-gnu/libgtk-3.so.0")
(with-alien ((app (* t)) (status int))
(setf app (gtk_application_new nil 0))
(g_signal_connect_data app "activate" mycallback nil nil 0)
(g_application_run app 0 nil))






gtk gtk3






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 at 0:33

























asked Nov 11 at 3:44









Mr E

113




113








  • 2




    Give us guys an MCVE to observe. We have no idea what your code looks like.
    – theGtknerd
    Nov 11 at 17:21










  • I should give it the mouse movement callback first, then make the MCVE from that. The only callback I presently give it is the "activate" callback. It calls that and shows the window. Then when it gets mouse movement is when it crashes with the division-by-zero error.
    – Mr E
    Nov 12 at 1:37










  • If you don't know what I mean by a callback, I mean the function you give as an argument to g_signal_connect. The only callback I presently have is the "activate" callback, which gets called and returns. Then, with the window visible, waiting for input, I move the mouse, and it crashes. That seems to imply I need a mouse-movement callback. Right?
    – Mr E
    Nov 12 at 2:19






  • 3




    Please show us some code first. We can't guess why you get a division by 0 error out of the blue. A simple app won't crash just because you didn't connect a callback to a signal.
    – liberforce
    Nov 12 at 10:30










  • Please also add the result of pkg-config --modversion gtk+-3.0, so we know exactly the version you're using, as the so name is mostly useless.
    – liberforce
    Nov 12 at 10:32














  • 2




    Give us guys an MCVE to observe. We have no idea what your code looks like.
    – theGtknerd
    Nov 11 at 17:21










  • I should give it the mouse movement callback first, then make the MCVE from that. The only callback I presently give it is the "activate" callback. It calls that and shows the window. Then when it gets mouse movement is when it crashes with the division-by-zero error.
    – Mr E
    Nov 12 at 1:37










  • If you don't know what I mean by a callback, I mean the function you give as an argument to g_signal_connect. The only callback I presently have is the "activate" callback, which gets called and returns. Then, with the window visible, waiting for input, I move the mouse, and it crashes. That seems to imply I need a mouse-movement callback. Right?
    – Mr E
    Nov 12 at 2:19






  • 3




    Please show us some code first. We can't guess why you get a division by 0 error out of the blue. A simple app won't crash just because you didn't connect a callback to a signal.
    – liberforce
    Nov 12 at 10:30










  • Please also add the result of pkg-config --modversion gtk+-3.0, so we know exactly the version you're using, as the so name is mostly useless.
    – liberforce
    Nov 12 at 10:32








2




2




Give us guys an MCVE to observe. We have no idea what your code looks like.
– theGtknerd
Nov 11 at 17:21




Give us guys an MCVE to observe. We have no idea what your code looks like.
– theGtknerd
Nov 11 at 17:21












I should give it the mouse movement callback first, then make the MCVE from that. The only callback I presently give it is the "activate" callback. It calls that and shows the window. Then when it gets mouse movement is when it crashes with the division-by-zero error.
– Mr E
Nov 12 at 1:37




I should give it the mouse movement callback first, then make the MCVE from that. The only callback I presently give it is the "activate" callback. It calls that and shows the window. Then when it gets mouse movement is when it crashes with the division-by-zero error.
– Mr E
Nov 12 at 1:37












If you don't know what I mean by a callback, I mean the function you give as an argument to g_signal_connect. The only callback I presently have is the "activate" callback, which gets called and returns. Then, with the window visible, waiting for input, I move the mouse, and it crashes. That seems to imply I need a mouse-movement callback. Right?
– Mr E
Nov 12 at 2:19




If you don't know what I mean by a callback, I mean the function you give as an argument to g_signal_connect. The only callback I presently have is the "activate" callback, which gets called and returns. Then, with the window visible, waiting for input, I move the mouse, and it crashes. That seems to imply I need a mouse-movement callback. Right?
– Mr E
Nov 12 at 2:19




3




3




Please show us some code first. We can't guess why you get a division by 0 error out of the blue. A simple app won't crash just because you didn't connect a callback to a signal.
– liberforce
Nov 12 at 10:30




Please show us some code first. We can't guess why you get a division by 0 error out of the blue. A simple app won't crash just because you didn't connect a callback to a signal.
– liberforce
Nov 12 at 10:30












Please also add the result of pkg-config --modversion gtk+-3.0, so we know exactly the version you're using, as the so name is mostly useless.
– liberforce
Nov 12 at 10:32




Please also add the result of pkg-config --modversion gtk+-3.0, so we know exactly the version you're using, as the so name is mostly useless.
– liberforce
Nov 12 at 10:32

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245656%2fdoes-a-gtk-application-window-have-a-callback-for-mouse-movement%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245656%2fdoes-a-gtk-application-window-have-a-callback-for-mouse-movement%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Full-time equivalent

Bicuculline

さくらももこ