Scroll to navigation

cdk_histogram(3) Library Functions Manual cdk_histogram(3)

NAME

cdk_histogram - curses histogram widget

SYNOPSIS

cc [ flag ... ] file ... -lcdk [ library ... ]

#include <cdk.h>

CDKHISTOGRAM *histogram,
chtype unused);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram,
boolean box);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram,
int xpos,
int ypos,
boolean relative,
boolean refresh);
CDKSCREEN *cdkscreen,
int xpos,
int ypos,
int height,
int width,
int orient,
const char *title,
boolean box,
boolean shadow);
CDKHISTOGRAM *histogram);
CDKHISTOGRAM *histogram,
EHistogramDisplayType viewType,
int statsPos,
chtype statsAttribute,
int lowValue,
int highValue,
int currentValue,
chtype fillerCharacter,
boolean box);
CDKHISTOGRAM *histogram,
chtype attribute);
CDKHISTOGRAM *histogram,
const char * color);
CDKHISTOGRAM *histogram,
boolean box);
CDKHISTOGRAM *histogram,
chtype character);
CDKHISTOGRAM *histogram,
EHistogramDisplayType viewtype);
CDKHISTOGRAM *histogram,
chtype fillerCharacter);
CDKHISTOGRAM *histogram,
chtype character);
CDKHISTOGRAM *histogram,
chtype character);
CDKHISTOGRAM *histogram,
chtype character);
CDKHISTOGRAM *histogram,
chtype statsAttribute);
CDKHISTOGRAM *histogram,
int statsPosition);
CDKHISTOGRAM *histogram,
chtype character);
CDKHISTOGRAM *histogram,
chtype character);
CDKHISTOGRAM *histogram,
int lowValue,
int highValue,
int currentValue);
CDKHISTOGRAM *histogram,
chtype character);
CDKHISTOGRAM *histogram,
EHistogramDisplayType viewType);

DESCRIPTION

The Cdk histogram widget creates a histogram widget. This widget can draw a vertical or horizontal histogram. The functions create or manipulate the Cdk histogram box widget.

AVAILABLE FUNCTIONS

obsolete entrypoint which calls drawCDKHistogram.
removes the widget from the screen and frees memory the object used.
draws the histogram widget on the screen. If the box parameter is true, the widget is drawn with a box.
removes the widget from the screen. This does NOT destroy the widget.
returns true if the widget will be drawn with a box around it.
returns the character being used to draw the histogram bar.
returns the high value of the histogram.
returns the low value of the histogram.
returns the attribute of the statistics of the histogram.
returns where the histogram will draw the statistics.
returns the current value of the histogram.
returns the view type of the histogram widget.
moves the given widget to the given position.
  • The parameters xpos and ypos are the new position of the widget.
  • The parameter xpos may be an integer or one of the pre-defined values TOP, BOTTOM, and CENTER.
  • The parameter ypos can be an integer or one of the pre-defined values LEFT, RIGHT, and CENTER.
  • The parameter relative states whether the xpos/ypos pair is a relative move or an absolute move.
For example if xpos = 1 and ypos = 2 and relative = TRUE, then the widget would move one row down and two columns right. If the value of relative was FALSE then the widget would move to the position (1,2).
Do not use the values TOP, BOTTOM, LEFT, RIGHT, or CENTER when relative = TRUE. (weird things may happen).
The final parameter refresh is a boolean value which states whether the widget will get refreshed after the move.
creates a histogram widget and returns a pointer to it. Parameters:
is the screen you wish this widget to be placed in.
controls the placement of the object along the horizontal axis. It may be an integer or one of the pre-defined values LEFT, RIGHT, and CENTER.
controls the placement of the object along the vertical axis. It may be an integer or one of the pre-defined values TOP, BOTTOM, and CENTER.
is the string which will be displayed at the top of the widget. The title can be more than one line; just provide a carriage return character at the line break.
control the height and width of the widget. If you provide a value of zero for either of the height or the width, the widget will be created with the full width and height of the screen. If you provide a negative value, the widget will be created the full height or width minus the value provided.
specifies the orientation of the histogram. It is one of these pre-defined values: VERTICAL and HORIZONTAL.
is the string to use as the label of the histogram.
is true if the widget should be drawn with a box around it.
turns the shadow on or off around this widget.
If the widget could not be created then a NULL pointer is returned.
allows the user to move the widget around the screen via the cursor/keypad keys. See cdk_position (3) for key bindings.
lets the programmer set the specific values of the histogram widget.
The parameter viewType specifies the type of histogram to draw. The following table lists the valid values and the results.

Display_Type Result
vNONE Displays no information about the current values.
vPERCENT Displays the current value as a percentage.
vFRACTION Displays the current value as a fraction.
vREAL Displays the current value.

  • The statsPosition parameter states where the statistics will be displayed. It accepts TOP, BOTTOM, and CENTER.
  • The parameter statsAttribute sets the attributes of the statistics.
  • The parameters lowValue, highValue, and currentValue are the low, high, and current values respectively.
  • The filler character is the character to use in the unused space in the histogram.
  • If the box parameter is true, the widget is drawn with a box.
the background color attribute the widget. The parameter attribute is a curses attribute, e.g., A_BOLD.
the background color of the widget. The parameter color is in the format of the Cdk format strings. See cdk_display (3).
sets whether the widget will be drawn with a box around it.
sets the attribute of the box.
sets the display type (see getCDKHistogramViewType).
sets the character to use when drawing the histogram bar.
sets the horizontal drawing character for the box to the given character.
sets the lower left hand corner of the widget's box to the given character.
sets the lower right hand corner of the widget's box to the given character.
sets the attribute to use when drawing the histogram statistics.
sets where the statistics will be drawn on the widget. See the setCDKHistogram description for more details.
sets the upper left hand corner of the widget's box to the given character.
sets the upper right hand corner of the widget's box to the given character.
sets the low, high, and current value of the histogram.
sets the vertical drawing character for the box to the given character.
sets the view type of the histogram. Look at the setCDKHistogram description for more details.

SEE ALSO

cdk(3), cdk_binding(3), cdk_display(3), cdk_position(3), cdk_screen(3)