~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to lefty/gfxview.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This software may only be used by you under license from AT&T Corp.
 
3
    ("AT&T").  A copy of AT&T's Source Code Agreement is available at
 
4
    AT&T's Internet website having the URL:
 
5
    <http://www.research.att.com/sw/tools/graphviz/license/source.html>
 
6
    If you received this software without first entering into a license
 
7
    with AT&T, you have an infringing copy of this software and cannot use
 
8
    it without violating AT&T's intellectual property rights.
 
9
*/
 
10
 
 
11
#pragma prototyped
 
12
/* Lefteris Koutsofios - AT&T Bell Laboratories */
 
13
 
 
14
#ifndef _GFXVIEW_H
 
15
#define _GFXVIEW_H
 
16
void GFXinit (void);
 
17
void GFXterm (void);
 
18
void GFXprune (void);
 
19
void GFXlabelcb (Gevent_t *);
 
20
void GFXviewcb (Gevent_t *);
 
21
void GFXevent (Gevent_t *);
 
22
void GFXmove (void);
 
23
void GFXredraw (void);
 
24
void GFXtextcb (int, char *);
 
25
void GFXbuttoncb (int, void *);
 
26
void GFXmonitorfile (int);
 
27
void GFXidle (void);
 
28
 
 
29
int GFXcreatewidget (int, lvar_t *);
 
30
int GFXsetwidgetattr (int, lvar_t *);
 
31
int GFXgetwidgetattr (int, lvar_t *);
 
32
int GFXdestroywidget (int, lvar_t *);
 
33
int GFXclear (int, lvar_t *);
 
34
int GFXsetgfxattr (int, lvar_t *);
 
35
int GFXgetgfxattr (int, lvar_t *);
 
36
int GFXarrow (int, lvar_t *);
 
37
int GFXline (int, lvar_t *);
 
38
int GFXbox (int, lvar_t *);
 
39
int GFXpolygon (int, lvar_t *);
 
40
int GFXsplinegon (int, lvar_t *);
 
41
int GFXarc (int, lvar_t *);
 
42
int GFXtext (int, lvar_t *);
 
43
int GFXtextsize (int, lvar_t *);
 
44
int GFXcreatebitmap (int, lvar_t *);
 
45
int GFXdestroybitmap (int, lvar_t *);
 
46
int GFXreadbitmap (int, lvar_t *);
 
47
int GFXwritebitmap (int, lvar_t *);
 
48
int GFXbitblt (int, lvar_t *);
 
49
int GFXclearpick (int, lvar_t *);
 
50
int GFXsetpick (int, lvar_t *);
 
51
int GFXdisplaymenu (int, lvar_t *);
 
52
#endif /* _GFXVIEW_H */