GithubHelp home page GithubHelp logo

Comments (1)

gyscos avatar gyscos commented on June 6, 2024 1

Hi, and thanks for the report!

I agree, the documentation could absolutely be improved. In the meantime, here's a small description.

In theory, both required_size and layout can be called at any times. Note that after calling layout(), we should only call draw() with a printer of the same size as the last call to layout.

In practice, this is up to the various views in the tree to respect that. The current views builtin cursive itself mostly follow the following rules:

  • layout() is called on the parent view once per layout cycle. Most view implement this by first asking the child view about its requirements (required_size), then calling layout with this requirement (or a variation thereof).
  • Most views implement required_size by calling required_size ~once on their children.
  • From this, it follows that a view could receive many calls to required_size in a layout cycle, and one call to layout at the end of this cycle (usually followed by a call to draw()).

There are variations to this rule: some views disregard their children's requirements and will not even call required_size on them, but will call layout(). Some views will call required_size multiple times to find out a correct size to give the children (LinearLayout). Some views may try to cache the requirements and reduce the number of calls to required_size - though that's still a work in progress.

In the end, I think view implementations should be robust to random required_size calls, each with potentially different requirements. View::layout() is where the real commitment is.

from cursive.

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.