4 class IMAGE_MT_view(bpy.types.Menu):
5 __space_type__ = "IMAGE_EDITOR"
8 def draw(self, context):
10 sima = context.space_data
12 settings = context.tool_settings
14 show_uvedit = sima.show_uvedit
16 layout.itemO("image.properties", icon="ICON_MENU_PANEL")
20 layout.itemR(sima, "update_automatically")
22 layout.itemR(settings, "uv_local_view") # Numpad /
26 layout.itemO("image.view_zoom_in")
27 layout.itemO("image.view_zoom_out")
31 ratios = [[1, 8], [1, 4], [1, 2], [1, 1], [2, 1], [4, 1], [8, 1]];
34 text = "Zoom %d:%d" % (a, b)
35 layout.item_floatO("image.view_zoom_ratio", "ratio", a/b, text=text)
40 layout.itemO("image.view_selected")
42 layout.itemO("image.view_all")
43 layout.itemO("screen.screen_full_area")
45 class IMAGE_MT_select(bpy.types.Menu):
46 __space_type__ = "IMAGE_EDITOR"
49 def draw(self, context):
52 layout.itemO("uv.select_border")
53 layout.item_booleanO("uv.select_border", "pinned", True)
57 layout.itemO("uv.select_all_toggle")
58 layout.itemO("uv.select_inverse")
59 layout.itemO("uv.unlink_selection")
63 layout.itemO("uv.select_pinned")
64 layout.itemO("uv.select_linked")
66 class IMAGE_MT_image(bpy.types.Menu):
67 __space_type__ = "IMAGE_EDITOR"
70 def draw(self, context):
72 sima = context.space_data
75 layout.itemO("image.new")
76 layout.itemO("image.open")
78 show_render = sima.show_render
82 layout.itemO("image.replace")
83 layout.itemO("image.reload")
85 layout.itemO("image.save")
86 layout.itemO("image.save_as")
88 if ima.source == "SEQUENCE":
89 layout.itemO("image.save_sequence")
95 layout.itemO("image.unpack")
97 layout.itemO("image.pack")
99 # only for dirty && specific image types, perhaps
100 # this could be done in operator poll too
102 if ima.source in ("FILE", "GENERATED") and ima.type != "MULTILAYER":
103 layout.item_booleanO("image.pack", "as_png", True, text="Pack As PNG")
107 layout.itemR(sima, "image_painting")
109 class IMAGE_MT_uvs_showhide(bpy.types.Menu):
110 __space_type__ = "IMAGE_EDITOR"
111 __label__ = "Show/Hide Faces"
113 def draw(self, context):
116 layout.itemO("uv.reveal")
117 layout.itemO("uv.hide")
118 layout.item_booleanO("uv.hide", "unselected", True)
120 class IMAGE_MT_uvs_transform(bpy.types.Menu):
121 __space_type__ = "IMAGE_EDITOR"
122 __label__ = "Transform"
124 def draw(self, context):
127 layout.item_enumO("tfm.transform", "mode", "TRANSLATION")
128 layout.item_enumO("tfm.transform", "mode", "ROTATION")
129 layout.item_enumO("tfm.transform", "mode", "RESIZE")
131 class IMAGE_MT_uvs_mirror(bpy.types.Menu):
132 __space_type__ = "IMAGE_EDITOR"
135 def draw(self, context):
138 layout.item_enumO("uv.mirror", "axis", "MIRROR_X") # "X Axis", M,
139 layout.item_enumO("uv.mirror", "axis", "MIRROR_Y") # "Y Axis", M,
141 class IMAGE_MT_uvs_weldalign(bpy.types.Menu):
142 __space_type__ = "IMAGE_EDITOR"
143 __label__ = "Weld/Align"
145 def draw(self, context):
148 layout.itemO("uv.weld") # W, 1
149 layout.items_enumO("uv.align", "axis") # W, 2/3/4
152 class IMAGE_MT_uvs(bpy.types.Menu):
153 __space_type__ = "IMAGE_EDITOR"
156 def draw(self, context):
158 sima = context.space_data
160 settings = context.tool_settings
162 layout.itemR(uv, "snap_to_pixels")
163 layout.itemR(uv, "constrain_to_image_bounds")
167 layout.itemR(uv, "live_unwrap")
168 layout.itemO("uv.unwrap")
169 layout.item_booleanO("uv.pin", "clear", True, text="Unpin")
170 layout.itemO("uv.pin")
174 layout.itemO("uv.pack_islands")
175 layout.itemO("uv.average_islands_scale")
176 layout.itemO("uv.minimize_stretch")
177 layout.itemO("uv.stitch")
181 layout.itemM("IMAGE_MT_uvs_transform")
182 layout.itemM("IMAGE_MT_uvs_mirror")
183 layout.itemM("IMAGE_MT_uvs_weldalign")
187 layout.itemR(settings, "proportional_editing")
188 layout.item_menu_enumR(settings, "proportional_editing_falloff")
192 layout.itemM("IMAGE_MT_uvs_showhide")
194 class IMAGE_HT_header(bpy.types.Header):
195 __space_type__ = "IMAGE_EDITOR"
197 def draw(self, context):
198 sima = context.space_data
200 iuser = sima.image_user
202 settings = context.tool_settings
204 show_render = sima.show_render
205 show_paint = sima.show_paint
206 show_uvedit = sima.show_uvedit
208 layout.template_header()
211 if context.area.show_menus:
213 row.itemM("IMAGE_MT_view")
216 row.itemM("IMAGE_MT_select")
218 if ima and ima.dirty:
219 row.itemM("IMAGE_MT_image", text="Image*")
221 row.itemM("IMAGE_MT_image", text="Image")
224 row.itemM("IMAGE_MT_uvs")
226 layout.template_ID(sima, "image", new="image.new")
231 pinflag= (show_render)? 0: UI_ID_PIN;
232 xco= uiDefIDPoinButs(block, CTX_data_main(C), NULL, (ID*)sima->image, ID_IM, &sima->pin, xco, yco,
233 sima_idpoin_handle, UI_ID_BROWSE|UI_ID_BROWSE_RENDER|UI_ID_RENAME|UI_ID_ADD_NEW|UI_ID_OPEN|UI_ID_DELETE|pinflag);
238 if(ima && !ELEM3(ima->source, IMA_SRC_SEQUENCE, IMA_SRC_MOVIE, IMA_SRC_VIEWER) && ima->ok) {
239 /* XXX this should not be a static var */
240 static int headerbuttons_packdummy;
242 headerbuttons_packdummy = 0;
244 if (ima->packedfile) {
245 headerbuttons_packdummy = 1;
247 if (ima->packedfile && ibuf && (ibuf->userflags & IB_BITMAPDIRTY))
248 uiDefIconButBitI(block, TOG, 1, 0 /* XXX B_SIMA_REPACK */, ICON_UGLYPACKAGE, xco,yco,XIC,YIC, &headerbuttons_packdummy, 0, 0, 0, 0, "Re-Pack this image as PNG");
250 uiDefIconButBitI(block, TOG, 1, 0 /* XXX B_SIMAPACKIMA */, ICON_PACKAGE, xco,yco,XIC,YIC, &headerbuttons_packdummy, 0, 0, 0, 0, "Pack/Unpack this image");
258 uvedit = sima.uv_editor
260 layout.itemR(uvedit, "pivot", text="")
261 layout.itemR(settings, "uv_sync_selection", text="")
263 if settings.uv_sync_selection:
264 layout.itemR(settings, "mesh_selection_mode", text="", expand=True)
266 layout.itemR(settings, "uv_selection_mode", text="", expand=True)
267 layout.itemR(uvedit, "sticky_selection_mode", text="")
270 row = layout.row(align=True)
271 row.itemR(settings, "snap", text="")
273 row.itemR(settings, "snap_mode", text="")
276 mesh = context.edit_object.data
277 row.item_pointerR(mesh, "active_uv_layer", mesh, "uv_layers")
282 layout.template_image_layers(ima, iuser)
285 layout.itemR(sima, "image_painting", text="")
288 row = layout.row(align=True)
289 row.itemR(sima, "draw_channels", text="", expand=True)
291 row = layout.row(align=True)
292 if ima.type == "COMPOSITE":
293 row.itemO("image.record_composite", icon="ICON_REC")
294 if ima.type == "COMPOSITE" and ima.source in ("MOVIE", "SEQUENCE"):
295 row.itemO("image.play_composite", icon="ICON_PLAY")
297 layout.itemR(sima, "update_automatically", text="")
299 class IMAGE_PT_game_properties(bpy.types.Panel):
300 __space_type__ = "IMAGE_EDITOR"
301 __region_type__ = "UI"
302 __label__ = "Game Properties"
304 def poll(self, context):
305 sima = context.space_data
306 return (sima and sima.image)
308 def draw(self, context):
309 sima = context.space_data
315 split = layout.split()
319 subcol = col.column(align=True)
320 subcol.itemR(ima, "clamp_x")
321 subcol.itemR(ima, "clamp_y")
323 col.itemR(ima, "mapping", expand=True)
324 col.itemR(ima, "tiles")
328 subcol = col.column(align=True)
329 subcol.itemR(ima, "animated")
331 subcol = subcol.column()
332 subcol.itemR(ima, "animation_start", text="Start")
333 subcol.itemR(ima, "animation_end", text="End")
334 subcol.itemR(ima, "animation_speed", text="Speed")
335 subcol.active = ima.animated
337 subrow = col.row(align=True)
338 subrow.itemR(ima, "tiles_x", text="X")
339 subrow.itemR(ima, "tiles_y", text="Y")
340 subrow.active = ima.tiles or ima.animated
342 class IMAGE_PT_view_properties(bpy.types.Panel):
343 __space_type__ = "IMAGE_EDITOR"
344 __region_type__ = "UI"
345 __label__ = "View Properties"
347 def poll(self, context):
348 sima = context.space_data
349 return (sima and (sima.image or sima.show_uvedit))
351 def draw(self, context):
352 sima = context.space_data
356 show_uvedit = sima.show_uvedit
357 uvedit = sima.uv_editor
359 split = layout.split()
363 col.itemR(ima, "display_aspect")
366 col.itemR(sima, "draw_repeated", text="Repeat")
368 col.itemR(uvedit, "normalized_coordinates", text="Normalized")
370 col.itemR(uvedit, "normalized_coordinates", text="Normalized")
373 col = layout.column()
375 row.itemR(uvedit, "edge_draw_type", expand=True)
377 row.itemR(uvedit, "draw_smooth_edges", text="Smooth")
378 row.itemR(uvedit, "draw_modified_edges", text="Modified")
381 row.itemR(uvedit, "draw_stretch", text="Stretch")
382 row.itemR(uvedit, "draw_stretch_type", text="")
383 #col.itemR(uvedit, "draw_edges")
384 #col.itemR(uvedit, "draw_faces")
386 bpy.types.register(IMAGE_MT_view)
387 bpy.types.register(IMAGE_MT_select)
388 bpy.types.register(IMAGE_MT_image)
389 bpy.types.register(IMAGE_MT_uvs_showhide)
390 bpy.types.register(IMAGE_MT_uvs_transform)
391 bpy.types.register(IMAGE_MT_uvs_mirror)
392 bpy.types.register(IMAGE_MT_uvs_weldalign)
393 bpy.types.register(IMAGE_MT_uvs)
394 bpy.types.register(IMAGE_HT_header)
395 bpy.types.register(IMAGE_PT_game_properties)
396 bpy.types.register(IMAGE_PT_view_properties)