2 * ***** BEGIN GPL LICENSE BLOCK *****
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * The Original Code is Copyright (C) 2008 Blender Foundation.
19 * All rights reserved.
22 * Contributor(s): Blender Foundation
24 * ***** END GPL LICENSE BLOCK *****
27 /** \file blender/editors/space_image/space_image.c
35 #include "DNA_meshdata_types.h"
36 #include "DNA_object_types.h"
37 #include "DNA_scene_types.h"
39 #include "MEM_guardedalloc.h"
41 #include "BLI_blenlib.h"
43 #include "BLI_editVert.h"
45 #include "BLI_utildefines.h"
47 #include "BKE_colortools.h"
48 #include "BKE_context.h"
49 #include "BKE_image.h"
50 #include "BKE_global.h"
53 #include "BKE_scene.h"
54 #include "BKE_screen.h"
56 #include "IMB_imbuf_types.h"
60 #include "ED_space_api.h"
61 #include "ED_screen.h"
62 #include "ED_uvedit.h"
66 #include "RNA_access.h"
71 #include "UI_resources.h"
72 #include "UI_view2d.h"
74 #include "image_intern.h"
76 /**************************** common state *****************************/
78 /* note; image_panel_properties() uses pointer to sima->image directly */
79 Image *ED_space_image(SpaceImage *sima)
84 /* called to assign images to UV faces */
85 void ED_space_image_set(SpaceImage *sima, Scene *scene, Object *obedit, Image *ima)
87 /* context may be NULL, so use global */
88 ED_uvedit_assign_image(G.main, scene, obedit, ima, sima->image);
90 /* change the space ima after because uvedit_face_visible uses the space ima
91 * to check if the face is displayed in UV-localview */
94 if(ima == NULL || ima->type==IMA_TYPE_R_RESULT || ima->type==IMA_TYPE_COMPOSITE)
95 sima->flag &= ~SI_DRAWTOOL;
98 BKE_image_signal(sima->image, &sima->iuser, IMA_SIGNAL_USER_NEW_IMAGE);
100 if(sima->image && sima->image->id.us==0)
101 sima->image->id.us= 1;
104 WM_main_add_notifier(NC_GEOM|ND_DATA, obedit->data);
106 WM_main_add_notifier(NC_SPACE|ND_SPACE_IMAGE, NULL);
109 ImBuf *ED_space_image_acquire_buffer(SpaceImage *sima, void **lock_r)
113 if(sima && sima->image) {
115 if(sima->image->type==IMA_TYPE_R_RESULT && BIF_show_render_spare())
116 return BIF_render_spare_imbuf();
119 ibuf= BKE_image_acquire_ibuf(sima->image, &sima->iuser, lock_r);
121 if(ibuf && (ibuf->rect || ibuf->rect_float))
128 void ED_space_image_release_buffer(SpaceImage *sima, void *lock)
130 if(sima && sima->image)
131 BKE_image_release_ibuf(sima->image, lock);
134 int ED_space_image_has_buffer(SpaceImage *sima)
140 ibuf= ED_space_image_acquire_buffer(sima, &lock);
141 has_buffer= (ibuf != NULL);
142 ED_space_image_release_buffer(sima, lock);
147 void ED_image_size(Image *ima, int *width, int *height)
153 ibuf= BKE_image_acquire_ibuf(ima, NULL, &lock);
155 if(ibuf && ibuf->x > 0 && ibuf->y > 0) {
165 BKE_image_release_ibuf(ima, lock);
168 void ED_space_image_size(SpaceImage *sima, int *width, int *height)
170 Scene *scene= sima->iuser.scene;
174 ibuf= ED_space_image_acquire_buffer(sima, &lock);
176 if(ibuf && ibuf->x > 0 && ibuf->y > 0) {
180 else if(sima->image && sima->image->type==IMA_TYPE_R_RESULT && scene) {
181 /* not very important, just nice */
182 *width= (scene->r.xsch*scene->r.size)/100;
183 *height= (scene->r.ysch*scene->r.size)/100;
185 if((scene->r.mode & R_BORDER) && (scene->r.mode & R_CROP)) {
186 *width *= (scene->r.border.xmax - scene->r.border.xmin);
187 *height *= (scene->r.border.ymax - scene->r.border.ymin);
191 /* I know a bit weak... but preview uses not actual image size */
192 // XXX else if(image_preview_active(sima, width, height));
198 ED_space_image_release_buffer(sima, lock);
201 void ED_image_aspect(Image *ima, float *aspx, float *aspy)
205 if((ima == NULL) || (ima->type == IMA_TYPE_R_RESULT) || (ima->type == IMA_TYPE_COMPOSITE) ||
206 (ima->aspx==0.0f || ima->aspy==0.0f))
210 *aspy = ima->aspy/ima->aspx;
213 void ED_space_image_aspect(SpaceImage *sima, float *aspx, float *aspy)
215 ED_image_aspect(ED_space_image(sima), aspx, aspy);
218 void ED_space_image_zoom(SpaceImage *sima, ARegion *ar, float *zoomx, float *zoomy)
222 ED_space_image_size(sima, &width, &height);
224 *zoomx= (float)(ar->winrct.xmax - ar->winrct.xmin + 1)/(float)((ar->v2d.cur.xmax - ar->v2d.cur.xmin)*width);
225 *zoomy= (float)(ar->winrct.ymax - ar->winrct.ymin + 1)/(float)((ar->v2d.cur.ymax - ar->v2d.cur.ymin)*height);
228 void ED_space_image_uv_aspect(SpaceImage *sima, float *aspx, float *aspy)
232 ED_space_image_aspect(sima, aspx, aspy);
233 ED_space_image_size(sima, &w, &h);
239 *aspy= *aspy / *aspx;
243 *aspx= *aspx / *aspy;
248 void ED_image_uv_aspect(Image *ima, float *aspx, float *aspy)
252 ED_image_aspect(ima, aspx, aspy);
253 ED_image_size(ima, &w, &h);
259 int ED_space_image_show_render(SpaceImage *sima)
261 return (sima->image && ELEM(sima->image->type, IMA_TYPE_R_RESULT, IMA_TYPE_COMPOSITE));
264 int ED_space_image_show_paint(SpaceImage *sima)
266 if(ED_space_image_show_render(sima))
269 return (sima->flag & SI_DRAWTOOL);
272 int ED_space_image_show_uvedit(SpaceImage *sima, Object *obedit)
274 if(sima && (ED_space_image_show_render(sima) || ED_space_image_show_paint(sima)))
277 if(obedit && obedit->type == OB_MESH) {
278 EditMesh *em = BKE_mesh_get_editmesh(obedit->data);
281 ret = EM_texFaceCheck(em);
283 BKE_mesh_end_editmesh(obedit->data, em);
290 int ED_space_image_show_uvshadow(SpaceImage *sima, Object *obedit)
292 if(ED_space_image_show_render(sima))
295 if(ED_space_image_show_paint(sima))
296 if(obedit && obedit->type == OB_MESH) {
297 EditMesh *em = BKE_mesh_get_editmesh(obedit->data);
300 ret = EM_texFaceCheck(em);
302 BKE_mesh_end_editmesh(obedit->data, em);
310 static void image_scopes_tag_refresh(ScrArea *sa)
312 SpaceImage *sima= (SpaceImage *)sa->spacedata.first;
315 /* only while histogram is visible */
316 for (ar=sa->regionbase.first; ar; ar=ar->next) {
317 if (ar->regiontype == RGN_TYPE_PREVIEW && ar->flag & RGN_FLAG_HIDDEN)
325 /* ******************** manage regions ********************* */
327 ARegion *image_has_buttons_region(ScrArea *sa)
331 ar= BKE_area_find_region_type(sa, RGN_TYPE_UI);
334 /* add subdiv level; after header */
335 ar= BKE_area_find_region_type(sa, RGN_TYPE_HEADER);
338 if(ar==NULL) return NULL;
340 arnew= MEM_callocN(sizeof(ARegion), "buttons for image");
342 BLI_insertlinkafter(&sa->regionbase, ar, arnew);
343 arnew->regiontype= RGN_TYPE_UI;
344 arnew->alignment= RGN_ALIGN_LEFT;
346 arnew->flag = RGN_FLAG_HIDDEN;
351 ARegion *image_has_scope_region(ScrArea *sa)
355 ar= BKE_area_find_region_type(sa, RGN_TYPE_PREVIEW);
358 /* add subdiv level; after buttons */
359 ar= BKE_area_find_region_type(sa, RGN_TYPE_UI);
362 if(ar==NULL) return NULL;
364 arnew= MEM_callocN(sizeof(ARegion), "scopes for image");
366 BLI_insertlinkafter(&sa->regionbase, ar, arnew);
367 arnew->regiontype= RGN_TYPE_PREVIEW;
368 arnew->alignment= RGN_ALIGN_RIGHT;
370 arnew->flag = RGN_FLAG_HIDDEN;
372 image_scopes_tag_refresh(sa);
377 /* ******************** default callbacks for image space ***************** */
379 static SpaceLink *image_new(const bContext *UNUSED(C))
384 simage= MEM_callocN(sizeof(SpaceImage), "initimage");
385 simage->spacetype= SPACE_IMAGE;
390 simage->iuser.fie_ima= 2;
391 simage->iuser.frames= 100;
393 scopes_new(&simage->scopes);
394 simage->sample_line_hist.height= 100;
397 ar= MEM_callocN(sizeof(ARegion), "header for image");
399 BLI_addtail(&simage->regionbase, ar);
400 ar->regiontype= RGN_TYPE_HEADER;
401 ar->alignment= RGN_ALIGN_BOTTOM;
403 /* buttons/list view */
404 ar= MEM_callocN(sizeof(ARegion), "buttons for image");
406 BLI_addtail(&simage->regionbase, ar);
407 ar->regiontype= RGN_TYPE_UI;
408 ar->alignment= RGN_ALIGN_LEFT;
409 ar->flag = RGN_FLAG_HIDDEN;
412 ar= MEM_callocN(sizeof(ARegion), "buttons for image");
414 BLI_addtail(&simage->regionbase, ar);
415 ar->regiontype= RGN_TYPE_PREVIEW;
416 ar->alignment= RGN_ALIGN_RIGHT;
417 ar->flag = RGN_FLAG_HIDDEN;
420 ar= MEM_callocN(sizeof(ARegion), "main area for image");
422 BLI_addtail(&simage->regionbase, ar);
423 ar->regiontype= RGN_TYPE_WINDOW;
425 return (SpaceLink *)simage;
428 /* not spacelink itself */
429 static void image_free(SpaceLink *sl)
431 SpaceImage *simage= (SpaceImage*) sl;
434 curvemapping_free(simage->cumap);
435 scopes_free(&simage->scopes);
439 /* spacetype; init callback, add handlers */
440 static void image_init(struct wmWindowManager *UNUSED(wm), ScrArea *sa)
442 ListBase *lb= WM_dropboxmap_find("Image", SPACE_IMAGE, 0);
445 WM_event_add_dropbox_handler(&sa->handlers, lb);
449 static SpaceLink *image_duplicate(SpaceLink *sl)
451 SpaceImage *simagen= MEM_dupallocN(sl);
453 /* clear or remove stuff from old */
455 simagen->cumap= curvemapping_copy(simagen->cumap);
457 scopes_new(&simagen->scopes);
459 return (SpaceLink *)simagen;
462 static void image_operatortypes(void)
464 WM_operatortype_append(IMAGE_OT_view_all);
465 WM_operatortype_append(IMAGE_OT_view_pan);
466 WM_operatortype_append(IMAGE_OT_view_selected);
467 WM_operatortype_append(IMAGE_OT_view_zoom);
468 WM_operatortype_append(IMAGE_OT_view_zoom_in);
469 WM_operatortype_append(IMAGE_OT_view_zoom_out);
470 WM_operatortype_append(IMAGE_OT_view_zoom_ratio);
471 WM_operatortype_append(IMAGE_OT_view_ndof);
473 WM_operatortype_append(IMAGE_OT_new);
474 WM_operatortype_append(IMAGE_OT_open);
475 WM_operatortype_append(IMAGE_OT_replace);
476 WM_operatortype_append(IMAGE_OT_reload);
477 WM_operatortype_append(IMAGE_OT_save);
478 WM_operatortype_append(IMAGE_OT_save_as);
479 WM_operatortype_append(IMAGE_OT_save_sequence);
480 WM_operatortype_append(IMAGE_OT_pack);
481 WM_operatortype_append(IMAGE_OT_unpack);
483 WM_operatortype_append(IMAGE_OT_invert);
485 WM_operatortype_append(IMAGE_OT_cycle_render_slot);
487 WM_operatortype_append(IMAGE_OT_sample);
488 WM_operatortype_append(IMAGE_OT_sample_line);
489 WM_operatortype_append(IMAGE_OT_curves_point_set);
491 WM_operatortype_append(IMAGE_OT_record_composite);
493 WM_operatortype_append(IMAGE_OT_properties);
494 WM_operatortype_append(IMAGE_OT_scopes);
497 static void image_keymap(struct wmKeyConfig *keyconf)
499 wmKeyMap *keymap= WM_keymap_find(keyconf, "Image Generic", SPACE_IMAGE, 0);
502 WM_keymap_add_item(keymap, "IMAGE_OT_new", NKEY, KM_PRESS, KM_ALT, 0);
503 WM_keymap_add_item(keymap, "IMAGE_OT_open", OKEY, KM_PRESS, KM_ALT, 0);
504 WM_keymap_add_item(keymap, "IMAGE_OT_reload", RKEY, KM_PRESS, KM_ALT, 0);
505 WM_keymap_add_item(keymap, "IMAGE_OT_save", SKEY, KM_PRESS, KM_ALT, 0);
506 WM_keymap_add_item(keymap, "IMAGE_OT_save_as", F3KEY, KM_PRESS, 0, 0);
507 WM_keymap_add_item(keymap, "IMAGE_OT_properties", NKEY, KM_PRESS, 0, 0);
508 WM_keymap_add_item(keymap, "IMAGE_OT_scopes", TKEY, KM_PRESS, 0, 0);
510 WM_keymap_add_item(keymap, "IMAGE_OT_cycle_render_slot", JKEY, KM_PRESS, 0, 0);
511 RNA_boolean_set(WM_keymap_add_item(keymap, "IMAGE_OT_cycle_render_slot", JKEY, KM_PRESS, KM_ALT, 0)->ptr, "reverse", TRUE);
513 keymap= WM_keymap_find(keyconf, "Image", SPACE_IMAGE, 0);
515 WM_keymap_add_item(keymap, "IMAGE_OT_view_all", HOMEKEY, KM_PRESS, 0, 0);
516 WM_keymap_add_item(keymap, "IMAGE_OT_view_selected", PADPERIOD, KM_PRESS, 0, 0);
517 WM_keymap_add_item(keymap, "IMAGE_OT_view_pan", MIDDLEMOUSE, KM_PRESS, 0, 0);
518 WM_keymap_add_item(keymap, "IMAGE_OT_view_pan", MIDDLEMOUSE, KM_PRESS, KM_SHIFT, 0);
519 WM_keymap_add_item(keymap, "IMAGE_OT_view_pan", MOUSEPAN, 0, 0, 0);
521 WM_keymap_add_item(keymap, "IMAGE_OT_view_all", NDOF_BUTTON_FIT, KM_PRESS, 0, 0); // or view selected?
522 WM_keymap_add_item(keymap, "IMAGE_OT_view_ndof", NDOF_MOTION, 0, 0, 0);
524 WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_in", WHEELINMOUSE, KM_PRESS, 0, 0);
525 WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_out", WHEELOUTMOUSE, KM_PRESS, 0, 0);
526 WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_in", PADPLUSKEY, KM_PRESS, 0, 0);
527 WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_out", PADMINUS, KM_PRESS, 0, 0);
528 WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom", MIDDLEMOUSE, KM_PRESS, KM_CTRL, 0);
529 WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom", MOUSEZOOM, 0, 0, 0);
531 RNA_float_set(WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_ratio", PAD8, KM_PRESS, KM_SHIFT, 0)->ptr, "ratio", 8.0f);
532 RNA_float_set(WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_ratio", PAD4, KM_PRESS, KM_SHIFT, 0)->ptr, "ratio", 4.0f);
533 RNA_float_set(WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_ratio", PAD2, KM_PRESS, KM_SHIFT, 0)->ptr, "ratio", 2.0f);
534 RNA_float_set(WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_ratio", PAD1, KM_PRESS, 0, 0)->ptr, "ratio", 1.0f);
535 RNA_float_set(WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_ratio", PAD2, KM_PRESS, 0, 0)->ptr, "ratio", 0.5f);
536 RNA_float_set(WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_ratio", PAD4, KM_PRESS, 0, 0)->ptr, "ratio", 0.25f);
537 RNA_float_set(WM_keymap_add_item(keymap, "IMAGE_OT_view_zoom_ratio", PAD8, KM_PRESS, 0, 0)->ptr, "ratio", 0.125f);
539 WM_keymap_add_item(keymap, "IMAGE_OT_sample", ACTIONMOUSE, KM_PRESS, 0, 0);
540 RNA_enum_set(WM_keymap_add_item(keymap, "IMAGE_OT_curves_point_set", ACTIONMOUSE, KM_PRESS, KM_CTRL, 0)->ptr, "point", 0);
541 RNA_enum_set(WM_keymap_add_item(keymap, "IMAGE_OT_curves_point_set", ACTIONMOUSE, KM_PRESS, KM_SHIFT, 0)->ptr, "point", 1);
543 /* toggle editmode is handy to have while UV unwrapping */
544 kmi= WM_keymap_add_item(keymap, "OBJECT_OT_mode_set", TABKEY, KM_PRESS, 0, 0);
545 RNA_enum_set(kmi->ptr, "mode", OB_MODE_EDIT);
546 RNA_boolean_set(kmi->ptr, "toggle", 1);
550 static int image_drop_poll(bContext *UNUSED(C), wmDrag *drag, wmEvent *UNUSED(event))
552 if(drag->type==WM_DRAG_PATH)
553 if(ELEM3(drag->icon, 0, ICON_FILE_IMAGE, ICON_FILE_BLANK)) /* rule might not work? */
558 static void image_drop_copy(wmDrag *drag, wmDropBox *drop)
560 /* copy drag path to properties */
561 RNA_string_set(drop->ptr, "filepath", drag->path);
564 /* area+region dropbox definition */
565 static void image_dropboxes(void)
567 ListBase *lb= WM_dropboxmap_find("Image", SPACE_IMAGE, 0);
569 WM_dropbox_add(lb, "IMAGE_OT_open", image_drop_poll, image_drop_copy);
574 static void image_refresh(const bContext *C, ScrArea *UNUSED(sa))
576 Scene *scene = CTX_data_scene(C);
577 SpaceImage *sima= CTX_wm_space_image(C);
578 Object *obedit= CTX_data_edit_object(C);
581 ima= ED_space_image(sima);
583 if(sima->iuser.flag & IMA_ANIM_ALWAYS)
584 BKE_image_user_calc_frame(&sima->iuser, CTX_data_scene(C)->r.cfra, 0);
586 /* check if we have to set the image from the editmesh */
587 if(ima && (ima->source==IMA_SRC_VIEWER || sima->pin));
588 else if(obedit && obedit->type == OB_MESH) {
589 Mesh *me= (Mesh*)obedit->data;
590 EditMesh *em= BKE_mesh_get_editmesh(me);
591 int sloppy= 1; /* partially selected face is ok */
593 if(scene_use_new_shading_nodes(scene)) {
594 /* new shading system, get image from material */
595 EditFace *efa= EM_get_actFace(em, sloppy);
599 ED_object_get_active_image(obedit, efa->mat_nr, &node_ima, NULL, NULL);
602 sima->image= node_ima;
606 /* old shading system, we set texface */
609 if(em && EM_texFaceCheck(em)) {
612 tf = EM_get_active_mtface(em, NULL, NULL, sloppy);
615 /* don't need to check for pin here, see above */
616 sima->image= tf->tpage;
618 if(sima->flag & SI_EDITTILE);
619 else sima->curtile= tf->tile;
624 BKE_mesh_end_editmesh(obedit->data, em);
628 static void image_listener(ScrArea *sa, wmNotifier *wmn)
630 SpaceImage *sima= (SpaceImage *)sa->spacedata.first;
632 /* context changes */
633 switch(wmn->category) {
637 image_scopes_tag_refresh(sa);
638 ED_area_tag_refresh(sa);
639 ED_area_tag_redraw(sa);
642 case ND_RENDER_RESULT:
643 case ND_COMPO_RESULT:
644 if (ED_space_image_show_render(sima))
645 image_scopes_tag_refresh(sa);
646 ED_area_tag_refresh(sa);
647 ED_area_tag_redraw(sa);
652 if (wmn->reference == sima->image || !wmn->reference) {
653 image_scopes_tag_refresh(sa);
654 ED_area_tag_refresh(sa);
655 ED_area_tag_redraw(sa);
659 if(wmn->data == ND_SPACE_IMAGE) {
660 image_scopes_tag_refresh(sa);
661 ED_area_tag_redraw(sa);
668 image_scopes_tag_refresh(sa);
669 ED_area_tag_refresh(sa);
670 ED_area_tag_redraw(sa);
675 Object *ob= (Object *)wmn->reference;
679 if(ob && (ob->mode & OB_MODE_EDIT) && sima->lock && (sima->flag & SI_DRAWSHADOW)) {
680 ED_area_tag_refresh(sa);
681 ED_area_tag_redraw(sa);
689 const char *image_context_dir[] = {"edit_image", NULL};
691 static int image_context(const bContext *C, const char *member, bContextDataResult *result)
693 SpaceImage *sima= CTX_wm_space_image(C);
695 if(CTX_data_dir(member)) {
696 CTX_data_dir_set(result, image_context_dir);
698 else if(CTX_data_equals(member, "edit_image")) {
699 CTX_data_id_pointer_set(result, (ID*)ED_space_image(sima));
706 /************************** main region ***************************/
708 /* sets up the fields of the View2D from zoom and offset */
709 static void image_main_area_set_view2d(SpaceImage *sima, ARegion *ar)
711 Image *ima= ED_space_image(sima);
713 int width, height, winx, winy;
716 if(image_preview_active(curarea, &width, &height));
719 ED_space_image_size(sima, &width, &height);
725 h *= ima->aspy/ima->aspx;
727 winx= ar->winrct.xmax - ar->winrct.xmin + 1;
728 winy= ar->winrct.ymax - ar->winrct.ymin + 1;
735 ar->v2d.mask.xmin= ar->v2d.mask.ymin= 0;
736 ar->v2d.mask.xmax= winx;
737 ar->v2d.mask.ymax= winy;
739 /* which part of the image space do we see? */
740 x1= ar->winrct.xmin+(winx-sima->zoom*w)/2.0f;
741 y1= ar->winrct.ymin+(winy-sima->zoom*h)/2.0f;
743 x1-= sima->zoom*sima->xof;
744 y1-= sima->zoom*sima->yof;
746 /* relative display right */
747 ar->v2d.cur.xmin= ((ar->winrct.xmin - (float)x1)/sima->zoom);
748 ar->v2d.cur.xmax= ar->v2d.cur.xmin + ((float)winx/sima->zoom);
750 /* relative display left */
751 ar->v2d.cur.ymin= ((ar->winrct.ymin-(float)y1)/sima->zoom);
752 ar->v2d.cur.ymax= ar->v2d.cur.ymin + ((float)winy/sima->zoom);
754 /* normalize 0.0..1.0 */
755 ar->v2d.cur.xmin /= w;
756 ar->v2d.cur.xmax /= w;
757 ar->v2d.cur.ymin /= h;
758 ar->v2d.cur.ymax /= h;
761 /* add handlers, stuff you only do once or on area/region changes */
762 static void image_main_area_init(wmWindowManager *wm, ARegion *ar)
766 // image space manages own v2d
767 // UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_STANDARD, ar->winx, ar->winy);
769 /* image paint polls for mode */
770 keymap= WM_keymap_find(wm->defaultconf, "Image Paint", 0, 0);
771 WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
773 keymap= WM_keymap_find(wm->defaultconf, "UV Editor", 0, 0);
774 WM_event_add_keymap_handler(&ar->handlers, keymap);
777 keymap= WM_keymap_find(wm->defaultconf, "Image Generic", SPACE_IMAGE, 0);
778 WM_event_add_keymap_handler(&ar->handlers, keymap);
779 keymap= WM_keymap_find(wm->defaultconf, "Image", SPACE_IMAGE, 0);
780 WM_event_add_keymap_handler_bb(&ar->handlers, keymap, &ar->v2d.mask, &ar->winrct);
784 static void image_main_area_draw(const bContext *C, ARegion *ar)
786 /* draw entirely, view changes should be handled here */
787 SpaceImage *sima= CTX_wm_space_image(C);
788 Object *obedit= CTX_data_edit_object(C);
789 Scene *scene= CTX_data_scene(C);
790 View2D *v2d= &ar->v2d;
791 //View2DScrollers *scrollers;
794 /* XXX not supported yet, disabling for now */
795 scene->r.scemode &= ~R_COMP_CROP;
797 /* clear and setup matrix */
798 UI_GetThemeColor3fv(TH_BACK, col);
799 glClearColor(col[0], col[1], col[2], 0.0);
800 glClear(GL_COLOR_BUFFER_BIT);
802 /* put scene context variable in iuser */
803 sima->iuser.scene= scene;
805 /* we set view2d from own zoom and offset each time */
806 image_main_area_set_view2d(sima, ar);
808 /* we draw image in pixelspace */
809 draw_image_main(sima, ar, scene);
811 /* and uvs in 0.0-1.0 space */
812 UI_view2d_view_ortho(v2d);
813 draw_uvedit_main(sima, ar, scene, obedit);
815 ED_region_draw_cb_draw(C, ar, REGION_DRAW_POST_VIEW);
817 /* Grease Pencil too (in addition to UV's) */
818 draw_image_grease_pencil((bContext *)C, 1);
820 UI_view2d_view_restore(C);
822 /* draw Grease Pencil - screen space only */
823 draw_image_grease_pencil((bContext *)C, 0);
826 /*scrollers= UI_view2d_scrollers_calc(C, v2d, V2D_UNIT_VALUES, V2D_GRID_CLAMP, V2D_ARG_DUMMY, V2D_ARG_DUMMY);
827 UI_view2d_scrollers_draw(C, v2d, scrollers);
828 UI_view2d_scrollers_free(scrollers);*/
831 static void image_main_area_listener(ARegion *ar, wmNotifier *wmn)
833 /* context changes */
834 switch(wmn->category) {
836 if (wmn->data==ND_GPENCIL)
837 ED_region_tag_redraw(ar);
842 /* *********************** buttons region ************************ */
844 /* add handlers, stuff you only do once or on area/region changes */
845 static void image_buttons_area_init(wmWindowManager *wm, ARegion *ar)
849 ED_region_panels_init(wm, ar);
851 keymap= WM_keymap_find(wm->defaultconf, "Image Generic", SPACE_IMAGE, 0);
852 WM_event_add_keymap_handler(&ar->handlers, keymap);
855 static void image_buttons_area_draw(const bContext *C, ARegion *ar)
857 ED_region_panels(C, ar, 1, NULL, -1);
860 static void image_buttons_area_listener(ARegion *ar, wmNotifier *wmn)
862 /* context changes */
863 switch(wmn->category) {
865 if (wmn->data==ND_GPENCIL)
866 ED_region_tag_redraw(ar);
869 if(wmn->action==NA_EDITED)
870 ED_region_tag_redraw(ar);
875 /* *********************** scopes region ************************ */
877 /* add handlers, stuff you only do once or on area/region changes */
878 static void image_scope_area_init(wmWindowManager *wm, ARegion *ar)
882 ED_region_panels_init(wm, ar);
884 keymap= WM_keymap_find(wm->defaultconf, "Image Generic", SPACE_IMAGE, 0);
885 WM_event_add_keymap_handler(&ar->handlers, keymap);
888 static void image_scope_area_draw(const bContext *C, ARegion *ar)
890 SpaceImage *sima= CTX_wm_space_image(C);
891 Scene *scene= CTX_data_scene(C);
893 ImBuf *ibuf= ED_space_image_acquire_buffer(sima, &lock);
895 scopes_update(&sima->scopes, ibuf, scene->r.color_mgt_flag & R_COLOR_MANAGEMENT );
897 ED_space_image_release_buffer(sima, lock);
899 ED_region_panels(C, ar, 1, NULL, -1);
902 static void image_scope_area_listener(ARegion *ar, wmNotifier *wmn)
904 /* context changes */
905 switch(wmn->category) {
909 case ND_RENDER_RESULT:
910 case ND_COMPO_RESULT:
911 ED_region_tag_redraw(ar);
916 ED_region_tag_redraw(ar);
919 ED_region_tag_redraw(ar);
925 /************************* header region **************************/
927 /* add handlers, stuff you only do once or on area/region changes */
928 static void image_header_area_init(wmWindowManager *UNUSED(wm), ARegion *ar)
930 ED_region_header_init(ar);
933 static void image_header_area_draw(const bContext *C, ARegion *ar)
935 ED_region_header(C, ar);
938 static void image_header_area_listener(ARegion *ar, wmNotifier *wmn)
940 /* context changes */
941 switch(wmn->category) {
945 case ND_TOOLSETTINGS:
946 ED_region_tag_redraw(ar);
954 ED_region_tag_redraw(ar);
961 /**************************** spacetype *****************************/
963 /* only called once, from space/spacetypes.c */
964 void ED_spacetype_image(void)
966 SpaceType *st= MEM_callocN(sizeof(SpaceType), "spacetype image");
969 st->spaceid= SPACE_IMAGE;
970 strncpy(st->name, "Image", BKE_ST_MAXNAME);
973 st->free= image_free;
974 st->init= image_init;
975 st->duplicate= image_duplicate;
976 st->operatortypes= image_operatortypes;
977 st->keymap= image_keymap;
978 st->dropboxes= image_dropboxes;
979 st->refresh= image_refresh;
980 st->listener= image_listener;
981 st->context= image_context;
983 /* regions: main window */
984 art= MEM_callocN(sizeof(ARegionType), "spacetype image region");
985 art->regionid = RGN_TYPE_WINDOW;
986 art->keymapflag= ED_KEYMAP_FRAMES|ED_KEYMAP_GPENCIL;
987 art->init= image_main_area_init;
988 art->draw= image_main_area_draw;
989 art->listener= image_main_area_listener;
991 BLI_addhead(&st->regiontypes, art);
993 /* regions: listview/buttons */
994 art= MEM_callocN(sizeof(ARegionType), "spacetype image region");
995 art->regionid = RGN_TYPE_UI;
996 art->prefsizex= 220; // XXX
997 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_FRAMES;
998 art->listener= image_buttons_area_listener;
999 art->init= image_buttons_area_init;
1000 art->draw= image_buttons_area_draw;
1001 BLI_addhead(&st->regiontypes, art);
1003 image_buttons_register(art);
1004 ED_uvedit_buttons_register(art);
1006 /* regions: statistics/scope buttons */
1007 art= MEM_callocN(sizeof(ARegionType), "spacetype image region");
1008 art->regionid = RGN_TYPE_PREVIEW;
1009 art->prefsizex= 220; // XXX
1010 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_FRAMES;
1011 art->listener= image_scope_area_listener;
1012 art->init= image_scope_area_init;
1013 art->draw= image_scope_area_draw;
1014 BLI_addhead(&st->regiontypes, art);
1016 /* regions: header */
1017 art= MEM_callocN(sizeof(ARegionType), "spacetype image region");
1018 art->regionid = RGN_TYPE_HEADER;
1019 art->prefsizey= HEADERY;
1020 art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_VIEW2D|ED_KEYMAP_FRAMES|ED_KEYMAP_HEADER;
1021 art->listener= image_header_area_listener;
1022 art->init= image_header_area_init;
1023 art->draw= image_header_area_draw;
1025 BLI_addhead(&st->regiontypes, art);
1027 BKE_spacetype_register(st);