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 /test/dw_table_aligned.cc | |
parent | 642f9b3e747859a7256ea12fab9f9ed50aa9253a (diff) |
- Moved the dw2 tree into dillo2's tree.
Diffstat (limited to 'test/dw_table_aligned.cc')
-rw-r--r-- | test/dw_table_aligned.cc | 119 |
1 files changed, 119 insertions, 0 deletions
diff --git a/test/dw_table_aligned.cc b/test/dw_table_aligned.cc new file mode 100644 index 00000000..beb8525d --- /dev/null +++ b/test/dw_table_aligned.cc @@ -0,0 +1,119 @@ +/* + * 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/table.hh" +#include "../dw/tablecell.hh" + +using namespace dw; +using namespace dw::core; +using namespace dw::core::style; +using namespace dw::fltk; + +int main(int argc, char **argv) +{ + FltkPlatform *platform = new FltkPlatform (); + Layout *layout = new Layout (platform); + + ::fltk::Window *window = new ::fltk::Window(200, 300, "Dw Table Aligned"); + window->begin(); + + FltkViewport *viewport = new FltkViewport (0, 0, 200, 300); + layout->attachView (viewport); + + StyleAttrs styleAttrs; + styleAttrs.initValues (); + styleAttrs.margin.setVal (5); + styleAttrs.borderWidth.setVal (1); + styleAttrs.setBorderStyle (BORDER_OUTSET); + styleAttrs.setBorderColor (Color::createShaded (layout, 0x808080)); + + FontAttrs fontAttrs; + fontAttrs.name = "Bitstream Charter"; + fontAttrs.size = 14; + fontAttrs.weight = 400; + fontAttrs.style = FONT_STYLE_NORMAL; + styleAttrs.font = Font::create (layout, &fontAttrs); + + styleAttrs.color = Color::createSimple (layout, 0x000000); + styleAttrs.backgroundColor = Color::createSimple (layout, 0xa0a0a0); + styleAttrs.hBorderSpacing = 5; + styleAttrs.vBorderSpacing = 5; + + Style *tableStyle = Style::create (layout, &styleAttrs); + + Table *table = new Table (false); + table->setStyle (tableStyle); + layout->setWidget (table); + + tableStyle->unref(); + + styleAttrs.borderWidth.setVal (1); + styleAttrs.setBorderStyle (BORDER_INSET); + + Style *cellStyle = Style::create (layout, &styleAttrs); + + styleAttrs.borderWidth.setVal (0); + styleAttrs.margin.setVal (0); + styleAttrs.backgroundColor = NULL; + styleAttrs.cursor = CURSOR_TEXT; + styleAttrs.textAlignChar = '.'; + + Style *wordStyle = Style::create (layout, &styleAttrs); + + TableCell *ref = NULL; + for(int i = 0; i < 10; i++) { + //for(int i = 0; i < 1; i++) { + TableCell *cell = new TableCell (ref, false); + cell->setStyle (cellStyle); + ref = cell; + table->addRow (wordStyle); + table->addCell (cell, 1, 1); + + char buf[16]; + for(int j = 0; j < i; j++) + buf[j] = '0' + j; + buf[i] = '.'; + for(int j = i + 1; j < 11; j++) + buf[j] = '0' + (j - 1); + buf[11] = 0; + + cell->addText (buf, wordStyle); + cell->flush (); + } + + wordStyle->unref(); + cellStyle->unref(); + + window->resizable(viewport); + window->show(); + int errorCode = ::fltk::run(); + + delete layout; + + return errorCode; +} |