Guest User

Untitled

a guest
Jun 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import QtQuick 1.0
  2.  
  3. //sample style file for a qml ui
  4. /*
  5.   color scheme
  6.   Button sienna
  7.   Rows   lightbrwn
  8.   Grids  ltgrn
  9.   Button Text white
  10.   Title Text white
  11.  
  12.   */
  13.  
  14.  
  15. QtObject{
  16.     id:classicstyle
  17.     objectName: "orbiter_style"
  18.     //skin description
  19.     property string skincreator: "Langston Ball (aka golgoj4)"
  20.     property string skinname: "Android-Default"
  21.     property string skindir: "default"
  22.     property string skindescription: "Android phone skin, work in progress"
  23.     property string skinversion: "1.0"
  24.     property string skinvariation: "Android 320X480"
  25.     property string maincolor: "grey"
  26.     property string accentcolor: "indianred"
  27.     //main stage styles
  28.     property int orbiterH:480
  29.     property int orbiterW: 320
  30.     property int orbiterWp: 480
  31.     property int orbiterHp: 320
  32.     property color stageBG: "slategray"
  33.     property int homescreenrowheight:100
  34.     property int homescreenbuttonheight: 45
  35.     property int homesreenbuttonwidth: 45
  36.     property color homescreenscenariobuttoncolor: "aliceblue"
  37.     property color homescreenfloorplanbuttoncolor: "lightsteelblue"
  38.     property color homeScreenNowPlayingColorInActive: "indianred"
  39.     property color homeScreenNowPlayingColorActive: "lightcyan"
  40.  
  41.     //icon sizes
  42.     property int iconHeight: 45
  43.     property int iconWidth: 45
  44.     property int  stdbuttonh: 45
  45.     property int  stdbuttonw: 45
  46.  
  47.     //textStyles
  48.     property string stylebuttonimage: ""
  49.     property int title_size: 18
  50.     property color tile_color: "whitesmoke"
  51.  
  52.     property int t_but_size: 16
  53.     property color t_but_color: "darkgrey"
  54.  
  55.     //title and other misc windo accents
  56.     property color titletextcolor: "black"
  57.     //button styling
  58.     property int buttonH:45
  59.     property int buttonW: 45
  60.     property int avoptionbuttonh :45
  61.     property int avoptionbuttonw :45
  62.      property int mediabuttonw :45
  63.      property int mediabuttonh :45
  64.     property color button_system_color: "lightsteelblue"
  65.     property color button_system_color_hover: "lightblue"
  66.  
  67.     property color button_action_color: "lightsteelblue"
  68.     property color button_action_color_hover: "lightblue"
  69.  
  70.     property variant bgImg: "null"
  71.     property string b_title: "null"
  72.     property int but_smooth: 10
  73.  
  74.     //navigations
  75.     property color arrow_color_nav: "lightsteelblue"
  76.     property color arrow_text_nav: "black"
  77.  
  78.  
  79.     //row container styling
  80.     property int rowWidth: orbiterW - 5
  81.     property int rowH: buttonH + 10
  82.     property color rowbgColor: "transparent"
  83.  
  84.     //Notifications bar
  85.     property int width: orbiterW - 5
  86.     property color not_color: "aliceblue"
  87.     property string not_pos: "anchors: parent.top"
  88.  
  89.     //special
  90.     property color alert_bg: "lightsteelblue"
  91.     property color alert_bg_text: "white"
  92.  
  93.     //advanced panel
  94.     property color advanced_bg: "cornflowerblue"
  95.     property color advanced_bg_text: "white"
  96.  
  97.     //stage
  98.     property color stage_bg: "lightSteelblue"
  99.     property color bgcolor: "lightsteelblue"
  100.  
  101. }
Add Comment
Please, Sign In to add comment