Lines Matching refs:actions
47 * part, those actions will simply call vi_send with vi commands.
49 * vi commands, and other will have to have special actions.
53 * change VI_STRING to VI_COMMAND so that menu actions cannot
76 * Change VI_STRING to VI_COMMAND so that menu actions cannot be confusing
414 pull_down *actions;
472 static void add_entries( Widget parent, pull_down *actions )
474 static void add_entries( parent, actions )
476 pull_down *actions;
482 for ( ; actions->title != NULL; actions++ ) {
485 if ( *actions->title != '\0' ) {
486 w = XmCreatePushButton( parent, actions->title, NULL, 0 );
487 if ( actions->action == NULL )
492 (XtCallbackProc) actions->action,
493 actions
495 if ( actions->accel != NULL ) {
496 str = XmStringCreateSimple( actions->accel_text );
498 XmNaccelerator, actions->accel,
533 add_entries( pull, ptr->actions );