4 Name: 'Save Current Theme...'
7 Tooltip: 'Save current theme as a BPython script'
10 __author__
= "Willian P. Germano"
11 __url__
= ("blender", "elysiun")
12 __version__
= "2.43 2006/12/30"
15 This script saves the current Theme in Blender as a Blender Python script.
19 Use Blender's Theme tab in the User Preferences window to create and name your
20 theme, then run this script from the File->Export menu to save it.
22 It is saved as a bpython script, meaning that you can simply run it to change
23 the current theme. By default it is currently saved under the
24 "Misc" group, available only from the Scripts window "Scripts->Misc" menu.
26 To appear in the menu, a theme saved with this script must be put in your
27 Blender's scripts dir, that's what happens by default when you save one by
28 yourself. If you don't know where this dir is, running
30 import Blender<br>print Blender.Get("scriptsdir")
32 on the Text Editor window (use menu or ALT+P to run it) will write the path on
35 Remember to edit your exported theme's source file to put your name and
36 some information on it before sharing it with others.
39 # $Id: save_theme.py 9744 2007-01-13 03:07:04Z campbellbarton $
41 # --------------------------------------------------------------------------
42 # Copyright (C) 2004: Willian P. Germano, wgermano _at_ ig com br
43 # --------------------------------------------------------------------------
44 # The scripts generated by this script are put under Public Domain by
45 # default, but you are free to edit the ones you generate with this script
46 # and change their license to another one of your choice.
47 # --------------------------------------------------------------------------
48 # ***** BEGIN GPL LICENSE BLOCK *****
50 # Copyright (C) 2005: Willian P. Germano, wgermano _at_ ig.com.br
52 # This program is free software; you can redistribute it and/or
53 # modify it under the terms of the GNU General Public License
54 # as published by the Free Software Foundation; either version 2
55 # of the License, or (at your option) any later version.
57 # This program is distributed in the hope that it will be useful,
58 # but WITHOUT ANY WARRANTY; without even the implied warranty of
59 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
60 # GNU General Public License for more details.
62 # You should have received a copy of the GNU General Public License
63 # along with this program; if not, write to the Free Software Foundation,
64 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
66 # ***** END GPL LICENCE BLOCK *****
67 # --------------------------------------------------------------------------
70 from Blender
.Window
import Theme
, FileSelector
72 theme
= Theme
.Get()[0] # get current theme
74 # default filename: theme's name + '_theme.py' in user's scripts dir:
75 default_fname
= Blender
.Get("scriptsdir")
76 default_fname
= Blender
.sys
.join(default_fname
, theme
.name
+ '_theme.py')
77 default_fname
= default_fname
.replace(' ','_')
79 def write_theme(filename
):
80 "Write the current theme as a bpython script"
82 if not filename
.endswith('.py'): filename
+= '.py'
84 fout
= file(filename
, "w")
92 # Tooltip: 'Change current theme'
99 You can edit this section to write something about your script that can
100 be read then with the Scripts Help Browser script in Blender.
102 Remember to also set author, version and possibly url(s) above. You can also
103 define an __email__ tag, check some bundled script's source for examples.
106 # This script was automatically generated by the save_theme.py bpython script.
107 # By default, these generated scripts are released as Public Domain, but you
108 # are free to change the license of the scripts you generate with
109 # save_theme.py before releasing them.
112 from Blender.Window import Theme
114 theme = Theme.New('%s')
115 """ % (theme
.name
, "author", "version", "url", "bpydoc", theme
.name
))
117 for tsp
in theme
.get(): #
118 command
= "\n%s = theme.get('%s')" % (tsp
, tsp
)
119 fout
.write(command
+ "\n")
121 exec("vars = dir(%s)" % tsp
)
125 v
= "%s.%s" % (tsp
, var
)
126 exec("value = %s" % v
)
127 if type(value
) == str:
128 fout
.write("%s = '%s'\n" % (v
, value
))
130 fout
.write("%s = %s\n" % (v
, value
))
132 fout
.write('\nBlender.Redraw(-1)')
135 Blender
.UpdateMenus()
137 Blender
.Draw
.PupMenu("Warning - check console!%t|Menus could not be automatically updated")
139 FileSelector(write_theme
, "Save Current Theme", default_fname
)