Mercurial > dillo_port1.3
view dw/ruler.cc @ 562:145b8a4d65b3
tag -> element
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Wed, 12 Nov 2008 16:17:35 +0100 |
parents | e5955ab8dafb |
children | b277eed3119c |
line wrap: on
line source
/* * 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 "ruler.hh" #include "../lout/misc.hh" #include <stdio.h> namespace dw { Ruler::Ruler () { unsetFlags (HAS_CONTENTS); } void Ruler::sizeRequestImpl (core::Requisition *requisition) { requisition->width = getStyle()->boxDiffWidth (); requisition->ascent = getStyle()->boxOffsetY (); requisition->descent = getStyle()->boxRestHeight (); } void Ruler::draw (core::View *view, core::Rectangle *area) { drawWidgetBox (view, area, false); } core::Iterator *Ruler::iterator (core::Content::Type mask, bool atEnd) { /** \todo TextIterator? */ return new core::EmptyIterator (this, mask, atEnd); } } // namespace dw