forked from bartvdbraak/blender
37864a4273
Image Window * Unpack operator now works. * Some small layout code tweaks. Info Window Header * Moved to python UI code. * template_running_jobs, template_operator_search added. * Ported external data operators: pack/unpack all, make paths relative/absolute, find/report missing files. Also * Report RPT_INFO too, not only warnings and errors. * Run UI handle functions after RNA and Operators. * Rename particle system add/remove operators, to not include "slot", that's only there for materials because that's what they are called now in RNA.
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
|
|
import bpy
|
|
|
|
|
|
class FILEBROWSER_HT_header(bpy.types.Header):
|
|
__space_type__ = "FILE_BROWSER"
|
|
__idname__ = "FILEBROWSER_HT_header"
|
|
|
|
def draw(self, context):
|
|
st = context.space_data
|
|
layout = self.layout
|
|
|
|
params = st.params
|
|
layout.template_header()
|
|
|
|
if context.area.show_menus:
|
|
row = layout.row()
|
|
row.itemM("FILEBROWSER_MT_directory")
|
|
row.itemM("FILEBROWSER_MT_bookmarks")
|
|
|
|
row = layout.row(align=True)
|
|
row.itemO("FILE_OT_parent", text="", icon='ICON_FILE_PARENT')
|
|
row.itemO("FILE_OT_refresh", text="", icon='ICON_FILE_REFRESH')
|
|
|
|
layout.itemR(params, "display", expand=True, text="")
|
|
layout.itemR(params, "sort", expand=True, text="")
|
|
|
|
layout.itemR(params, "hide_dot")
|
|
layout.itemR(params, "do_filter")
|
|
|
|
row = layout.row(align=True)
|
|
row.itemR(params, "filter_folder", text="");
|
|
row.itemR(params, "filter_blender", text="");
|
|
row.itemR(params, "filter_image", text="");
|
|
row.itemR(params, "filter_movie", text="");
|
|
row.itemR(params, "filter_script", text="");
|
|
row.itemR(params, "filter_font", text="");
|
|
row.itemR(params, "filter_sound", text="");
|
|
row.itemR(params, "filter_text", text="");
|
|
|
|
row.active = params.do_filter
|
|
|
|
class FILEBROWSER_MT_directory(bpy.types.Menu):
|
|
__space_type__ = "FILE_BROWSER"
|
|
__label__ = "Directory"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.itemO("FILE_OT_refresh", text="Refresh", icon='ICON_FILE_REFRESH')
|
|
layout.itemO("FILE_OT_parent", text="Parent", icon='ICON_FILE_PARENT')
|
|
|
|
class FILEBROWSER_MT_bookmarks(bpy.types.Menu):
|
|
__space_type__ = "FILE_BROWSER"
|
|
__label__ = "Bookmarks"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.itemO("FILE_OT_add_bookmark", text="Add current directory", icon='ICON_BOOKMARKS')
|
|
|
|
|
|
bpy.types.register(FILEBROWSER_HT_header)
|
|
bpy.types.register(FILEBROWSER_MT_directory)
|
|
bpy.types.register(FILEBROWSER_MT_bookmarks)
|