Mercurial > dillo_port1.3
view test/dw_find_test.cc @ 503:00b31843839b
implement various apply() methods
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> |
---|---|
date | Wed, 29 Oct 2008 16:44:28 +0100 |
parents | e5955ab8dafb |
children | b6ef23efdac7 |
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 <fltk/Window.h> #include <fltk/run.h> #include "../dw/core.hh" #include "../dw/fltkcore.hh" #include "../dw/fltkviewport.hh" #include "../dw/textblock.hh" using namespace lout::container::typed; using namespace dw; using namespace dw::core; using namespace dw::core::style; using namespace dw::fltk; static FltkPlatform *platform; static Layout *layout; static ::fltk::Window *window; static FltkViewport *viewport; static ::fltk::Button *findButton, *resetButton; static ::fltk::Widget *resultLabel; static void findCallback (::fltk::Widget *widget, void *data) { //switch(layout->search ("worm", true)) { switch(layout->search ("WORM", false)) { case FindtextState::SUCCESS: resultLabel->label("SUCCESS"); break; case FindtextState::RESTART: resultLabel->label("RESTART"); break; case FindtextState::NOT_FOUND: resultLabel->label("NOT_FOUND"); break; } resultLabel->redraw (); } static void resetCallback (::fltk::Widget *widget, void *data) { layout->resetSearch (); resultLabel->label("---"); resultLabel->redraw (); } int main(int argc, char **argv) { platform = new FltkPlatform (); layout = new Layout (platform); window = new ::fltk::Window(200, 300, "Dw Find Test"); window->begin(); viewport = new FltkViewport (0, 0, 200, 280); layout->attachView (viewport); findButton = new ::fltk::Button(0, 280, 50, 20, "Find"); findButton->callback (findCallback, NULL); findButton->when (::fltk::WHEN_RELEASE); resetButton = new ::fltk::Button(50, 280, 50, 20, "Reset"); resetButton->callback (resetCallback, NULL); resetButton->when (::fltk::WHEN_RELEASE); resultLabel = new ::fltk::Widget(100, 280, 100, 20, "---"); FontAttrs fontAttrs; fontAttrs.name = "Bitstream Charter"; fontAttrs.size = 14; fontAttrs.weight = 400; fontAttrs.style = FONT_STYLE_NORMAL; StyleAttrs styleAttrs; styleAttrs.initValues (); styleAttrs.font = Font::create (layout, &fontAttrs); styleAttrs.margin.setVal (10); styleAttrs.color = Color::createSimple (layout, 0x000000); styleAttrs.backgroundColor = Color::createSimple (layout, 0xffffff); Style *topWidgetStyle = Style::create (layout, &styleAttrs); styleAttrs.margin.setVal (0); styleAttrs.margin.left = 30; styleAttrs.backgroundColor = NULL; Style *widgetStyle = Style::create (layout, &styleAttrs); styleAttrs.margin.left = 0; Style *wordStyle = Style::create (layout, &styleAttrs); Textblock *textblock = new Textblock (false); textblock->setStyle (topWidgetStyle); layout->setWidget (textblock); Stack <Textblock> *stack = new Stack <Textblock> (false); stack->push (textblock); for(int i = 0; i < 10; i++) for(int j = 0; j < 10; j++) { Textblock *current; if(j < 5) { current = new Textblock (false); stack->getTop()->addWidget (current, widgetStyle); stack->push (current); } else { stack->getTop()->flush (); stack->pop (); current = stack->getTop (); } current->addText ((i == j ? "worm" : "apple"), wordStyle); current->addLinebreak (wordStyle); } stack->getTop()->flush (); topWidgetStyle->unref (); widgetStyle->unref (); wordStyle->unref (); window->resizable(viewport); window->show(); int errorCode = ::fltk::run(); delete layout; return errorCode; }