blob: 8351422ecd0d8e1a17f8e1feb465eef84d744382 (
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
|
//
// Copyright 2006 Johannes Hofmann <Johannes.Hofmann@gmx.de>
//
// This software may be used and distributed according to the terms
// of the GNU General Public License, incorporated herein by reference.
#ifndef PREVIEWOUTPUTIMAGE_H
#define PREVIEWOUTPUTIMAGE_H
#include <stdio.h>
#include <FL/Fl_Widget.H>
#include <FL/Fl_Image.H>
#include "OutputImage.H"
class PreviewOutputImage : public OutputImage , public Fl_Widget {
private:
uchar *data;
int d;
protected:
int init_internal();
int set_pixel_internal(int x, int r, int g, int b);
int next_line_internal();
public:
PreviewOutputImage(int X, int Y, int W, int H);
~PreviewOutputImage();
void draw();
};
#endif
|