Mercurial > dillo_port1.3
view dw/fltkflatview.hh @ 1738:7974b38cc036
use background-color on <html>-element
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Mon, 11 Oct 2010 23:36:36 +0200 |
parents | b277eed3119c |
children | 6aa55383f7f3 |
line wrap: on
line source
#ifndef __DW_FLTKFLATVIEW_HH__ #define __DW_FLTKFLATVIEW_HH__ #include <fltk/Group.h> #include <fltk/Scrollbar.h> #include "core.hh" #include "fltkcore.hh" #include "fltkviewbase.hh" namespace dw { namespace fltk { class FltkFlatView: public FltkWidgetView { protected: int translateViewXToCanvasX (int x); int translateViewYToCanvasY (int y); int translateCanvasXToViewX (int x); int translateCanvasYToViewY (int y); public: FltkFlatView (int x, int y, int w, int h, const char *label = 0); ~FltkFlatView (); void setCanvasSize (int width, int ascent, int descent); bool usesViewport (); int getHScrollbarThickness (); int getVScrollbarThickness (); void scrollTo (int x, int y); void setViewportSize (int width, int height, int hScrollbarThickness, int vScrollbarThickness); }; } // namespace fltk } // namespace dw #endif // __DW_FLTKFLATVIEW_HH__