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

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/iconlist/DumbClip.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
/* $Id$ */
 
2
/*
 
3
 * Copyright 1996 John L. Cwikla
 
4
 *
 
5
 * Permission to use, copy, modify, distribute, and sell this software
 
6
 * and its documentation for any purpose is hereby granted without fee,
 
7
 * provided that the above copyright notice appears in all copies and that
 
8
 * both that copyright notice and this permission notice appear in
 
9
 * supporting documentation, and that the name of John L. Cwikla or
 
10
 * Wolfram Research, Inc not be used in advertising or publicity
 
11
 * pertaining to distribution of the software without specific, written
 
12
 * prior permission.    John L. Cwikla and Wolfram Research, Inc make no
 
13
 * representations about the suitability of this software for any
 
14
 * purpose. It is provided "as is" without express or implied warranty.
 
15
 *
 
16
 * John L. Cwikla and Wolfram Research, Inc disclaim all warranties with
 
17
 * regard to this software, including all implied warranties of
 
18
 * merchantability and fitness, in no event shall John L. Cwikla or
 
19
 * Wolfram Research, Inc be liable for any special, indirect or
 
20
 * consequential damages or any damages whatsoever resulting from loss of
 
21
 * use, data or profits, whether in an action of contract, negligence or
 
22
 * other tortious action, arising out of or in connection with the use or
 
23
 * performance of this software.
 
24
 *
 
25
 * Author:
 
26
 *  John L. Cwikla
 
27
 *  X Programmer
 
28
 *  Wolfram Research Inc.
 
29
 *
 
30
 *  cwikla@wri.com
 
31
*/
 
32
 
 
33
#ifndef _DumbClip_h
 
34
#define _DumbClip_h
 
35
 
 
36
#include <Xm/Xm.h>
 
37
#include <Xm/BulletinB.h>
 
38
 
 
39
extern WidgetClass xmDumbClipWidgetClass;
 
40
 
 
41
typedef struct _XmDumbClipRec *XmDumbClipWidget;
 
42
typedef struct _XmDumbClipConstraintRec *XmDumbClipConstraint;
 
43
 
 
44
#ifndef XmIsDumbClip
 
45
#define XmIsDumbClip(a) (XtIsSubclass(a, xmDumbClipWidgetClass))
 
46
#endif
 
47
 
 
48
typedef struct _XmDumbClipCallbackStruct
 
49
{
 
50
        int reason;
 
51
        XEvent *event;
 
52
        Dimension width, height;
 
53
} XmDumbClipCallbackStruct;
 
54
 
 
55
#ifdef _NO_PROTO
 
56
Widget XmCreateDumbClip();
 
57
#else
 
58
Widget XmCreateDumbClip(Widget _parent, char *_name, ArgList _warg, Cardinal _numWarg);
 
59
#endif /* _NO_PROTO */
 
60
 
 
61
#endif /* _DumpClip_h */