openbox/otk/otk_test.cc

78 lines
2 KiB
C++
Raw Normal View History

#include "application.hh"
#include "focuswidget.hh"
#include "appwidget.hh"
2002-11-14 11:44:14 +00:00
#include "button.hh"
2002-11-11 03:49:09 +00:00
int main(int argc, char **argv) {
otk::OtkApplication app(argc, argv);
2002-11-11 03:49:09 +00:00
otk::OtkAppWidget foo(&app);
2002-11-11 03:49:09 +00:00
2002-11-15 05:02:07 +00:00
foo.resize(600, 500);
foo.setTexture(app.getStyle()->getTitleFocus());
// foo.setUnfocusTexture(app.getStyle()->getTitleUnfocus());
2002-11-11 03:49:09 +00:00
2002-11-15 05:02:07 +00:00
foo.setBevelWidth(2);
foo.setDirection(otk::OtkWidget::Horizontal);
otk::OtkFocusWidget left(&foo);
otk::OtkFocusWidget right(&foo);
left.setDirection(otk::OtkWidget::Horizontal);
left.setStretchableVert(true);
left.setStretchableHorz(true);
left.setTexture(app.getStyle()->getTitleFocus());
left.setUnfocusTexture(app.getStyle()->getTitleUnfocus());
2002-11-15 05:02:07 +00:00
right.setDirection(otk::OtkWidget::Vertical);
right.setBevelWidth(10);
right.setStretchableVert(true);
right.setWidth(300);
right.setTexture(app.getStyle()->getTitleFocus());
right.setUnfocusTexture(app.getStyle()->getTitleUnfocus());
2002-11-15 05:02:07 +00:00
otk::OtkButton iconb(&left);
2002-11-16 13:21:24 +00:00
iconb.resize(40,20);
2002-11-15 05:02:07 +00:00
otk::OtkFocusWidget label(&left);
otk::OtkButton maxb(&left);
otk::OtkButton closeb(&left);
// fixed size
2002-11-14 11:44:14 +00:00
iconb.setText("foo");
2002-11-16 13:21:24 +00:00
iconb.press(Button1);
2002-11-11 03:49:09 +00:00
2002-11-13 10:39:04 +00:00
// fix width to 60 and let the height be calculated by its parent
2002-11-15 05:02:07 +00:00
//label.setHeight(20);
2002-11-13 10:39:04 +00:00
label.setStretchableVert(true);
2002-11-15 05:02:07 +00:00
label.setStretchableHorz(true);
label.setTexture(app.getStyle()->getLabelFocus());
label.setUnfocusTexture(app.getStyle()->getLabelUnfocus());
2002-11-11 03:49:09 +00:00
// fixed size
2002-11-14 11:44:14 +00:00
maxb.setText("bar");
// fixed size
2002-11-14 11:44:14 +00:00
closeb.setText("fuubar");
2002-11-15 05:02:07 +00:00
otk::OtkFocusWidget rblef(&right);
otk::OtkButton rbutt1(&right);
otk::OtkButton rbutt2(&right);
rblef.setStretchableHorz(true);
rblef.setHeight(50);
rblef.setTexture(app.getStyle()->getHandleFocus());
rblef.setUnfocusTexture(app.getStyle()->getHandleUnfocus());
2002-11-15 05:02:07 +00:00
rbutt1.setText("this is fucking tight");
rbutt2.setText("heh, WOOP");
// will recursively unfocus its children
2002-11-13 10:39:04 +00:00
//foo.unfocus();
2002-11-11 03:49:09 +00:00
foo.show();
app.exec();
2002-11-11 08:42:19 +00:00
2002-11-11 03:49:09 +00:00
return 0;
}