Numworks Epsilon  1.4.1
Graphing Calculator Operating System
fltklcd.h
Go to the documentation of this file.
1 #ifndef ION_FLTK_LCD
2 #define ION_FLTK_LCD
3 
4 #include <FL/Fl_Widget.H>
5 #include <kandinsky.h>
6 
7 class FltkLCD : public Fl_Widget {
8  public:
9  FltkLCD(int x, int y, int w, int h, KDColor * rgb565FrameBuffer);
10  ~FltkLCD();
11  protected:
12  void draw();
13  private:
14  KDColor * m_rgb565frameBufferStart;
15  KDColor * m_rgb565frameBufferEnd;
16  void * m_rgb888frameBufferStart;
17 };
18 
19 #endif
Definition: fltklcd.h:7
void draw()
Definition: fltklcd.cpp:17
~FltkLCD()
Definition: fltklcd.cpp:13
Definition: color.h:6
FltkLCD(int x, int y, int w, int h, KDColor *rgb565FrameBuffer)
Definition: fltklcd.cpp:5