X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=otk%2Fotk_test.cc;h=f10c4b3bb3651532af1788ea8050ee99828a3148;hb=dca8c61a91cab29128a72f252b70f4bd9f7786ff;hp=7c0dd5eb4f2ee6d2ffffa9ed3c1dda509ade7600;hpb=9c398557df14070747d8eb96d4d19c0643a65cd0;p=chaz%2Fopenbox diff --git a/otk/otk_test.cc b/otk/otk_test.cc index 7c0dd5eb..f10c4b3b 100644 --- a/otk/otk_test.cc +++ b/otk/otk_test.cc @@ -1,60 +1,36 @@ -#include "widget.hh" -#include "display.hh" -#include "configuration.hh" -#include "timerqueuemanager.hh" -#include "image.hh" -#include "style.hh" - -#include - -int main(void) { - otk::OBDisplay::initialize(NULL); - otk::Configuration style_conf(False); - otk::OBTimerQueueManager *tm = new otk::OBTimerQueueManager(); - const otk::ScreenInfo *s_info = - otk::OBDisplay::screenInfo(DefaultScreen(otk::OBDisplay::display)); - otk::BImageControl *ctrl = new otk::BImageControl(tm, s_info, True, 4, 5, 200); - - otk::Style *my_style = new otk::Style(0ul, ctrl); - - const char *sfile = "/usr/local/share/openbox/styles/artwiz"; - - style_conf.setFile(sfile); - style_conf.load(); - - my_style->load(style_conf); +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- - otk::OtkWidget foo(my_style); - otk::OtkWidget bar(&foo); - otk::OtkWidget baz(&foo); - otk::OtkWidget blef(&bar); +#include "config.h" - foo.setTexture(my_style->getButtonFocus()); - foo.setGeometry(0, 0, 100, 110); +#include "application.hh" +#include "appwidget.hh" +#include "label.hh" +#include "button.hh" - bar.setTexture(my_style->getLabelFocus()); - bar.setGeometry(10, 10, 80, 40); +int main(int argc, char **argv) { + otk::Application app(argc, argv); - baz.setTexture(my_style->getLabelFocus()); - baz.setGeometry(10, 60, 80, 40); - - blef.setTexture(my_style->getHandleFocus()); - blef.setGeometry(10, 10, 60, 20); + otk::AppWidget foo(&app, otk::Widget::Vertical, 3); + otk::Label lab(&foo); + otk::Label lab2(&foo); + otk::Button but(&foo); + otk::Button but2(&foo); + + foo.resize(otk::Size(100, 150)); + + lab.setText("Hi, I'm a sexy\nlabel!!!"); + lab.setMaxSize(otk::Size(0,0)); + lab2.setText("Me too!!"); + lab2.setBorderWidth(10); + lab2.setBorderColor(otk::RenderStyle::style(app.screen())->buttonFocusColor()); + but.setText("Im not the default button..."); + but2.setText("But I AM!!"); + but2.setHighlighted(true); + foo.show(); - while (1) { - if (XPending(otk::OBDisplay::display)) { - XEvent e; - XNextEvent(otk::OBDisplay::display, &e); - } - } - - delete my_style; - delete tm; - delete ctrl; - - otk::OBDisplay::destroy(); + app.run(); return 0; }