Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xtaddcallback(3xt) [xfree86 man page]

XtAddCallback(3Xt)						   XT FUNCTIONS 						XtAddCallback(3Xt)

NAME
XtAddCallback, XtAddCallbacks, XtRemoveCallback, XtRemoveCallbacks, XtRemoveAllCallbacks - add and remove callback procedures SYNTAX
void XtAddCallback(Widget w, String callback_name, XtCallbackProc callback, XtPointer client_data); void XtAddCallbacks(Widget w, String callback_name, XtCallbackList callbacks); void XtRemoveCallback(Widget w, String callback_name, XtCallbackProc callback, XtPointer client_data); void XtRemoveCallbacks(Widget w, String callback_name, XtCallbackList callbacks); void XtRemoveAllCallbacks(Widget w, String callback_name, ARGUMENTS
callback Specifies the callback procedure. callbacks Specifies the null-terminated list of callback procedures and corresponding client data. callback_name Specifies the callback list to which the procedure is to be appended or deleted. or the client data to match on the registered callback procedures client_data Specifies the argument that is to be passed to the specified procedure when it is invoked by XtCallbacks or NULL,. w Specifies the widget. DESCRIPTION
The XtAddCallback function adds the specified callback procedure to the specified widget's callback list. The XtAddCallbacks add the specified list of callbacks to the specified widget's callback list. The XtRemoveCallback function removes a callback only if both the procedure and the client data match. The XtRemoveCallbacks function removes the specified callback procedures from the specified widget's callback list. The XtRemoveAllCallbacks function removes all the callback procedures from the specified widget's callback list. SEE ALSO
XtCallCallbacks(3Xt) X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface XFree86 Version 4.7.0 XtAddCallback(3Xt)

Check Out this Related Man Page

XtAddCallback(3Xt)						   XT FUNCTIONS 						XtAddCallback(3Xt)

NAME
XtAddCallback, XtAddCallbacks, XtRemoveCallback, XtRemoveCallbacks, XtRemoveAllCallbacks - add and remove callback procedures SYNTAX
void XtAddCallback(Widget w, String callback_name, XtCallbackProc callback, XtPointer client_data); void XtAddCallbacks(Widget w, String callback_name, XtCallbackList callbacks); void XtRemoveCallback(Widget w, String callback_name, XtCallbackProc callback, XtPointer client_data); void XtRemoveCallbacks(Widget w, String callback_name, XtCallbackList callbacks); void XtRemoveAllCallbacks(Widget w, String callback_name, ARGUMENTS
callback Specifies the callback procedure. callbacks Specifies the null-terminated list of callback procedures and corresponding client data. callback_name Specifies the callback list to which the procedure is to be appended or deleted. or the client data to match on the registered callback procedures client_data Specifies the argument that is to be passed to the specified procedure when it is invoked by XtCallbacks or NULL,. w Specifies the widget. DESCRIPTION
The XtAddCallback function adds the specified callback procedure to the specified widget's callback list. The XtAddCallbacks add the specified list of callbacks to the specified widget's callback list. The XtRemoveCallback function removes a callback only if both the procedure and the client data match. The XtRemoveCallbacks function removes the specified callback procedures from the specified widget's callback list. The XtRemoveAllCallbacks function removes all the callback procedures from the specified widget's callback list. SEE ALSO
XtCallCallbacks(3Xt) X Toolkit Intrinsics - C Language Interface Xlib - C Language X Interface XFree86 Version 4.7.0 XtAddCallback(3Xt)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Running a script from CDE...

Hi, I'm using Solaris 2.6 with a proprietary GUI. Is there a way to provide a user with access to a shell script from the CDE (workspace menu?). The user does not have command line (terminal) access. hope the question makes sense :rolleyes: thanks, kristy (4 Replies)
Discussion started by: kristy
4 Replies

2. Programming

Why my code couldn't be compiled

#include <Xm/Xm.h> #include <Xm/PushB.h> Widget CreatePushbutton(Widget parent, char* name, XtCallbackProc callback, XtPointer client_data) { Widget push; Arg args; Cardinal n; n=0; push=XmCreatePushButton(parent, name, args, n); XtAddCallback(push,... (4 Replies)
Discussion started by: endeavour1985
4 Replies

3. Programming

Hello UNIX programmers

i have MOTIF installed X11 a easy program is saved as hello.c there is the following message where can i get the X11/intrinsic.h , file ??? need help to compile my system : MX-16 Linux Debian Jessie / i386 hans@mx1:~/Documents $ cc push.c -o push -lXm -lXt -lX11 In file included from... (0 Replies)
Discussion started by: Zabo
0 Replies

4. UNIX for Beginners Questions & Answers

Change text font to greater one in this very good MOTIF texteditor ?

Hi, i have here found a very good texteditor source code programmed in the MOTIF GUI language. For myself i need NOTHING else to program. To start from a very easy point of view i want to RUN this editor on my LINUX machine and type simple C code. The reason for this post is that the text... (7 Replies)
Discussion started by: Sennenmut
7 Replies