Advertisement
1400_SpaceCat

wpvs.py

Nov 1st, 2015
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.49 KB | None | 0 0
  1. def view():
  2.     view.l = {
  3.    
  4.     "resources_settings":{
  5.         "pygame":{
  6.             "x32":"pgame34x32.whl",
  7.             "x64":"pgame34x64.whl",
  8.             },
  9.                
  10.         "py2exe":{
  11.             "x32":"pexe34x32.whl",
  12.             "x64":"pexe34x64.whl",
  13.             },
  14.                
  15.         "pil":{
  16.             "x32":"ppil34x32.whl",
  17.             "x64":"ppil34x64.whl",
  18.             },
  19.                
  20.         "getpip":"getpip.py",
  21.  
  22.         "resources_folder":"RESOURCES",
  23.         "modules_folder":"/MODULES",
  24.  
  25.         "theme_folder":"/THEMES",
  26.         "theme_style":"/GRADDY",
  27.         "images_folder":"/IMAGES",
  28.         "icons_folder":"/ICONS",
  29.         "sounds_folder":"/SOUNDS",
  30.    
  31.     }, #END
  32.    
  33.     "apps_settings_windows":{
  34.         "coding":{
  35.             "Notepad++":"D:\\programs\\notepp\\notepad++.exe",
  36.             "Python":"D:\\programs\\Python34\\Lib\\idlelib\\idle.bat",
  37.             "Command Line":"cmd.exe",
  38.             "Notepad":"notepad.exe",
  39.             },
  40.         }, #END
  41.    
  42.     "windows_settings":{
  43.         "mainwindow_icon":"/ico_mainwindow.ico",
  44.         "main_window_title":"WorkPlace v.0.1",
  45.         "desktop_image":"/img_desktop1.gif",
  46.        
  47.         "window_resizable":{
  48.             "x0":0,
  49.             "y0":0,
  50.             "x1":1,
  51.             "y1":1
  52.         },
  53.        
  54.         "fullscreen":{
  55.             "od_f":1,
  56.             "gm_f":"%dx%d+0+0",
  57.             "od_w":0
  58.         },
  59.        
  60.        
  61.     }, #END
  62.    
  63.     "buttons_settings":{
  64.         "text":{
  65.             0:{
  66.                 "appsbox":"",
  67.                 "quickcommand":"",
  68.                 "session":"",
  69.                 "settings":"",
  70.                 "shutdown":"",
  71.                 "reboot":"",
  72.                 "yes":"",
  73.                 "no":"",
  74.             },
  75.             1:{
  76.                 "appsbox":"Apps",
  77.                 "quickcommand":"Commands",
  78.                 "session":"Session",
  79.                 "settings":"Settings",
  80.                 "shutdown":"Shutdown",
  81.                 "reboot":"Reboot",
  82.                 "yes":"Yes",
  83.                 "no":"No",
  84.             }
  85.             },
  86.            
  87.         "icons":{
  88.             "settings_icon":"/ico_sets.gif",
  89.             "quickcommand_icon":"/ico_qc.gif",
  90.             "warnig_icon":"/ico_warning.gif",
  91.             "session_icon":"/ico_session.gif",
  92.             "shutdown_icon":"/ico_poff.gif",
  93.             "reboot_icon":"/ico_reboot.gif",
  94.             "yes_icon":"/ico_yes.gif",
  95.             "no_icon":"/ico_yes.gif",
  96.         },
  97.        
  98.         "relief":{
  99.             "flat":"flat",
  100.             "groove":"groove",
  101.             "sunken":"sunken",
  102.             "ridge":"ridge"
  103.         },
  104.        
  105.         "compound":{
  106.             "left":"left",
  107.             "right":"right"
  108.         }
  109.         }, #END
  110.    
  111.     "timewidget_settings":{
  112.         "relief":{
  113.             "flat":"flat",
  114.             "groove":"groove",
  115.             "sunken":"sunken",
  116.             "ridge":"ridge"
  117.         },
  118.         "font":{
  119.             "name":"consolas",
  120.             "size":10,
  121.             "style":"bold"
  122.         },
  123.         "separator":{
  124.             "vline":"|",
  125.             "hline":"--",
  126.             "space":" ",
  127.             "none":""
  128.         },
  129.         "column_position":{
  130.             "oneline":"",
  131.             "nextline":"\n"
  132.         },
  133.         "datetime":{
  134.             "time":"%H:%M:%S",
  135.             "date":"%d.%m.%y",
  136.         },
  137.        
  138.     },#END
  139.    
  140.     "sounds_settings":{
  141.         "info_sound":"info_sound.wav",
  142.     }, #END
  143. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement