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

« back to all changes in this revision

Viewing changes to source/3rdparty/qmon/Xmt310/Xmt/Pixmap.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
 * Motif Tools Library, Version 3.1
 
3
 * $Id$
 
4
 * 
 
5
 * Written by David Flanagan.
 
6
 * Copyright (c) 1992-2001 by David Flanagan.
 
7
 * All Rights Reserved.  See the file COPYRIGHT for details.
 
8
 * This is open source software.  See the file LICENSE for details.
 
9
 * There is no warranty for this software.  See NO_WARRANTY for details.
 
10
 *
 
11
 * $Log$
 
12
 * Revision 1.1.1.1  2001/07/18 11:06:02  root
 
13
 * Initial checkin.
 
14
 *
 
15
 * Revision 1.2  2001/06/12 16:25:28  andre
 
16
 * *** empty log message ***
 
17
 *
 
18
 *
 
19
 */
 
20
 
 
21
#ifndef _XmtPixmap_h
 
22
#define _XmtPixmap_h
 
23
 
 
24
#include <Xmt/Xpm.h>
 
25
#include <Xmt/Color.h>
 
26
 
 
27
/*
 
28
 * The names of special branches of the resource database
 
29
 * that XmtGetBitmap() and XmtGetPixmap() will search for
 
30
 * bitmap and pixmap definitions.
 
31
 */
 
32
#define XmtNxmtPixmaps          "_Pixmaps_"
 
33
#define XmtNxmtBitmaps          "_Bitmaps_"
 
34
 
 
35
_XFUNCPROTOBEGIN
 
36
#if NeedFunctionPrototypes
 
37
extern void XmtRegisterXbmData(StringConst, char *, char *, int, int, int,int);
 
38
extern void XmtRegisterImage(StringConst, XmtImage *);
 
39
extern Pixmap XmtLookupBitmap(Widget, StringConst);
 
40
extern Pixmap XmtLookupPixmap(Widget, Visual *, Colormap, unsigned int,
 
41
                              XmtColorTable, StringConst);
 
42
extern Pixmap XmtLookupSimplePixmap(Widget, XmtColorTable, StringConst);
 
43
extern Pixmap XmtLookupWidgetPixmap(Widget, StringConst);
 
44
extern Pixmap XmtLookupBitmask(Widget, StringConst);
 
45
extern void XmtReleasePixmap(Widget, Pixmap);
 
46
extern Pixmap XmtGetBitmap(Widget, StringConst);
 
47
extern Pixmap XmtGetPixmap(Widget, XmtColorTable, StringConst);
 
48
extern void XmtRegisterImprovedIcons(Widget, XmtColorTable);
 
49
#else
 
50
extern void XmtRegisterXbmData();
 
51
extern void XmtRegisterImage();
 
52
extern Pixmap XmtLookupBitmap();
 
53
extern Pixmap XmtLookupPixmap();
 
54
extern Pixmap XmtLookupSimplePixmap();
 
55
extern Pixmap XmtLookupWidgetPixmap();
 
56
extern Pixmap XmtLookupBitmask();
 
57
extern void XmtReleasePixmap();
 
58
extern Pixmap XmtGetBitmap();
 
59
extern Pixmap XmtGetPixmap();
 
60
extern void XmtRegisterImprovedIcons();
 
61
#endif
 
62
_XFUNCPROTOEND
 
63
 
 
64
#endif