~ubuntu-branches/ubuntu/vivid/gpodder/vivid

« back to all changes in this revision

Viewing changes to share/gpodder/ui/qml/harmattan/org/gpodder/qmlui/WindowWindow.qml

  • Committer: Package Import Robot
  • Author(s): tony mancill
  • Date: 2013-04-12 22:07:02 UTC
  • mfrom: (5.2.27 sid)
  • Revision ID: package-import@ubuntu.com-20130412220702-mux8v9r8zt2jin0x
Tags: 3.5.1-1
* New upstream release.
* d/control: declare versioned dependency on python-gtk2 (>= 2.16)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
import com.nokia.meego 1.0
 
3
 
 
4
PageStackWindow {
 
5
    property bool fullsize: (platformWindow.viewMode == WindowState.Fullsize)
 
6
 
 
7
    // Unused boolean activity variables:
 
8
    //  - platformWindow.visible - Visible somewhere
 
9
    //  - platformWindow.active - Active (input focus?)
 
10
 
 
11
    // Hide status bar in landscape mode
 
12
    showStatusBar: screen.currentOrientation == Screen.Portrait
 
13
}
 
14