tkScale.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:9k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tkScale.h --
  3.  *
  4.  * Declarations of types and functions used to implement
  5.  * the scale widget.
  6.  *
  7.  * Copyright (c) 1996 by Sun Microsystems, Inc.
  8.  * Copyright (c) 1999-2000 by Scriptics Corporation.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * RCS: @(#) $Id: tkScale.h,v 1.8 2000/04/14 08:33:16 hobbs Exp $
  14.  */
  15. #ifndef _TKSCALE
  16. #define _TKSCALE
  17. #ifndef _TK
  18. #include "tk.h"
  19. #endif
  20. #ifdef BUILD_tk
  21. # undef TCL_STORAGE_CLASS
  22. # define TCL_STORAGE_CLASS DLLEXPORT
  23. #endif
  24. /*
  25.  * Legal values for the "orient" field of TkScale records.
  26.  */
  27. enum orient {
  28.     ORIENT_HORIZONTAL, ORIENT_VERTICAL
  29. };
  30. /*
  31.  * Legal values for the "state" field of TkScale records.
  32.  */
  33. enum state {
  34.     STATE_ACTIVE, STATE_DISABLED, STATE_NORMAL
  35. };
  36. /*
  37.  * A data structure of the following type is kept for each scale
  38.  * widget managed by this file:
  39.  */
  40. typedef struct TkScale {
  41.     Tk_Window tkwin; /* Window that embodies the scale.  NULL
  42.  * means that the window has been destroyed
  43.  * but the data structures haven't yet been
  44.  * cleaned up.*/
  45.     Display *display; /* Display containing widget.  Used, among
  46.  * other things, so that resources can be
  47.  * freed even after tkwin has gone away. */
  48.     Tcl_Interp *interp; /* Interpreter associated with scale. */
  49.     Tcl_Command widgetCmd; /* Token for scale's widget command. */
  50.     Tk_OptionTable optionTable; /* Table that defines configuration options
  51.  * available for this widget. */
  52.     enum orient orient; /* Orientation for window (vertical or
  53.  * horizontal). */
  54.     int width; /* Desired narrow dimension of scale,
  55.  * in pixels. */
  56.     int length; /* Desired long dimension of scale,
  57.  * in pixels. */
  58.     double value; /* Current value of scale. */
  59.     Tcl_Obj *varNamePtr; /* Name of variable or NULL.
  60.  * If non-NULL, scale's value tracks
  61.  * the contents of this variable and
  62.  * vice versa. */
  63.     double fromValue; /* Value corresponding to left or top of
  64.  * scale. */
  65.     double toValue; /* Value corresponding to right or bottom
  66.  * of scale. */
  67.     double tickInterval; /* Distance between tick marks;
  68.  * 0 means don't display any tick marks. */
  69.     double resolution; /* If > 0, all values are rounded to an
  70.  * even multiple of this value. */
  71.     int digits; /* Number of significant digits to print
  72.  * in values.  0 means we get to choose the
  73.  * number based on resolution and/or the
  74.  * range of the scale. */
  75.     char format[10]; /* Sprintf conversion specifier computed from
  76.  * digits and other information. */
  77.     double bigIncrement; /* Amount to use for large increments to
  78.  * scale value.  (0 means we pick a value). */
  79.     char *command; /* Command prefix to use when invoking Tcl
  80.  * commands because the scale value changed.
  81.  * NULL means don't invoke commands. */
  82.     int repeatDelay; /* How long to wait before auto-repeating
  83.  * on scrolling actions (in ms). */
  84.     int repeatInterval; /* Interval between autorepeats (in ms). */
  85.     char *label; /* Label to display above or to right of
  86.  * scale;  NULL means don't display a label. */
  87.     int labelLength; /* Number of non-NULL chars. in label. */
  88.     enum state state; /* Values are active, normal, or disabled.
  89.  * Value of scale cannot be changed when 
  90.  * disabled. */
  91.     /*
  92.      * Information used when displaying widget:
  93.      */
  94.     int borderWidth; /* Width of 3-D border around window. */
  95.     Tk_3DBorder bgBorder; /* Used for drawing slider and other
  96.  * background areas. */
  97.     Tk_3DBorder activeBorder; /* For drawing the slider when active. */
  98.     int sliderRelief; /* Is slider to be drawn raised, sunken, 
  99.  * etc. */
  100.     XColor *troughColorPtr; /* Color for drawing trough. */
  101.     GC troughGC; /* For drawing trough. */
  102.     GC copyGC; /* Used for copying from pixmap onto screen. */
  103.     Tk_Font tkfont; /* Information about text font, or NULL. */
  104.     XColor *textColorPtr; /* Color for drawing text. */
  105.     GC textGC; /* GC for drawing text in normal mode. */
  106.     int relief; /* Indicates whether window as a whole is
  107.  * raised, sunken, or flat. */
  108.     int highlightWidth; /* Width in pixels of highlight to draw
  109.  * around widget when it has the focus.
  110.  * <= 0 means don't draw a highlight. */
  111.     Tk_3DBorder highlightBorder;/* Value of -highlightbackground option:
  112.  * specifies background with which to draw 3-D
  113.  * default ring and focus highlight area when
  114.  * highlight is off. */
  115.     XColor *highlightColorPtr; /* Color for drawing traversal highlight. */
  116.     int inset; /* Total width of all borders, including
  117.  * traversal highlight and 3-D border.
  118.  * Indicates how much interior stuff must
  119.  * be offset from outside edges to leave
  120.  * room for borders. */
  121.     int sliderLength; /* Length of slider, measured in pixels along
  122.  * long dimension of scale. */
  123.     int showValue; /* Non-zero means to display the scale value
  124.  * below or to the left of the slider; zero
  125.  * means don't display the value. */
  126.     /*
  127.      * Layout information for horizontal scales, assuming that window
  128.      * gets the size it requested:
  129.      */
  130.     int horizLabelY; /* Y-coord at which to draw label. */
  131.     int horizValueY; /* Y-coord at which to draw value text. */
  132.     int horizTroughY; /* Y-coord of top of slider trough. */
  133.     int horizTickY; /* Y-coord at which to draw tick text. */
  134.     /*
  135.      * Layout information for vertical scales, assuming that window
  136.      * gets the size it requested:
  137.      */
  138.     int vertTickRightX; /* X-location of right side of tick-marks. */
  139.     int vertValueRightX; /* X-location of right side of value string. */
  140.     int vertTroughX; /* X-location of scale's slider trough. */
  141.     int vertLabelX; /* X-location of origin of label. */
  142.     /*
  143.      * Miscellaneous information:
  144.      */
  145.     int fontHeight; /* Height of scale font. */
  146.     Tk_Cursor cursor; /* Current cursor for window, or None. */
  147.     Tcl_Obj *takeFocusPtr; /* Value of -takefocus option; not used in
  148.  * the C code, but used by keyboard traversal
  149.  * scripts.  May be NULL. */
  150.     int flags; /* Various flags;  see below for
  151.  * definitions. */
  152. } TkScale;
  153. /*
  154.  * Flag bits for scales:
  155.  *
  156.  * REDRAW_SLIDER - 1 means slider (and numerical readout) need
  157.  * to be redrawn.
  158.  * REDRAW_OTHER - 1 means other stuff besides slider and value
  159.  * need to be redrawn.
  160.  * REDRAW_ALL - 1 means the entire widget needs to be redrawn.
  161.  * REDRAW_PENDING - 1 means any sort of redraw is pending
  162.  * ACTIVE - 1 means the widget is active (the mouse is
  163.  * in its window).
  164.  * INVOKE_COMMAND - 1 means the scale's command needs to be
  165.  * invoked during the next redisplay (the
  166.  * value of the scale has changed since the
  167.  * last time the command was invoked).
  168.  * SETTING_VAR - 1 means that the associated variable is
  169.  * being set by us, so there's no need for
  170.  * ScaleVarProc to do anything.
  171.  * NEVER_SET - 1 means that the scale's value has never
  172.  * been set before (so must invoke -command and
  173.  * set associated variable even if the value
  174.  * doesn't appear to have changed).
  175.  * GOT_FOCUS - 1 means that the focus is currently in
  176.  * this widget.
  177.  * SCALE_DELETED - 1 means the scale widget is being deleted
  178.  */
  179. #define REDRAW_SLIDER (1<<0)
  180. #define REDRAW_OTHER (1<<1)
  181. #define REDRAW_ALL (REDRAW_OTHER|REDRAW_SLIDER)
  182. #define REDRAW_PENDING (1<<2)
  183. #define ACTIVE (1<<3)
  184. #define INVOKE_COMMAND (1<<4)
  185. #define SETTING_VAR (1<<5)
  186. #define NEVER_SET (1<<6)
  187. #define GOT_FOCUS (1<<7)
  188. #define SCALE_DELETED (1<<8)
  189. /*
  190.  * Symbolic values for the active parts of a slider.  These are
  191.  * the values that may be returned by the ScaleElement procedure.
  192.  */
  193. #define OTHER 0
  194. #define TROUGH1 1
  195. #define SLIDER 2
  196. #define TROUGH2 3
  197. /*
  198.  * Space to leave between scale area and text, and between text and
  199.  * edge of window.
  200.  */
  201. #define SPACING 2
  202. /*
  203.  * How many characters of space to provide when formatting the
  204.  * scale's value:
  205.  */
  206. #define PRINT_CHARS 150
  207. /*
  208.  * Declaration of procedures used in the implementation of the scale
  209.  * widget. 
  210.  */
  211. EXTERN void TkEventuallyRedrawScale _ANSI_ARGS_((TkScale *scalePtr,
  212.     int what));
  213. EXTERN double TkRoundToResolution _ANSI_ARGS_((TkScale *scalePtr,
  214.     double value));
  215. EXTERN TkScale * TkpCreateScale _ANSI_ARGS_((Tk_Window tkwin));
  216. EXTERN void TkpDestroyScale _ANSI_ARGS_((TkScale *scalePtr));
  217. EXTERN void TkpDisplayScale _ANSI_ARGS_((ClientData clientData));
  218. EXTERN int TkpScaleElement _ANSI_ARGS_((TkScale *scalePtr,
  219.      int x, int y));
  220. EXTERN void TkScaleSetValue _ANSI_ARGS_((TkScale *scalePtr,
  221.     double value, int setVar, int invokeCommand));
  222. EXTERN double TkScalePixelToValue _ANSI_ARGS_((TkScale *scalePtr, 
  223.     int x, int y));
  224. EXTERN int TkScaleValueToPixel _ANSI_ARGS_((TkScale *scalePtr,
  225.     double value));
  226. # undef TCL_STORAGE_CLASS
  227. # define TCL_STORAGE_CLASS DLLIMPORT
  228. #endif /* _TKSCALE */