Giter Site home page Giter Site logo

Question about Layout about tgui HOT 4 CLOSED

texus avatar texus commented on August 26, 2024
Question about Layout

from tgui.

Comments (4)

texus avatar texus commented on August 26, 2024

I don't think the performance is that important, the string isn't evaluated every frame, only when you actually change the size or position of a widget. Performance can always be improved in the future, initially the most important thing is that it works.

What exactly do you mean by using lambda expressions? Using them where? Could you give a small example?

from tgui.

klusekrules avatar klusekrules commented on August 26, 2024

Now to counting dynamically we must write something like that:

label->setPosition({ "{&.h+(&.w-&.h-20)*0.715+5,3+(&.h-10)*0.05}" });

The same code with lambda expression:

label->setPosition({ [label]()->float { 
            auto w = label->getParent()->getSize().x;
            auto h = label->getParent()->getSize().y;
            return h + (w - h - 20) * 0.715 + 5;
        } },{ [label]()->float {
            auto h = label->getParent()->getSize().y;
            return 3 + (h - 10) * 0.05;
        }});

When we used to this lambda expression we have more possibilities. In lambda expression we can use function which we want. And there is no need to use parser.

from tgui.

texus avatar texus commented on August 26, 2024

At first I thought this was a great idea, it wouldn't even be that hard to implement. But then I realized that it can't work: there is no way the label could know when to recalculate its position.

from tgui.

klusekrules avatar klusekrules commented on August 26, 2024

What a pity! I see, we would have to manually add the signals, but it cause obfuscated code and it is potential place to make a mistake.

from tgui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.