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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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