diff options
author | jcid <devnull@localhost> | 2008-09-24 18:44:40 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-24 18:44:40 +0200 |
commit | c377e06400f138325a9a9d43d91a9272691867a1 (patch) | |
tree | 49f3ca1c46af11a058a68714899d4137ec717618 /dw/fltkflatview.cc | |
parent | 642f9b3e747859a7256ea12fab9f9ed50aa9253a (diff) |
- Moved the dw2 tree into dillo2's tree.
Diffstat (limited to 'dw/fltkflatview.cc')
-rw-r--r-- | dw/fltkflatview.cc | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/dw/fltkflatview.cc b/dw/fltkflatview.cc new file mode 100644 index 00000000..7f5f88a6 --- /dev/null +++ b/dw/fltkflatview.cc @@ -0,0 +1,108 @@ +/* + * Dillo Widget + * + * Copyright 2005-2007 Sebastian Geerken <sgeerken@dillo.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + + + +#include "fltkflatview.hh" + +#include <fltk/draw.h> +#include <fltk/events.h> + +#include <stdio.h> + +using namespace fltk; +using namespace lout::container::typed; + +namespace dw { +namespace fltk { + +FltkFlatView::FltkFlatView (int x, int y, int w, int h, const char *label): + FltkWidgetView (x, y, w, h, label) +{ +} + +FltkFlatView::~FltkFlatView () +{ +} + +void FltkFlatView::setCanvasSize (int width, int ascent, int descent) +{ + /** + * \bug It has to be clarified, who is responsible for setting the + * FLTK widget size. In the only used context (complex buttons), + * it is done elsewhere. + */ + +#if 0 + FltkWidgetView::setCanvasSize (width, ascent, descent); + + w (width); + h (ascent + descent); +#endif +} + +bool FltkFlatView::usesViewport () +{ + return false; +} + +int FltkFlatView::getHScrollbarThickness () +{ + return 0; +} + +int FltkFlatView::getVScrollbarThickness () +{ + return 0; +} + +void FltkFlatView::scrollTo (int x, int y) +{ +} + +void FltkFlatView::setViewportSize (int width, int height, + int hScrollbarThickness, + int vScrollbarThickness) +{ +} + +int FltkFlatView::translateViewXToCanvasX (int x) +{ + return x; +} + +int FltkFlatView::translateViewYToCanvasY (int y) +{ + return y; +} + +int FltkFlatView::translateCanvasXToViewX (int x) +{ + return x; +} + +int FltkFlatView::translateCanvasYToViewY (int y) +{ + return y; +} + + +} // namespace fltk +} // namespace dw |