83 lines
2.1 KiB
C++
83 lines
2.1 KiB
C++
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "../config.h"
|
|
#endif
|
|
|
|
#include "application.hh"
|
|
#include "focuswidget.hh"
|
|
#include "appwidget.hh"
|
|
#include "button.hh"
|
|
|
|
int main(int argc, char **argv) {
|
|
otk::Application app(argc, argv);
|
|
|
|
otk::AppWidget foo(&app);
|
|
|
|
foo.resize(600, 500);
|
|
foo.setTexture(app.getStyle()->titlebarFocusBackground());
|
|
// foo.setUnfocusTexture(app.getStyle()->titlebarUnfocusBackground());
|
|
|
|
foo.setBevelWidth(2);
|
|
foo.setDirection(otk::Widget::Horizontal);
|
|
|
|
otk::FocusWidget left(&foo);
|
|
otk::FocusWidget right(&foo);
|
|
|
|
left.setDirection(otk::Widget::Horizontal);
|
|
left.setStretchableVert(true);
|
|
left.setStretchableHorz(true);
|
|
left.setTexture(app.getStyle()->titlebarFocusBackground());
|
|
left.setUnfocusTexture(app.getStyle()->titlebarUnfocusBackground());
|
|
|
|
right.setDirection(otk::Widget::Vertical);
|
|
right.setBevelWidth(10);
|
|
right.setStretchableVert(true);
|
|
right.setWidth(300);
|
|
right.setTexture(app.getStyle()->titlebarFocusBackground());
|
|
right.setUnfocusTexture(app.getStyle()->titlebarUnfocusBackground());
|
|
otk::Button iconb(&left);
|
|
iconb.resize(40,20);
|
|
|
|
/* otk::FocusWidget label(&left);
|
|
otk::Button maxb(&left);
|
|
otk::Button closeb(&left);
|
|
|
|
// fixed size
|
|
iconb.setText("foo");
|
|
iconb.press(Button1);
|
|
|
|
// fix width to 60 and let the height be calculated by its parent
|
|
//label.setHeight(20);
|
|
label.setStretchableVert(true);
|
|
label.setStretchableHorz(true);
|
|
label.setTexture(app.getStyle()->labelFocusBackground());
|
|
label.setUnfocusTexture(app.getStyle()->labelUnfocusBackground());
|
|
|
|
// fixed size
|
|
maxb.setText("bar");
|
|
|
|
// fixed size
|
|
closeb.setText("fuubar");
|
|
*/
|
|
otk::FocusWidget rblef(&right);
|
|
otk::Button rbutt1(&right);
|
|
otk::Button rbutt2(&right);
|
|
|
|
rblef.setStretchableHorz(true);
|
|
rblef.setHeight(50);
|
|
rblef.setTexture(app.getStyle()->handleFocusBackground());
|
|
rblef.setUnfocusTexture(app.getStyle()->handleUnfocusBackground());
|
|
|
|
rbutt1.setText("this is fucking tight");
|
|
rbutt2.setText("heh, WOOP");
|
|
|
|
// will recursively unfocus its children
|
|
//foo.unfocus();
|
|
|
|
foo.show();
|
|
|
|
app.run();
|
|
|
|
return 0;
|
|
}
|