Changes between Version 7 and Version 8 of XBL2UseCases


Ignore:
Timestamp:
Dec 16, 2010 1:21:04 PM (13 years ago)
Author:
Dimitri Glazkov
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • XBL2UseCases

    v7 v8  
    6969 * Suppose the widget system has a centralized "settings" widget, with which all other widgets should communicate to add their settings. Implement this communication, provided that all widgets are opaque elements.
    7070 * Implement a "tab set" widget. As you add "tabs" to it, tab titles appear in a row at the top, and tab contents appear in the main area, only visible when the corresponding tab title is selected.
     71 * '''Output ports need to be insertion points, not cointainers'''. If the output port is a container (that is, an existing element in the shadow subtree is designated as a place to add the "light" nodes), some layout scenarios aren't possible. For example, for subtree, you can not use flexbox to layout all of the paragraphs in the story:
     72{{{
     73<template>
     74    <p>Once upon a time,
     75    <content includes="p">
     76    <p>And they lived happily ever after
     77</template>
     78}}}
     79
    7180
    7281=== Layout Manager ===