<table><tr><td style="">masonm created this revision.<br />masonm added reviewers: Kirigami, mart.<br />Herald added a project: Kirigami.<br />masonm requested review of this revision.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D28468">View Revision</a></tr></table><br /><div><strong>REVISION SUMMARY</strong><div><p>Currently PagePool allows pages to be pushed onto the stack but there<br />
is no way to pass initialization properties to the newly-created<br />
page. This change adds support for this, and also provides<br />
asynchronous object creation to speed things up a bit.</p></div></div><br /><div><strong>TEST PLAN</strong><div><p>After running the following main.qml the page stack will first<br />
push a page with the default title "NO PROPERTIES" because it<br />
invokes the no-property behavior. Afterward the same page gets<br />
pushed on the stack but this time it sets the title to<br />
"PROPERTIES" using the passed-in properties object.</p>

<p>// main.qml<br />
Kirigami.ApplicationWindow {</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">id: window

Kirigami.PagePool {
  id: pool
}

Kirigami.PagePoolAction {
  id: noprops

  text: "Action with props"
  pagePool: pool
  pageStack: window.pageStack
  page: "qrc:/TestPage.qml?hasProps=" + false
}
Kirigami.PagePoolAction {
  id: props

  text: "Action with props"
  pagePool: pool
  pageStack: window.pageStack
  page: "qrc:/TestPage.qml?hasProps=" + true
  properties: { title: "PROPERTIES" }
}

Component.onCompleted: {
  noprops.trigger()
  props.trigger()
}</pre></div>

<p>}</p>

<p>// TestPage.qml<br />
Kirigami.Page {</p>

<div class="remarkup-code-block" style="margin: 12px 0;" data-code-lang="text" data-sigil="remarkup-code-block"><pre class="remarkup-code" style="font: 11px/15px "Menlo", "Consolas", "Monaco", monospace; padding: 12px; margin: 0; background: rgba(71, 87, 120, 0.08);">title: "NO PROPERTIES"</pre></div>

<p>}</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R169 Kirigami</div></div></div><br /><div><strong>BRANCH</strong><div><div>add-pagepool-properties (branched from master)</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D28468">https://phabricator.kde.org/D28468</a></div></div><br /><div><strong>AFFECTED FILES</strong><div><div>src/controls/PagePoolAction.qml<br />
src/pagepool.cpp<br />
src/pagepool.h</div></div></div><br /><div><strong>To: </strong>masonm, Kirigami, mart<br /><strong>Cc: </strong>plasma-devel, mart, fbampaloukas, GB_2, domson, dkardarakos, ngraham, apol, ahiemstra, davidedmundson<br /></div>