2002-11-16 02:15:49 +00:00
|
|
|
#include "application.hh"
|
2002-11-13 10:22:04 +00:00
|
|
|
#include "focuswidget.hh"
|
2002-11-16 14:30:18 +00:00
|
|
|
#include "appwidget.hh"
|
2002-11-14 11:44:14 +00:00
|
|
|
#include "button.hh"
|
2002-11-11 03:49:09 +00:00
|
|
|
|
2002-11-16 02:15:49 +00:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
otk::OtkApplication app(argc, argv);
|
2002-11-11 03:49:09 +00:00
|
|
|
|
2002-11-16 14:30:18 +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);
|
2002-11-16 02:15:49 +00:00
|
|
|
foo.setTexture(app.getStyle()->getTitleFocus());
|
2002-11-16 14:30:18 +00:00
|
|
|
// 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);
|
2002-11-16 02:15:49 +00:00
|
|
|
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);
|
2002-11-16 02:15:49 +00:00
|
|
|
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);
|
|
|
|
|
2002-11-13 10:22:04 +00:00
|
|
|
// 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);
|
2002-11-16 02:15:49 +00:00
|
|
|
label.setTexture(app.getStyle()->getLabelFocus());
|
|
|
|
label.setUnfocusTexture(app.getStyle()->getLabelUnfocus());
|
2002-11-11 03:49:09 +00:00
|
|
|
|
2002-11-13 10:22:04 +00:00
|
|
|
// fixed size
|
2002-11-14 11:44:14 +00:00
|
|
|
maxb.setText("bar");
|
2002-11-13 10:22:04 +00:00
|
|
|
|
|
|
|
// fixed size
|
2002-11-14 11:44:14 +00:00
|
|
|
closeb.setText("fuubar");
|
2002-11-13 10:22:04 +00:00
|
|
|
|
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);
|
2002-11-16 02:15:49 +00:00
|
|
|
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");
|
|
|
|
|
2002-11-13 10:22:04 +00:00
|
|
|
// will recursively unfocus its children
|
2002-11-13 10:39:04 +00:00
|
|
|
//foo.unfocus();
|
2002-11-16 02:15:49 +00:00
|
|
|
|
2002-11-11 03:49:09 +00:00
|
|
|
foo.show();
|
|
|
|
|
2002-11-16 02:15:49 +00:00
|
|
|
app.exec();
|
2002-11-11 08:42:19 +00:00
|
|
|
|
2002-11-11 03:49:09 +00:00
|
|
|
return 0;
|
|
|
|
}
|