home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre3.z / postgre3 / src / lib / H / tmp / Tree.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  2.5 KB  |  60 lines

  1. /**********************************************************************************
  2.  * $Header: /private/postgres/src/lib/H/tmp/RCS/Tree.h,v 1.2 1991/02/02 15:13:24 sp Exp $
  3.  * Tree.h: Public header file for the Tree widget
  4.   *         From:
  5.   *                   The X Window System, 
  6.   *            Programming and Applications with Xt
  7.   *                   OSF/Motif Edition
  8.   *         by
  9.   *                Douglas Young
  10.   *              Prentice Hall, 1990
  11.   *
  12.   *                 Example described on pages: 397-419
  13.   *
  14.   *
  15.   *  Copyright 1989 by Prentice Hall
  16.   *  All Rights Reserved
  17.   *
  18.   * This code is based on the OSF/Motif widget set and the X Window System
  19.   *
  20.   * Permission to use, copy, modify, and distribute this software for 
  21.   * any purpose and without fee is hereby granted, provided that the above
  22.   * copyright notice appear in all copies and that both the copyright notice
  23.   * and this permission notice appear in supporting documentation.
  24.   *
  25.   * Prentice Hall and the author disclaim all warranties with regard to 
  26.   * this software, including all implied warranties of merchantability and fitness.
  27.   * In no event shall Prentice Hall or the author be liable for any special,
  28.   * indirect or cosequential damages or any damages whatsoever resulting from 
  29.   * loss of use, data or profits, whether in an action of contract, negligence 
  30.   * or other tortious action, arising out of or in connection with the use 
  31.   * or performance of this software.
  32.   *
  33.   * Open Software Foundation is a trademark of The Open Software Foundation, Inc.
  34.   * OSF is a trademark of Open Software Foundation, Inc.
  35.   * OSF/Motif is a trademark of Open Software Foundation, Inc.
  36.   * Motif is a trademark of Open Software Foundation, Inc.
  37.   * DEC is a registered trademark of Digital Equipment Corporation
  38.   * HP is a registered trademark of the Hewlett Packard Company
  39.   * DIGITAL is a registered trademark of Digital Equipment Corporation
  40.   * X Window System is a trademark of the Massachusetts Institute of Technology
  41.   **********************************************************************************/
  42.  
  43.  
  44.  
  45. #ifndef TREE_H
  46. #define TREE_H
  47.  
  48. extern WidgetClass  XstreeWidgetClass;
  49.  
  50. typedef struct _XsTreeClassRec *XsTreeWidgetClass;
  51. typedef struct _XsTreeRec      *XsTreeWidget;
  52.  
  53. #define XtNhorizontalSpace    "horizontalSpace"
  54. #define XtNverticalSpace      "verticalSpace"
  55. #define XtCPad                "Pad"
  56. #define XtNsuperNode          "superNode"
  57. #define XtCSuperNode          "SuperNode"
  58.  
  59. #endif TREE_H
  60.