X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Froot.cpp;h=16ed5bd58c1d9f94a22236b8900c1db8a1be0831;hb=HEAD;hp=ad1ca5b7936cbef133056a0aa7296d7474055b6f;hpb=7d8609bec44adcab67b0c1a78d560ef76afded8d;p=libs%2Fgltk.git diff --git a/source/root.cpp b/source/root.cpp index ad1ca5b..16ed5bd 100644 --- a/source/root.cpp +++ b/source/root.cpp @@ -1,62 +1,48 @@ #include -#include -#include -#include -#include #include #include #include "label.h" #include "style.h" +#include "resources.h" #include "root.h" #include "systemkeyboardinput.h" +using namespace std; + namespace Msp { namespace GLtk { -Root::Root(Resources &r, Graphics::Window &window): - resources(r), - keyboard(new Input::Keyboard(window)), - input_method(0), - mouse(new Input::Mouse(window)), - touchscreen(0), - own_input(true) +Root::Root(Resources &r, Graphics::Window &window, unique_ptr k, unique_ptr m): + Root(r, &window, k.get(), m.get(), nullptr) { - init(&window); + own_input[0] = move(k); + own_input[1] = move(m); } +Root::Root(Resources &r, Graphics::Window &window): + Root(r, window, make_unique(window), make_unique(window)) +{ } + Root::Root(Resources &r, Graphics::Window *window, Input::Keyboard *k, Input::Mouse *m, Input::Touchscreen *t): resources(r), keyboard(k), - input_method(0), mouse(m), - touchscreen(t), - own_input(false) -{ - init(window); -} - -void Root::init(Graphics::Window *window) + touchscreen(t) { if(window) set_geometry(Geometry(0, 0, window->get_width(), window->get_height())); - lbl_tooltip = 0; - tooltip_target = 0; - camera.set_orthographic(geom.w, geom.h); update_camera(); - if(GL::ARB_shader_objects) - { - shprog = new GL::Program; - GL::ProgramBuilder::StandardFeatures features; - features.material = true; - features.texture = true; - GL::ProgramBuilder(features).add_shaders(*shprog); - shprog->link(); - } - else - shprog = 0; + shprog = &resources.get("ui.shader"); + + blend.enabled = true; + blend.src_factor = GL::SRC_ALPHA; + blend.dst_factor = GL::ONE_MINUS_SRC_ALPHA; + + if(keyboard) + set_state(FOCUS); update_style(); @@ -68,7 +54,7 @@ void Root::init(Graphics::Window *window) } if(keyboard && !input_method) - input_method = new SystemKeyboardInput(*this, *keyboard); + input_method = make_unique(*this, *keyboard); if(touchscreen) { @@ -78,17 +64,6 @@ void Root::init(Graphics::Window *window) } } -Root::~Root() -{ - delete shprog; - delete input_method; - if(own_input) - { - delete keyboard; - delete mouse; - } -} - void Root::tick() { Time::TimeStamp t = Time::now(); @@ -100,7 +75,7 @@ void Root::tick() if(tooltip_timeout && Time::now()>tooltip_timeout) { std::string tip; - if(Widget *wdg = get_descendant_at(pointer_x, pointer_y)) + if(Widget *wdg = find_descendant_at(pointer_x, pointer_y)) { tip = wdg->get_tooltip(); tooltip_target = wdg; @@ -115,8 +90,7 @@ void Root::tick() { if(!lbl_tooltip) { - lbl_tooltip = new Label; - add(*lbl_tooltip); + lbl_tooltip = &add_new