blob: 84de996a62bc683213bca183ce2f23f153bf1d11 (
plain)
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
46
47
48
49
50
51
52
53
54
55
|
/*
surface base class
Copyright (C) 2000 Martin Vogt
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation.
For more information look at the file COPYRIGHT in this package
*/
#ifndef __SURFACE_H
#define __SURFACE_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "yuvPicture.h"
class ImageBase;
class Surface {
public:
Surface();
virtual ~Surface();
virtual int isOpen();
virtual int open(int width, int height,const char *title, bool border=false);
virtual int close();
virtual int getHeight();
virtual int getWidth();
virtual int getDepth();
virtual int getImageMode();
virtual int x11WindowId();
virtual ImageBase *findImage(int imageMode);
virtual int openImage(int mode, YUVPicture* pic = NULL);
virtual int closeImage();
virtual int dither(YUVPicture* pic);
virtual int putImage(YUVPicture* pic);
virtual int checkEvent(int* mode);
// config surface
virtual void config(const char* key,
const char* value,void* user_data);
};
#endif
|