Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

alt-key(1) [debian man page]

ALT_KEY(1)						      General Commands Manual							ALT_KEY(1)

NAME
alt_key - generate keyboard accelerators SYNOPSIS
diffpdf [file1] [file2] DESCRIPTION
This manual page very briefly documents the alt_key command. (Click the GUI's Help button or press F1 for more information.) alt_key is a GUI application used to generate keyboard accelerators Alt_Key is used to show where keyboard accelerators should go in menu option texts and dialog labels. The program instantly produces opti- mal results on the basis that the best accelerator is the first character, the second best is the first character of a word, the third best is any character, the worst is no accelerator at all, and no accelerator should be used more than once. It also allows accelerators to be specified by the user. AUTHOR
alt_key was written by Mark Summerfield <mark@qtrac.eu>. alt_key v2.2.5 2012-02-25 ALT_KEY(1)

Check Out this Related Man Page

display_accelerator()													     display_accelerator()

Name
  display_accelerator - Core method to display current accelerators.

Synopsis
  typedef void (*XtStringProc)(Widget, String);
	 Widget w;
	 String string;

Inputs
  w	    Specifies the source widget that supplied the accelerators.

  string    Provides the string representation of the accelerators that were installed.

Description
  The  Core  display_accelerator() method is registered on the display_accelerator field of the Core class part structure, and is called when
  the application installs a widget's accelerators with XtInstallAccelerators() or XtInstallAllAccelerators().

  The argument w is the widget instance that has had its accelerators installed, and string is a string representation of the widget's accel-
  erator  table.   Some  widget classes will want to display themselves differently when accelerators are installed so that the user is aware
  that they are available.  (Menu buttons that display their keyboard equivalents are a good example.)

  The method is passed a string version of the current accelerator table, in canonical form.  This form may differ from the  original  source
  of the accelerator table itself.

  The  display_accelerator()  method  is not chained.  A widget class can inherit its superclass's display_accelerator() method by specifying
  XtInheritDisplayAccelerator in its Core display_accelerator field.  A widget that does not wish to display any accelerators  may  set  this
  field to NULL.

Usage
  The  translation table syntax is not particularly easy for a user to read or particularly easy for a widget to convert into a simpler form,
  so a widget class may prefer to define a resource which is the string that should be displayed when the accelerator is installed.  That way
  the application programmer can specify both the accelerator and the representation of the accelerator that the user will see.

  None of the Intrinsics or Xaw widget classes define a display_accelerator() method.

See Also
  XtInstallAccelerators(1).

Xt - Intrinsics Methods 												     display_accelerator()
Man Page