Zenoss Core 2.3


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) OS X OpenSource RSS Zenoss Core 2.3
# 1  
Old 11-20-2008
CPU & Memory Zenoss Core 2.3

ImageAbout Zenoss Core
An award-winning open source IT monitoring product that effectively manages the configuration, health and performance of networks, servers and applications through a single, integrated software package.

- Configuration Management Database (CMDB): At the heart of Zenoss solutions resides the Zenoss Configuration Management Database (CMDB). The CMDB houses a unified model of the entire IT environment and provides the basis for the Zenoss “model-driven” IT monitoring approach.
- Inventory and Change Tracking: Zenoss provides inventory management and change tracking services that allow IT operators to maintain a current understanding of their IT environment. Specific Inventory and Change Tracking features include:
- Automatic Change History & Detection: Automatic logging of change history during auto-discovery and manual population; Automatic event generation and alerting based on change type and affected resource
- Many more features

More from Apple...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
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()