Advertisement
Guest User

tmpTabGroup

a guest
Oct 23rd, 2011
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. TabGroup {
  2. anchors.fill: parent
  3. currentTab: mainTab
  4.  
  5. PageStack {
  6. id: mainTab
  7. anchors.fill: parent
  8. currentPage: resultsPage
  9.  
  10.  
  11.  
  12. MainPage {
  13. id: resultsPage
  14. anchors.fill: parent
  15.  
  16. onThumbnailClicked: {
  17. // console.log("MW: thumbnail clicked. smallImageUrl is" + smallImageUrl)
  18. imageViewPage.expectedWidth = expectedWidth
  19. imageViewPage.expectedHeight = expectedHeight
  20. imageViewPage.smallImageUrl = smallImageUrl
  21. imageViewTools.visible = true
  22. pageStack.push(imageViewPage)
  23. }
  24. tools: mainTools
  25. }
  26.  
  27. ImageViewPage {
  28. id: imageViewPage
  29. tools: imageViewTools
  30. }
  31.  
  32. }
  33.  
  34. SchedulerPage {
  35. id: schedulerPage
  36. tools: mainTools
  37. }
  38.  
  39.  
  40.  
  41.  
  42. }
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement