1 # ##### BEGIN GPL LICENSE BLOCK #####
3 # This program is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software Foundation,
15 # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 # ##### END GPL LICENSE BLOCK #####
21 from bpy.types import Header, Menu, Panel
22 from bl_ui.properties_paint_common import UnifiedPaintPanel
25 class ImagePaintPanel(UnifiedPaintPanel):
26 bl_space_type = 'IMAGE_EDITOR'
30 class BrushButtonsPanel():
31 bl_space_type = 'IMAGE_EDITOR'
35 def poll(cls, context):
36 sima = context.space_data
37 toolsettings = context.tool_settings.image_paint
38 return sima.show_paint and toolsettings.brush
41 class IMAGE_MT_view(Menu):
44 def draw(self, context):
47 sima = context.space_data
49 toolsettings = context.tool_settings
51 show_uvedit = sima.show_uvedit
53 layout.operator("image.properties", icon='MENU_PANEL')
54 layout.operator("image.scopes", icon='MENU_PANEL')
58 layout.prop(sima, "use_realtime_update")
60 layout.prop(toolsettings, "show_uv_local_view")
62 layout.prop(uv, "show_other_objects")
66 layout.operator("image.view_zoom_in")
67 layout.operator("image.view_zoom_out")
71 ratios = ((1, 8), (1, 4), (1, 2), (1, 1), (2, 1), (4, 1), (8, 1))
74 layout.operator("image.view_zoom_ratio", text="Zoom" + " %d:%d" % (a, b)).ratio = a / b
79 layout.operator("image.view_selected")
81 layout.operator("image.view_all")
85 layout.operator("screen.area_dupli")
86 layout.operator("screen.screen_full_area")
89 class IMAGE_MT_select(Menu):
92 def draw(self, context):
95 layout.operator("uv.select_border").pinned = False
96 layout.operator("uv.select_border", text="Border Select Pinned").pinned = True
100 layout.operator("uv.select_all").action = 'TOGGLE'
101 layout.operator("uv.select_all", text="Inverse").action = 'INVERT'
102 layout.operator("uv.unlink_selected")
106 layout.operator("uv.select_pinned")
107 layout.operator("uv.select_linked")
110 class IMAGE_MT_image(Menu):
113 def draw(self, context):
116 sima = context.space_data
119 layout.operator("image.new")
120 layout.operator("image.open")
122 show_render = sima.show_render
126 layout.operator("image.replace")
127 layout.operator("image.reload")
129 layout.operator("image.save")
130 layout.operator("image.save_as")
131 layout.operator("image.save_as", text="Save a Copy").copy = True
133 if ima.source == 'SEQUENCE':
134 layout.operator("image.save_sequence")
136 layout.operator("image.external_edit", "Edit Externally")
140 layout.menu("IMAGE_MT_image_invert")
146 layout.operator("image.unpack")
148 layout.operator("image.pack")
150 # only for dirty && specific image types, perhaps
151 # this could be done in operator poll too
153 if ima.source in {'FILE', 'GENERATED'} and ima.type != 'OPEN_EXR_MULTILAYER':
154 layout.operator("image.pack", text="Pack As PNG").as_png = True
159 class IMAGE_MT_image_invert(Menu):
162 def draw(self, context):
165 props = layout.operator("image.invert", text="Invert Image Colors")
166 props.invert_r = True
167 props.invert_g = True
168 props.invert_b = True
172 props = layout.operator("image.invert", text="Invert Red Channel")
173 props.invert_r = True
175 props = layout.operator("image.invert", text="Invert Green Channel")
176 props.invert_g = True
178 props = layout.operator("image.invert", text="Invert Blue Channel")
179 props.invert_b = True
181 props = layout.operator("image.invert", text="Invert Alpha Channel")
182 props.invert_a = True
185 class IMAGE_MT_uvs_showhide(Menu):
186 bl_label = "Show/Hide Faces"
188 def draw(self, context):
191 layout.operator("uv.reveal")
192 layout.operator("uv.hide", text="Hide Selected").unselected = False
193 layout.operator("uv.hide", text="Hide Unselected").unselected = True
196 class IMAGE_MT_uvs_transform(Menu):
197 bl_label = "Transform"
199 def draw(self, context):
202 layout.operator("transform.translate")
203 layout.operator("transform.rotate")
204 layout.operator("transform.resize")
208 layout.operator("transform.shear")
211 class IMAGE_MT_uvs_snap(Menu):
214 def draw(self, context):
216 layout.operator_context = 'EXEC_REGION_WIN'
218 layout.operator("uv.snap_selected", text="Selected to Pixels").target = 'PIXELS'
219 layout.operator("uv.snap_selected", text="Selected to Cursor").target = 'CURSOR'
220 layout.operator("uv.snap_selected", text="Selected to Adjacent Unselected").target = 'ADJACENT_UNSELECTED'
224 layout.operator("uv.snap_cursor", text="Cursor to Pixels").target = 'PIXELS'
225 layout.operator("uv.snap_cursor", text="Cursor to Selected").target = 'SELECTED'
228 class IMAGE_MT_uvs_mirror(Menu):
231 def draw(self, context):
233 layout.operator_context = 'EXEC_REGION_WIN'
235 layout.operator("transform.mirror", text="X Axis").constraint_axis[0] = True
236 layout.operator("transform.mirror", text="Y Axis").constraint_axis[1] = True
239 class IMAGE_MT_uvs_weldalign(Menu):
240 bl_label = "Weld/Align"
242 def draw(self, context):
245 layout.operator("uv.weld") # W, 1
246 layout.operator_enum("uv.align", "axis") # W, 2/3/4
249 class IMAGE_MT_uvs(Menu):
252 def draw(self, context):
255 sima = context.space_data
257 toolsettings = context.tool_settings
259 layout.prop(uv, "use_snap_to_pixels")
260 layout.prop(uv, "lock_bounds")
264 layout.prop(toolsettings, "use_uv_sculpt")
268 layout.prop(uv, "use_live_unwrap")
269 layout.operator("uv.unwrap")
270 layout.operator("uv.pin", text="Unpin").clear = True
271 layout.operator("uv.pin")
275 layout.operator("uv.pack_islands")
276 layout.operator("uv.average_islands_scale")
277 layout.operator("uv.minimize_stretch")
278 layout.operator("uv.stitch")
279 layout.operator("uv.mark_seam")
280 layout.operator("uv.seams_from_islands")
281 layout.operator("mesh.faces_mirror_uv")
285 layout.menu("IMAGE_MT_uvs_transform")
286 layout.menu("IMAGE_MT_uvs_mirror")
287 layout.menu("IMAGE_MT_uvs_snap")
288 layout.menu("IMAGE_MT_uvs_weldalign")
292 layout.prop_menu_enum(toolsettings, "proportional_edit")
293 layout.prop_menu_enum(toolsettings, "proportional_edit_falloff")
297 layout.menu("IMAGE_MT_uvs_showhide")
300 class IMAGE_MT_uvs_select_mode(Menu):
301 bl_label = "UV Select Mode"
303 def draw(self, context):
306 layout.operator_context = 'INVOKE_REGION_WIN'
307 toolsettings = context.tool_settings
309 # do smart things depending on whether uv_select_sync is on
311 if toolsettings.use_uv_select_sync:
312 props = layout.operator("wm.context_set_value", text="Vertex", icon='VERTEXSEL')
313 props.value = "(True, False, False)"
314 props.data_path = "tool_settings.mesh_select_mode"
316 props = layout.operator("wm.context_set_value", text="Edge", icon='EDGESEL')
317 props.value = "(False, True, False)"
318 props.data_path = "tool_settings.mesh_select_mode"
320 props = layout.operator("wm.context_set_value", text="Face", icon='FACESEL')
321 props.value = "(False, False, True)"
322 props.data_path = "tool_settings.mesh_select_mode"
325 props = layout.operator("wm.context_set_string", text="Vertex", icon='UV_VERTEXSEL')
326 props.value = 'VERTEX'
327 props.data_path = "tool_settings.uv_select_mode"
329 props = layout.operator("wm.context_set_string", text="Edge", icon='UV_EDGESEL')
331 props.data_path = "tool_settings.uv_select_mode"
333 props = layout.operator("wm.context_set_string", text="Face", icon='UV_FACESEL')
335 props.data_path = "tool_settings.uv_select_mode"
337 props = layout.operator("wm.context_set_string", text="Island", icon='UV_ISLANDSEL')
338 props.value = 'ISLAND'
339 props.data_path = "tool_settings.uv_select_mode"
342 class IMAGE_HT_header(Header):
343 bl_space_type = 'IMAGE_EDITOR'
345 def draw(self, context):
348 sima = context.space_data
350 iuser = sima.image_user
351 toolsettings = context.tool_settings
354 show_render = sima.show_render
355 # show_paint = sima.show_paint
356 show_uvedit = sima.show_uvedit
358 row = layout.row(align=True)
359 row.template_header()
362 if context.area.show_menus:
363 sub = row.row(align=True)
364 sub.menu("IMAGE_MT_view")
367 sub.menu("IMAGE_MT_select")
369 if ima and ima.is_dirty:
370 sub.menu("IMAGE_MT_image", text="Image*")
372 sub.menu("IMAGE_MT_image", text="Image")
375 sub.menu("IMAGE_MT_uvs")
377 layout.template_ID(sima, "image", new="image.new")
379 layout.prop(sima, "use_image_pin", text="")
383 uvedit = sima.uv_editor
385 layout.prop(uvedit, "pivot_point", text="", icon_only=True)
386 layout.prop(toolsettings, "use_uv_select_sync", text="")
388 if toolsettings.use_uv_select_sync:
389 layout.template_edit_mode_selection()
391 layout.prop(toolsettings, "uv_select_mode", text="", expand=True)
392 layout.prop(uvedit, "sticky_select_mode", text="", icon_only=True)
394 row = layout.row(align=True)
395 row.prop(toolsettings, "proportional_edit", text="", icon_only=True)
396 if toolsettings.proportional_edit != 'DISABLED':
397 row.prop(toolsettings, "proportional_edit_falloff", text="", icon_only=True)
399 row = layout.row(align=True)
400 row.prop(toolsettings, "use_snap", text="")
401 row.prop(toolsettings, "snap_target", text="")
403 mesh = context.edit_object.data
404 layout.prop_search(mesh.uv_textures, "active", mesh, "uv_textures", text="")
406 layout.prop(sima, "mode", text="")
410 row.template_ID(sima, "mask", new="mask.new")
414 layout.template_image_layers(ima, iuser)
417 row = layout.row(align=True)
418 row.prop(sima, "draw_channels", text="", expand=True)
420 row = layout.row(align=True)
421 if ima.type == 'COMPOSITE':
422 row.operator("image.record_composite", icon='REC')
423 if ima.type == 'COMPOSITE' and ima.source in {'MOVIE', 'SEQUENCE'}:
424 row.operator("image.play_composite", icon='PLAY')
426 if show_uvedit or mode == 'PAINT':
427 layout.prop(sima, "use_realtime_update", text="", icon_only=True, icon='LOCKED')
430 class IMAGE_PT_image_properties(Panel):
431 bl_space_type = 'IMAGE_EDITOR'
432 bl_region_type = 'UI'
436 def poll(cls, context):
437 sima = context.space_data
440 def draw(self, context):
443 sima = context.space_data
444 iuser = sima.image_user
446 layout.template_image(sima, "image", iuser)
449 class IMAGE_PT_game_properties(Panel):
450 bl_space_type = 'IMAGE_EDITOR'
451 bl_region_type = 'UI'
452 bl_label = "Game Properties"
455 def poll(cls, context):
456 sima = context.space_data
457 # display even when not in game mode because these settings effect the 3d view
458 return (sima and sima.image) # and (rd.engine == 'BLENDER_GAME')
460 def draw(self, context):
463 sima = context.space_data
466 split = layout.split()
470 col.prop(ima, "use_animation")
471 sub = col.column(align=True)
472 sub.active = ima.use_animation
473 sub.prop(ima, "frame_start", text="Start")
474 sub.prop(ima, "frame_end", text="End")
475 sub.prop(ima, "fps", text="Speed")
477 col.prop(ima, "use_tiles")
478 sub = col.column(align=True)
479 sub.active = ima.use_tiles or ima.use_animation
480 sub.prop(ima, "tiles_x", text="X")
481 sub.prop(ima, "tiles_y", text="Y")
484 col.label(text="Clamp:")
485 col.prop(ima, "use_clamp_x", text="X")
486 col.prop(ima, "use_clamp_y", text="Y")
488 col.prop(ima, "mapping", expand=True)
491 class IMAGE_PT_view_histogram(Panel):
492 bl_space_type = 'IMAGE_EDITOR'
493 bl_region_type = 'PREVIEW'
494 bl_label = "Histogram"
497 def poll(cls, context):
498 sima = context.space_data
499 return (sima and sima.image)
501 def draw(self, context):
504 sima = context.space_data
505 hist = sima.scopes.histogram
507 layout.template_histogram(sima.scopes, "histogram")
508 row = layout.row(align=True)
509 row.prop(hist, "mode", icon_only=True, expand=True)
510 row.prop(hist, "show_line", text="")
513 class IMAGE_PT_view_waveform(Panel):
514 bl_space_type = 'IMAGE_EDITOR'
515 bl_region_type = 'PREVIEW'
516 bl_label = "Waveform"
519 def poll(cls, context):
520 sima = context.space_data
521 return (sima and sima.image)
523 def draw(self, context):
526 sima = context.space_data
528 layout.template_waveform(sima, "scopes")
529 row = layout.split(percentage=0.75)
530 row.prop(sima.scopes, "waveform_alpha")
531 row.prop(sima.scopes, "waveform_mode", text="", icon_only=True)
534 class IMAGE_PT_view_vectorscope(Panel):
535 bl_space_type = 'IMAGE_EDITOR'
536 bl_region_type = 'PREVIEW'
537 bl_label = "Vectorscope"
540 def poll(cls, context):
541 sima = context.space_data
542 return (sima and sima.image)
544 def draw(self, context):
547 sima = context.space_data
548 layout.template_vectorscope(sima, "scopes")
549 layout.prop(sima.scopes, "vectorscope_alpha")
552 class IMAGE_PT_sample_line(Panel):
553 bl_space_type = 'IMAGE_EDITOR'
554 bl_region_type = 'PREVIEW'
555 bl_label = "Sample Line"
558 def poll(cls, context):
559 sima = context.space_data
560 return (sima and sima.image)
562 def draw(self, context):
565 sima = context.space_data
566 hist = sima.sample_histogram
568 layout.operator("image.sample_line")
569 layout.template_histogram(sima, "sample_histogram")
570 row = layout.row(align=True)
571 row.prop(hist, "mode", expand=True)
572 row.prop(hist, "show_line", text="")
575 class IMAGE_PT_scope_sample(Panel):
576 bl_space_type = 'IMAGE_EDITOR'
577 bl_region_type = 'PREVIEW'
578 bl_label = "Scope Samples"
581 def poll(cls, context):
582 sima = context.space_data
585 def draw(self, context):
588 sima = context.space_data
591 row.prop(sima.scopes, "use_full_resolution")
593 sub.active = not sima.scopes.use_full_resolution
594 sub.prop(sima.scopes, "accuracy")
597 class IMAGE_PT_view_properties(Panel):
598 bl_space_type = 'IMAGE_EDITOR'
599 bl_region_type = 'UI'
603 def poll(cls, context):
604 sima = context.space_data
605 return (sima and (sima.image or sima.show_uvedit))
607 def draw(self, context):
610 sima = context.space_data
612 show_uvedit = sima.show_uvedit
613 uvedit = sima.uv_editor
615 split = layout.split()
619 col.prop(ima, "display_aspect", text="Aspect Ratio")
622 col.label(text="Coordinates:")
623 col.prop(sima, "show_repeat", text="Repeat")
625 col.prop(uvedit, "show_normalized_coords", text="Normalized")
628 col.label(text="Coordinates:")
629 col.prop(uvedit, "show_normalized_coords", text="Normalized")
633 col = layout.column()
634 col.label("Cursor Location:")
635 col.row().prop(uvedit, "cursor_location", text="")
639 col.label(text="UVs:")
640 col.row().prop(uvedit, "edge_draw_type", expand=True)
642 split = layout.split()
645 col.prop(uvedit, "show_faces")
646 col.prop(uvedit, "show_smooth_edges", text="Smooth")
647 col.prop(uvedit, "show_modified_edges", text="Modified")
650 col.prop(uvedit, "show_stretch", text="Stretch")
652 sub.active = uvedit.show_stretch
653 sub.row().prop(uvedit, "draw_stretch_type", expand=True)
656 class IMAGE_PT_paint(Panel, ImagePaintPanel):
657 bl_space_type = 'IMAGE_EDITOR'
658 bl_region_type = 'UI'
662 def poll(cls, context):
663 sima = context.space_data
664 return sima.show_paint
666 def draw(self, context):
669 toolsettings = context.tool_settings.image_paint
670 brush = toolsettings.brush
672 col = layout.column()
673 col.template_ID_preview(toolsettings, "brush", new="brush.add", rows=2, cols=6)
676 col = layout.column()
677 col.template_color_wheel(brush, "color", value_slider=True)
678 col.prop(brush, "color", text="")
680 row = col.row(align=True)
681 self.prop_unified_size(row, context, brush, "size", slider=True, text="Radius")
682 self.prop_unified_size(row, context, brush, "use_pressure_size")
684 row = col.row(align=True)
685 self.prop_unified_strength(row, context, brush, "strength", slider=True, text="Strength")
686 self.prop_unified_strength(row, context, brush, "use_pressure_strength")
688 row = col.row(align=True)
689 row.prop(brush, "jitter", slider=True)
690 row.prop(brush, "use_pressure_jitter", toggle=True, text="")
692 col.prop(brush, "blend", text="Blend")
694 if brush.image_tool == 'CLONE':
696 col.prop(brush, "clone_image", text="Image")
697 col.prop(brush, "clone_alpha", text="Alpha")
700 class IMAGE_PT_tools_brush_texture(BrushButtonsPanel, Panel):
702 bl_options = {'DEFAULT_CLOSED'}
704 def draw(self, context):
707 toolsettings = context.tool_settings.image_paint
708 brush = toolsettings.brush
710 col = layout.column()
711 col.template_ID_preview(brush, "texture", new="texture.new", rows=3, cols=8)
712 col.prop(brush, "use_fixed_texture")
715 class IMAGE_PT_tools_brush_tool(BrushButtonsPanel, Panel):
717 bl_options = {'DEFAULT_CLOSED'}
719 def draw(self, context):
721 toolsettings = context.tool_settings.image_paint
722 brush = toolsettings.brush
724 layout.prop(brush, "image_tool", text="")
726 row = layout.row(align=True)
727 row.prop(brush, "use_paint_sculpt", text="", icon='SCULPTMODE_HLT')
728 row.prop(brush, "use_paint_vertex", text="", icon='VPAINT_HLT')
729 row.prop(brush, "use_paint_weight", text="", icon='WPAINT_HLT')
730 row.prop(brush, "use_paint_image", text="", icon='TPAINT_HLT')
733 class IMAGE_PT_paint_stroke(BrushButtonsPanel, Panel):
734 bl_label = "Paint Stroke"
735 bl_options = {'DEFAULT_CLOSED'}
737 def draw(self, context):
740 toolsettings = context.tool_settings.image_paint
741 brush = toolsettings.brush
743 layout.prop(brush, "use_airbrush")
745 row.active = brush.use_airbrush
746 row.prop(brush, "rate", slider=True)
748 layout.prop(brush, "use_space")
749 row = layout.row(align=True)
750 row.active = brush.use_space
751 row.prop(brush, "spacing", text="Distance", slider=True)
752 row.prop(brush, "use_pressure_spacing", toggle=True, text="")
754 layout.prop(brush, "use_wrap")
757 class IMAGE_PT_paint_curve(BrushButtonsPanel, Panel):
758 bl_label = "Paint Curve"
759 bl_options = {'DEFAULT_CLOSED'}
761 def draw(self, context):
764 toolsettings = context.tool_settings.image_paint
765 brush = toolsettings.brush
767 layout.template_curve_mapping(brush, "curve")
769 row = layout.row(align=True)
770 row.operator("brush.curve_preset", icon='SMOOTHCURVE', text="").shape = 'SMOOTH'
771 row.operator("brush.curve_preset", icon='SPHERECURVE', text="").shape = 'ROUND'
772 row.operator("brush.curve_preset", icon='ROOTCURVE', text="").shape = 'ROOT'
773 row.operator("brush.curve_preset", icon='SHARPCURVE', text="").shape = 'SHARP'
774 row.operator("brush.curve_preset", icon='LINCURVE', text="").shape = 'LINE'
775 row.operator("brush.curve_preset", icon='NOCURVE', text="").shape = 'MAX'
778 class IMAGE_UV_sculpt_curve(Panel):
779 bl_space_type = 'IMAGE_EDITOR'
780 bl_region_type = 'UI'
781 bl_label = "UV Sculpt Curve"
782 bl_options = {'DEFAULT_CLOSED'}
785 def poll(cls, context):
786 sima = context.space_data
787 toolsettings = context.tool_settings.image_paint
788 return sima.show_uvedit and context.tool_settings.use_uv_sculpt and not (sima.show_paint and toolsettings.brush)
790 def draw(self, context):
793 toolsettings = context.tool_settings
794 uvsculpt = toolsettings.uv_sculpt
795 brush = uvsculpt.brush
797 layout.template_curve_mapping(brush, "curve")
799 row = layout.row(align=True)
800 row.operator("brush.curve_preset", icon='SMOOTHCURVE', text="").shape = 'SMOOTH'
801 row.operator("brush.curve_preset", icon='SPHERECURVE', text="").shape = 'ROUND'
802 row.operator("brush.curve_preset", icon='ROOTCURVE', text="").shape = 'ROOT'
803 row.operator("brush.curve_preset", icon='SHARPCURVE', text="").shape = 'SHARP'
804 row.operator("brush.curve_preset", icon='LINCURVE', text="").shape = 'LINE'
805 row.operator("brush.curve_preset", icon='NOCURVE', text="").shape = 'MAX'
808 class IMAGE_UV_sculpt(Panel, ImagePaintPanel):
809 bl_space_type = 'IMAGE_EDITOR'
810 bl_region_type = 'UI'
811 bl_label = "UV Sculpt"
814 def poll(cls, context):
815 sima = context.space_data
816 toolsettings = context.tool_settings.image_paint
817 return sima.show_uvedit and context.tool_settings.use_uv_sculpt and not (sima.show_paint and toolsettings.brush)
819 def draw(self, context):
822 toolsettings = context.tool_settings
823 uvsculpt = toolsettings.uv_sculpt
824 brush = uvsculpt.brush
827 col = layout.column()
829 row = col.row(align=True)
830 self.prop_unified_size(row, context, brush, "size", slider=True, text="Radius")
831 self.prop_unified_size(row, context, brush, "use_pressure_size")
833 row = col.row(align=True)
834 self.prop_unified_strength(row, context, brush, "strength", slider=True, text="Strength")
835 self.prop_unified_strength(row, context, brush, "use_pressure_strength")
837 split = layout.split()
840 col.prop(toolsettings, "uv_sculpt_lock_borders")
841 col.prop(toolsettings, "uv_sculpt_all_islands")
843 split = layout.split()
846 col.prop(toolsettings, "uv_sculpt_tool")
848 if toolsettings.uv_sculpt_tool == 'RELAX':
849 col.prop(toolsettings, "uv_relax_method")
852 if __name__ == "__main__": # only for live edit.
853 bpy.utils.register_module(__name__)