~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/Xbae/CellP.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright(C) Q. Frank Xia (qx@math.columbia.edu), 1994. 
 
3
 *
 
4
 *                       All Rights Reserved
 
5
 *
 
6
 * Permission to use, copy, modify, and distribute this software and its
 
7
 * documentation for any purpose and without fee is hereby granted,
 
8
 * provided that the above copyright notice appear in all copies and that
 
9
 * both that copyright notice and this permission notice appear in
 
10
 * supporting documentation, and that the name of Q. Frank Xia not be
 
11
 * used in advertising or publicity pertaining to distribution of the
 
12
 * software without specific, written prior permission.
 
13
 * 
 
14
 * This software is provided as-is and without any warranty of any kind.
 
15
 *
 
16
 * $Id$
 
17
 */
 
18
 
 
19
/*
 
20
 * CellP.h - Private definitions for Cell widget
 
21
 *
 
22
 * 7-20-1994:
 
23
 *        This file is created.
 
24
 */
 
25
 
 
26
#ifndef _XQ_CELL_H_
 
27
#define _XQ_CELL_H_
 
28
 
 
29
 
 
30
#if XmVersion <= 1001
 
31
#include <Xm/XmP.h>
 
32
#else
 
33
#include <Xm/PrimitiveP.h>
 
34
#endif
 
35
#include <Xm/TextFP.h>
 
36
 
 
37
#ifdef __cplusplus
 
38
extern "C" {
 
39
#endif
 
40
 
 
41
typedef struct _XqCellClassPart{
 
42
  void *extension;
 
43
} XqCellClassPart;
 
44
 
 
45
typedef struct _XqCellClassRec {
 
46
  CoreClassPart core_class;
 
47
  XmPrimitiveClassPart primitive_class;
 
48
  XmTextFieldClassPart text_class;
 
49
  XqCellClassPart cell_class;
 
50
} XqCellClassRec;
 
51
 
 
52
externalref XqCellClassRec xqCellClassRec;
 
53
 
 
54
typedef struct _XqCellPart {
 
55
  void *extension;
 
56
} XqCellPart;
 
57
 
 
58
typedef struct _XqCellRec {
 
59
  CorePart core;
 
60
  XmPrimitivePart primitive;
 
61
  XmTextFieldPart text;
 
62
  XqCellPart cell;
 
63
} XqCellRec;
 
64
 
 
65
#ifdef __cplusplus
 
66
}  /* Close scope of 'extern "C"' declaration which encloses file. */
 
67
#endif
 
68
 
 
69
#endif /* _XQ_CELL_H_ */
 
70
 
 
71
 
 
72
 
 
73