Sponsored Content
Full Discussion: Whats Behind Your Name?
The Lounge What is on Your Mind? Whats Behind Your Name? Post 54068 by norsk hedensk on Sunday 1st of August 2004 08:37:00 AM
Old 08-01-2004
i am very interested in germanic and scandinavian culture.
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Whats does this mean

Found this piece of code written in ksh. I have no ideas what do the stuff like ${SRF##*\.} do. SUFFIX=${SRF##*\.} if ; then SUFFIX="" fi I have encountered similar expressions in other programs also. Any pointers on where to learn more about these... (1 Reply)
Discussion started by: jyotipg
1 Replies

2. Post Here to Contact Site Administrators and Moderators

Whats the go?

woofie, Your posts are being deleted because your use of profanity. I am close to changing your status to read only. In fact, if you argue with the mods again, I will ban you from these boards. Neo (1 Reply)
Discussion started by: Neo
1 Replies

3. Shell Programming and Scripting

whats the difference between $* and $@

Hi, whats the difference between $* and $@ in command line arguments to a shell scripts (3 Replies)
Discussion started by: pbsrinivas
3 Replies

4. Shell Programming and Scripting

tell me whats wrong in this?

#! /bin/bash head -5 $1 echo "remove $1 ?" read answer if then echo invalid answer elif rm $1 echo "$1 is deleted" elif then echo file is not deleted else echo "invalid answer" fi What i really want this to do is to ask to delete the file or not..it says something wrong... (1 Reply)
Discussion started by: nadman123
1 Replies

5. Shell Programming and Scripting

tell me whats wrong with this

#! /bin/bash USAGE=" | ] if then echo "$USAGE" exit 1 fi while getopts lb: OPTION do case $(OPTION)in a) echo Hi there! exit 2;; b) echo hello o) OARG=$OPTARG;; \?)echo "$USAGE" ;; exit 2;; esac done shift `expr... (1 Reply)
Discussion started by: nadman123
1 Replies

6. Shell Programming and Scripting

whats this NAME=${0##*/}

hi all, i found NAME=${0##*/} in a script. i given this coomand in my unix box(presently in ksh). echo ${0##*/} it returned ksh. the purpose of the above is to return the shell name or more than that. do you have any more information like this, please share with me. one more query... (7 Replies)
Discussion started by: Arunprasad
7 Replies

7. Shell Programming and Scripting

##*_ - whats this?

Hi all, could you please tell me whats this stands ##*_ 0##*/ i knew this alone if some more is there please tell me that also. (3 Replies)
Discussion started by: Arunprasad
3 Replies

8. UNIX for Dummies Questions & Answers

whats wrong with this?

can anyone tell me why this code doesn't work how its supposed to, its the hangman game but it doesn't play how its supposed to #!/bin/bash NoAttempts="0" livesgiven="5" LivesRemain=$livesgiven LettersAttempted="" wordfile=words numwords=0 function menu() { clear cat << menu... (1 Reply)
Discussion started by: ferrycorsten73
1 Replies

9. Homework & Coursework Questions

Whats wrong with the following

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: ls -ld htdocs drwxr-x--- 3 root root 8192 2006-11-19 10:41 htdocs How would a host administrator... (1 Reply)
Discussion started by: Larry_1
1 Replies
XtInstallAllAccelerators()												XtInstallAllAccelerators()

Name
  XtInstallAllAccelerators - install all accelerators from a widget and its descendants onto a destination widget.

Synopsis
  void XtInstallAllAccelerators(destination, source)
	 Widget destination;
	 Widget source;

Inputs
  destination
	    Specifies the widget in which events specified in the accelerator tables will be detected.	Must be of class Core or any subclass
	    thereof.

  source    Specifies the root widget of the widget tree from which the actions of any descendant widget can be invoked when events occur  in
	    destination.  Must be of class Core or any subclass thereof.

Description
  XtInstallAllAccelerators()  is  a  convenience function for installing all accelerators from a widget and all its descendants onto a single
  destination widget.  It recursively traverses the widget tree rooted at source and installs the accelerator resource values of each  widget
  onto destination.  It also calls the display_accelerator() method of each widget in the source tree that has one.

Usage
  A  common use for XtInstallAllAccelerators() is to install the accelerators for all the buttons of a menu or an entire menu bar onto a sin-
  gle destination widget.  The XtNaccelerator resource of each button would be specified when the button was created or would come  from  the
  resource database, and the single call to XtInstallAllAccelerators() would make all those accelerators available in a widget.

  Note	that  if you want to provide keyboard shortcuts for a menu system from within two different text widgets, you will have to call XtIn-
  stallAllAccelerators() twice.

  Also note that if a widget is not interested in events of a certain type, then those events will propagate up the widget hierarchy  to  the
  first  ancestor  widget that is interested.  If your interface contains a composite widget that contains only button and other widgets that
  are not interested in keyboard input, then you can install a set of keyboard accelerators on the composite widget, and they will be invoked
  when keyboard events occur anywhere within that widget.

See Also
  XtInstallAccelerators(1),
  display_accelerator(4).

Xt - Translations and Actions												XtInstallAllAccelerators()
All times are GMT -4. The time now is 07:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy