File: AfterImage.h

package info (click to toggle)
xfireworks 1.3-8
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 460 kB
  • ctags: 498
  • sloc: ansic: 3,229; makefile: 204; sh: 40
file content (45 lines) | stat: -rw-r--r-- 1,989 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*****************************************************************************/
/* ֲФζ̤λ򰷤饹                                                */
/*****************************************************************************/

#ifndef _XFIREWORKS_AfterImage_h_INCLUDED_
#define _XFIREWORKS_AfterImage_h_INCLUDED_

typedef struct _AfterImages * AfterImages;

#include <X11/Xlib.h>

#include "Obj.h"

/*===========================================================================*/
/* Фμ                                                              */
/*===========================================================================*/

int AfterImages_GetArraySize(AfterImages after_images);
int AfterImages_GetNumber(AfterImages after_images);
XArc * AfterImages_GetArcs(AfterImages after_images);

/*===========================================================================*/
/* ֥ȤȺ                                                  */
/*===========================================================================*/

int AfterImages_Initialize(AfterImages after_images,
			   int size, int number, double * x, double * y,
			   int x_min, int y_min, int x_max, int y_max,
			   ObjList list);
AfterImages AfterImages_Create(int size, int number, double * x, double * y,
			       int x_min, int y_min, int x_max, int y_max,
			       ObjList list);
AfterImages AfterImages_Destroy(AfterImages after_images);

/*===========================================================================*/
/* ߤοͤGC֤current ˿ʤ롥(Ǹˤ NULL ֤)  */
/*===========================================================================*/

GC AfterImages_GetGC(AfterImages after_images);

#endif

/*****************************************************************************/
/* End of File.                                                              */
/*****************************************************************************/