Advertisement
Guest User

settings-schema.json

a guest
Aug 30th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.91 KB | None | 0 0
  1. {
  2.     "combobox": {
  3.         "type": "combobox",
  4.         "default": 0,
  5.         "description": "combobox",
  6.         "options": {
  7.             "item 1": 0,
  8.             "item 2": 1,
  9.             "item 3": 2
  10.         }
  11.     },
  12.  
  13.     "radiogroup": {
  14.         "type": "radiogroup",
  15.         "description": "radiogroup",
  16.         "default": 0,
  17.         "options": {
  18.             "item 1": 0,
  19.             "item 2": 1,
  20.             "item 3": 2
  21.         }
  22.     },
  23.    
  24.     "checkbox": {
  25.         "type": "checkbox",
  26.         "default": true,
  27.         "description": "checkbox"
  28.     },
  29.    
  30.     "textview": {
  31.         "type": "textview",
  32.         "description": "textview",
  33.         "default": "あいうえお\nかきくけこ\nさしすせそ",
  34.         "height": 40
  35.     },
  36.  
  37.     "entry": {
  38.         "type": "entry",
  39.         "description": "entry",
  40.         "default": "テキスト"
  41.     },
  42.  
  43.     "spinbutton": {
  44.         "type": "spinbutton",
  45.         "description": "spinbutton",
  46.         "min": 0,
  47.         "max": 10,
  48.         "units": "px",
  49.         "step": 1,
  50.         "default": 0
  51.     },
  52.  
  53.     "colorchooser": {
  54.         "type": "colorchooser",
  55.         "description": "colorchooser",
  56.         "default": "#FF00FF"
  57.     },
  58.  
  59.     "iconfilechooser": {
  60.         "type": "iconfilechooser",
  61.         "description": "iconfilechooser",
  62.         "default": "icon.png"
  63.     },
  64.  
  65.     "filechooser": {
  66.         "type": "filechooser",
  67.         "description": "filechooser",
  68.         "default": "notitle.txt",
  69.         "select-dir": false
  70.     },
  71.    
  72.     "keybinding": {
  73.         "type": "keybinding",
  74.         "description": "keybinding",
  75.         "default": "<Super><Ctrl><G>"
  76.     },
  77.    
  78.     "scale": {
  79.         "type": "scale",
  80.         "description": "scale",
  81.         "min": 0,
  82.         "max": 100,
  83.         "step": 1,
  84.         "default": 50
  85.     },
  86.    
  87.     "generic": {
  88.         "type": "generic",
  89.         "default": true
  90.     }
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement