home *** CD-ROM | disk | FTP | other *** search
/ Tools / WinSN5.0Ver.iso / NETSCAP.50 / WIN1998.ZIP / ns / cmd / xfe / new_manageP.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-08  |  1.7 KB  |  63 lines

  1. /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Netscape Public License
  4.  * Version 1.0 (the "NPL"); you may not use this file except in
  5.  * compliance with the NPL.  You may obtain a copy of the NPL at
  6.  * http://www.mozilla.org/NPL/
  7.  *
  8.  * Software distributed under the NPL is distributed on an "AS IS" basis,
  9.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
  10.  * for the specific language governing rights and limitations under the
  11.  * NPL.
  12.  *
  13.  * The Initial Developer of this code under the NPL is Netscape
  14.  * Communications Corporation.  Portions created by Netscape are
  15.  * Copyright (C) 1998 Netscape Communications Corporation.  All Rights
  16.  * Reserved.
  17.  */
  18. /* 
  19.    new_manage.c --- defines a subclass of XmScrolledWindow
  20.    Created: Eric Bina <ebina@netscape.com>, 17-Aug-94.
  21.  */
  22.  
  23.  
  24. #ifndef _FE_NEWMANAGEP_H_
  25. #define _FE_NEWMANAGEP_H_
  26.  
  27. #include "new_manage.h"
  28. #include <Xm/ManagerP.h>
  29.  
  30. typedef struct
  31. {
  32.   int frogs;
  33. } NewManageClassPart;
  34.  
  35. typedef struct _NewManageClassRec
  36. {
  37.   CoreClassPart    core_class;
  38.   CompositeClassPart        composite_class;
  39.   ConstraintClassPart        constraint_class;
  40.   XmManagerClassPart        manager_class;
  41.   NewManageClassPart        newManage_class;
  42. } NewManageClassRec;
  43.  
  44. extern NewManageClassRec newManageClassRec;
  45.  
  46. typedef struct 
  47. {
  48.   void *why;
  49.   XtCallbackList                input_callback;
  50. } NewManagePart;
  51.  
  52. typedef struct _NewManageRec
  53. {
  54.     CorePart            core;
  55.     CompositePart        composite;
  56.     ConstraintPart        constraint;
  57.     XmManagerPart        manager;
  58.     NewManagePart        newManage;
  59. } NewManageRec;
  60.  
  61. #endif /* _FE_NEWMANAGEP_H_ */
  62.  
  63.