Advertisement
artemmarchenko

tmp

Sep 19th, 2011
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import Qt 4.7
  2. import "GlobalSettings.js" as Js
  3.  
  4. QtObject {
  5.     id: settingsObject
  6.     property bool shouldInitializeGlobalSettingWithItself: false
  7.     property string platformTitle: "None"
  8.     property string textFromSetting: "Base"
  9.  
  10.     // default dimensions are Symbian portraint
  11.     property int screenWidth: 360
  12.     property int screenHeight: 640
  13.  
  14.     // logical switches/conditions
  15.     property bool exitButtonPresent: true
  16.     property bool clearButtonIsBetweenTheLines: true
  17.  
  18.     // element sizes
  19.     property int rollerHeight: 110
  20.     property int digitRollerWidth: 56
  21.     property int percentageRollerWidth: digitRollerWidth
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement