ListP.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: ListP.h,v 1.4 2001/02/09 02:03:44 xorgcvs Exp $ */
  2. /*
  3. Copyright 1989, 1994, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/lib/Xaw/ListP.h,v 1.8 2001/01/17 19:42:27 dawes Exp $ */
  22. /* 
  23.  * This is a List widget.  It allows the user to select an item in a list and
  24.  * notifies the application through a callback function.
  25.  *
  26.  * Created:  8/13/88
  27.  * By: Chris D. Peterson
  28.  *                      MIT - Project Athena
  29.  */
  30. #ifndef _XawListP_h
  31. #define _XawListP_h
  32. /*
  33.  * List Widget Private Data
  34.  */
  35. #include <X11/Xaw/SimpleP.h>
  36. #include <X11/Xaw/List.h>
  37. #define NO_HIGHLIGHT            XAW_LIST_NONE
  38. #define OUT_OF_RANGE            -1
  39. #define OKAY                     0
  40. /* New fields for the List widget class */
  41. typedef struct {
  42.     XtPointer extension;
  43. } ListClassPart;
  44. /* Full class record */
  45. typedef struct _ListClassRec {
  46.     CoreClassPart core_class;
  47.     SimpleClassPart simple_class;
  48.     ListClassPart list_class;
  49. } ListClassRec;
  50. extern ListClassRec listClassRec;
  51. /* New fields for the List widget */
  52. typedef struct {
  53.     /* resources */
  54.     Pixel foreground;
  55.     Dimension internal_width; /* if not 3d, user sets directly */
  56.     Dimension internal_height;
  57.     Dimension column_space; /* half of *_space is add on
  58.    top/bot/left of */
  59.     Dimension row_space; /* each item's text bounding box
  60.    half added to longest for right */
  61.     int default_cols;
  62.     Boolean force_cols;
  63.     Boolean paste;
  64.     Boolean vertical_cols;
  65.     int longest; /* in pixels */
  66.     int nitems;
  67.     XFontStruct *font;
  68.     XFontSet fontset; /* Sheeran, Omron KK, 93/03/05 */
  69.     String *list; /* for i18n, always in multibyte
  70.    format */
  71.     XtCallbackList callback;
  72.     /* private */
  73.     int is_highlighted; /* set to the item currently
  74.    highlighted */
  75.     int highlight; /* set to the item that should be
  76.    highlighted */
  77.     int col_width; /* width of each column */
  78.     int row_height; /* height of each row */
  79.     int nrows; /* number of rows in the list */
  80.     int ncols; /* number of columns in the list */
  81.     GC normgc;
  82.     GC revgc;
  83.     GC graygc;
  84.     int freedoms; /* flags for resizing height
  85.    and width */
  86. #ifndef OLDXAW
  87.     int selected;
  88.     Boolean show_current;
  89.     char pad1[(sizeof(XtPointer) - sizeof(Boolean)) +
  90.  (sizeof(XtPointer) - sizeof(int))];
  91.     XtPointer pad2[2]; /* for future use and keep binary compatability */
  92. #endif
  93. } ListPart;
  94. /* Full instance record */
  95. typedef struct _ListRec {
  96.     CorePart core;
  97.     SimplePart simple;
  98.     ListPart list;
  99. } ListRec;
  100. #endif /* _XawListP_h */