4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
21 * All rights reserved.
23 * Contributors: Blender Foundation, full recode
25 * ***** END GPL LICENSE BLOCK *****
28 /** \file blender/editors/interface/interface_icons.c
29 * \ingroup edinterface
42 #include "BLI_winstuff.h"
44 #include "MEM_guardedalloc.h"
46 #include "GPU_extensions.h"
49 #include "BLI_blenlib.h"
50 #include "BLI_storage_types.h"
51 #include "BLI_utildefines.h"
53 #include "DNA_brush_types.h"
54 #include "DNA_object_types.h"
55 #include "DNA_screen_types.h"
56 #include "DNA_space_types.h"
58 #include "RNA_access.h"
59 #include "RNA_enum_types.h"
61 #include "BKE_context.h"
62 #include "BKE_global.h"
63 #include "BKE_icons.h"
64 #include "BKE_utildefines.h"
66 #include "IMB_imbuf.h"
67 #include "IMB_imbuf_types.h"
70 #include "BIF_glutil.h"
72 #include "ED_datafiles.h"
73 #include "ED_render.h"
75 #include "UI_interface.h"
76 #include "UI_interface_icons.h"
78 #include "interface_intern.h"
81 #define ICON_IMAGE_W 600
82 #define ICON_IMAGE_H 640
84 #define ICON_GRID_COLS 26
85 #define ICON_GRID_ROWS 30
87 #define ICON_GRID_MARGIN 5
88 #define ICON_GRID_W 16
89 #define ICON_GRID_H 16
91 typedef struct IconImage {
97 typedef void (*VectorDrawFunc)(int x, int y, int w, int h, float alpha);
99 #define ICON_TYPE_PREVIEW 0
100 #define ICON_TYPE_TEXTURE 1
101 #define ICON_TYPE_BUFFER 2
102 #define ICON_TYPE_VECTOR 3
104 typedef struct DrawInfo {
108 /* type specific data */
121 typedef struct IconTexture {
129 /* ******************* STATIC LOCAL VARS ******************* */
130 /* static here to cache results of icon directory scan, so it's not
131 * scanning the filesystem each time the menu is drawn */
132 static struct ListBase iconfilelist = {NULL, NULL};
133 static IconTexture icongltex = {0, 0, 0, 0.0f, 0.0f};
135 /* **************************************************** */
137 static void def_internal_icon(ImBuf *bbuf, int icon_id, int xofs, int yofs, int size, int type)
139 Icon *new_icon = NULL;
140 IconImage *iimg = NULL;
145 new_icon = MEM_callocN(sizeof(Icon), "texicon");
147 new_icon->obj = NULL; /* icon is not for library object */
150 di = MEM_callocN(sizeof(DrawInfo), "drawinfo");
153 if(type == ICON_TYPE_TEXTURE) {
154 di->data.texture.x= xofs;
155 di->data.texture.y= yofs;
156 di->data.texture.w= size;
157 di->data.texture.h= size;
159 else if(type == ICON_TYPE_BUFFER) {
160 iimg = MEM_mallocN(sizeof(IconImage), "icon_img");
161 iimg->rect = MEM_mallocN(size*size*sizeof(unsigned int), "icon_rect");
165 /* Here we store the rect in the icon - same as before */
167 for (y=0; y<size; y++) {
168 memcpy(&iimg->rect[y*size], &bbuf->rect[(y+yofs)*imgsize+xofs], size*sizeof(int));
171 di->data.buffer.image = iimg;
174 new_icon->drawinfo_free = UI_icons_free_drawinfo;
175 new_icon->drawinfo = di;
177 BKE_icon_set(icon_id, new_icon);
180 static void def_internal_vicon( int icon_id, VectorDrawFunc drawFunc)
182 Icon *new_icon = NULL;
185 new_icon = MEM_callocN(sizeof(Icon), "texicon");
187 new_icon->obj = NULL; /* icon is not for library object */
190 di = MEM_callocN(sizeof(DrawInfo), "drawinfo");
191 di->type= ICON_TYPE_VECTOR;
192 di->data.vector.func =drawFunc;
194 new_icon->drawinfo_free = NULL;
195 new_icon->drawinfo = di;
197 BKE_icon_set(icon_id, new_icon);
200 /* Vector Icon Drawing Routines */
204 static void viconutil_set_point(GLint pt[2], int x, int y)
210 static void viconutil_draw_tri(GLint (*pts)[2])
212 glBegin(GL_TRIANGLES);
219 static void viconutil_draw_lineloop(GLint (*pts)[2], int numPoints)
223 glBegin(GL_LINE_LOOP);
224 for (i=0; i<numPoints; i++) {
230 static void viconutil_draw_lineloop_smooth(GLint (*pts)[2], int numPoints)
232 glEnable(GL_LINE_SMOOTH);
233 viconutil_draw_lineloop(pts, numPoints);
234 glDisable(GL_LINE_SMOOTH);
237 static void viconutil_draw_points(GLint (*pts)[2], int numPoints, int pointSize)
242 for (i=0; i<numPoints; i++) {
243 int x = pts[i][0], y = pts[i][1];
245 glVertex2i(x-pointSize,y-pointSize);
246 glVertex2i(x+pointSize,y-pointSize);
247 glVertex2i(x+pointSize,y+pointSize);
248 glVertex2i(x-pointSize,y+pointSize);
253 /* Drawing functions */
255 static void vicon_x_draw(int x, int y, int w, int h, float alpha)
262 glEnable( GL_LINE_SMOOTH );
266 glColor4f(0.0, 0.0, 0.0, alpha);
276 glDisable( GL_LINE_SMOOTH );
279 static void vicon_view3d_draw(int x, int y, int w, int h, float alpha)
283 int d = MAX2(2, h/3);
285 glColor4f(0.5, 0.5, 0.5, alpha);
287 glVertex2i(x , cy-d);
288 glVertex2i(x+w, cy-d);
289 glVertex2i(x , cy+d);
290 glVertex2i(x+w, cy+d);
292 glVertex2i(cx-d, y );
293 glVertex2i(cx-d, y+h);
294 glVertex2i(cx+d, y );
295 glVertex2i(cx+d, y+h);
298 glColor4f(0.0, 0.0, 0.0, alpha);
307 static void vicon_edit_draw(int x, int y, int w, int h, float alpha)
311 viconutil_set_point(pts[0], x+3 , y+3 );
312 viconutil_set_point(pts[1], x+w-3, y+3 );
313 viconutil_set_point(pts[2], x+w-3, y+h-3);
314 viconutil_set_point(pts[3], x+3 , y+h-3);
316 glColor4f(0.0, 0.0, 0.0, alpha);
317 viconutil_draw_lineloop(pts, 4);
319 glColor3f(1, 1, 0.0);
320 viconutil_draw_points(pts, 4, 1);
323 static void vicon_editmode_hlt_draw(int x, int y, int w, int h, float alpha)
327 viconutil_set_point(pts[0], x+w/2, y+h-2);
328 viconutil_set_point(pts[1], x+3, y+4);
329 viconutil_set_point(pts[2], x+w-3, y+4);
331 glColor4f(0.5, 0.5, 0.5, alpha);
332 viconutil_draw_tri(pts);
334 glColor4f(0.0, 0.0, 0.0, 1);
335 viconutil_draw_lineloop_smooth(pts, 3);
337 glColor3f(1, 1, 0.0);
338 viconutil_draw_points(pts, 3, 1);
341 static void vicon_editmode_dehlt_draw(int x, int y, int w, int h, float UNUSED(alpha))
345 viconutil_set_point(pts[0], x+w/2, y+h-2);
346 viconutil_set_point(pts[1], x+3, y+4);
347 viconutil_set_point(pts[2], x+w-3, y+4);
349 glColor4f(0.0f, 0.0f, 0.0f, 1);
350 viconutil_draw_lineloop_smooth(pts, 3);
352 glColor3f(.9f, .9f, .9f);
353 viconutil_draw_points(pts, 3, 1);
356 static void vicon_disclosure_tri_right_draw(int x, int y, int w, int UNUSED(h), float alpha)
361 int d = w/3, d2 = w/5;
363 viconutil_set_point(pts[0], cx-d2, cy+d);
364 viconutil_set_point(pts[1], cx-d2, cy-d);
365 viconutil_set_point(pts[2], cx+d2, cy);
367 glShadeModel(GL_SMOOTH);
368 glBegin(GL_TRIANGLES);
369 glColor4f(0.8f, 0.8f, 0.8f, alpha);
372 glColor4f(0.3f, 0.3f, 0.3f, alpha);
375 glShadeModel(GL_FLAT);
377 glColor4f(0.0f, 0.0f, 0.0f, 1);
378 viconutil_draw_lineloop_smooth(pts, 3);
381 static void vicon_small_tri_right_draw(int x, int y, int w, int UNUSED(h), float alpha)
386 int d = w/5, d2 = w/7;
388 viconutil_set_point(pts[0], cx-d2, cy+d);
389 viconutil_set_point(pts[1], cx-d2, cy-d);
390 viconutil_set_point(pts[2], cx+d2, cy);
392 glColor4f(0.2f, 0.2f, 0.2f, alpha);
394 glShadeModel(GL_SMOOTH);
395 glBegin(GL_TRIANGLES);
400 glShadeModel(GL_FLAT);
403 static void vicon_disclosure_tri_down_draw(int x, int y, int w, int UNUSED(h), float alpha)
408 int d = w/3, d2 = w/5;
410 viconutil_set_point(pts[0], cx+d, cy+d2);
411 viconutil_set_point(pts[1], cx-d, cy+d2);
412 viconutil_set_point(pts[2], cx, cy-d2);
414 glShadeModel(GL_SMOOTH);
415 glBegin(GL_TRIANGLES);
416 glColor4f(0.8f, 0.8f, 0.8f, alpha);
419 glColor4f(0.3f, 0.3f, 0.3f, alpha);
422 glShadeModel(GL_FLAT);
424 glColor4f(0.0f, 0.0f, 0.0f, 1);
425 viconutil_draw_lineloop_smooth(pts, 3);
428 static void vicon_move_up_draw(int x, int y, int w, int h, float UNUSED(alpha))
432 glEnable(GL_LINE_SMOOTH);
434 glColor3f(0.0, 0.0, 0.0);
436 glBegin(GL_LINE_STRIP);
437 glVertex2i(x+w/2-d*2, y+h/2+d);
438 glVertex2i(x+w/2, y+h/2-d + 1);
439 glVertex2i(x+w/2+d*2, y+h/2+d);
443 glDisable(GL_LINE_SMOOTH);
446 static void vicon_move_down_draw(int x, int y, int w, int h, float UNUSED(alpha))
450 glEnable(GL_LINE_SMOOTH);
452 glColor3f(0.0, 0.0, 0.0);
454 glBegin(GL_LINE_STRIP);
455 glVertex2i(x+w/2-d*2, y+h/2+d);
456 glVertex2i(x+w/2, y+h/2-d - 1);
457 glVertex2i(x+w/2+d*2, y+h/2+d);
461 glDisable(GL_LINE_SMOOTH);
464 #ifndef WITH_HEADLESS
465 static void init_brush_icons(void)
468 #define INIT_BRUSH_ICON(icon_id, name) \
469 bbuf = IMB_ibImageFromMemory((unsigned char*)datatoc_ ##name## _png, \
470 datatoc_ ##name## _png_size, IB_rect); \
471 def_internal_icon(bbuf, icon_id, 0, 0, w, ICON_TYPE_BUFFER); \
473 // end INIT_BRUSH_ICON
478 INIT_BRUSH_ICON(ICON_BRUSH_ADD, add);
479 INIT_BRUSH_ICON(ICON_BRUSH_BLOB, blob);
480 INIT_BRUSH_ICON(ICON_BRUSH_BLUR, blur);
481 INIT_BRUSH_ICON(ICON_BRUSH_CLAY, clay);
482 INIT_BRUSH_ICON(ICON_BRUSH_CLONE, clone);
483 INIT_BRUSH_ICON(ICON_BRUSH_CREASE, crease);
484 INIT_BRUSH_ICON(ICON_BRUSH_DARKEN, darken);
485 INIT_BRUSH_ICON(ICON_BRUSH_SCULPT_DRAW, draw);
486 INIT_BRUSH_ICON(ICON_BRUSH_FILL, fill);
487 INIT_BRUSH_ICON(ICON_BRUSH_FLATTEN, flatten);
488 INIT_BRUSH_ICON(ICON_BRUSH_GRAB, grab);
489 INIT_BRUSH_ICON(ICON_BRUSH_INFLATE, inflate);
490 INIT_BRUSH_ICON(ICON_BRUSH_LAYER, layer);
491 INIT_BRUSH_ICON(ICON_BRUSH_LIGHTEN, lighten);
492 INIT_BRUSH_ICON(ICON_BRUSH_MIX, mix);
493 INIT_BRUSH_ICON(ICON_BRUSH_MULTIPLY, multiply);
494 INIT_BRUSH_ICON(ICON_BRUSH_NUDGE, nudge);
495 INIT_BRUSH_ICON(ICON_BRUSH_PINCH, pinch);
496 INIT_BRUSH_ICON(ICON_BRUSH_SCRAPE, scrape);
497 INIT_BRUSH_ICON(ICON_BRUSH_SMEAR, smear);
498 INIT_BRUSH_ICON(ICON_BRUSH_SMOOTH, smooth);
499 INIT_BRUSH_ICON(ICON_BRUSH_SNAKE_HOOK, snake_hook);
500 INIT_BRUSH_ICON(ICON_BRUSH_SOFTEN, soften);
501 INIT_BRUSH_ICON(ICON_BRUSH_SUBTRACT, subtract);
502 INIT_BRUSH_ICON(ICON_BRUSH_TEXDRAW, texdraw);
503 INIT_BRUSH_ICON(ICON_BRUSH_THUMB, thumb);
504 INIT_BRUSH_ICON(ICON_BRUSH_ROTATE, twist);
505 INIT_BRUSH_ICON(ICON_BRUSH_VERTEXDRAW, vertexdraw);
507 #undef INIT_BRUSH_ICON
510 static void init_internal_icons(void)
512 bTheme *btheme= U.themes.first;
515 char iconfilestr[FILE_MAXDIR+FILE_MAXFILE];
517 if ((btheme!=NULL) && btheme->tui.iconfile[0]) {
518 char *icondir= BLI_get_folder(BLENDER_DATAFILES, "icons");
520 BLI_join_dirfile(iconfilestr, sizeof(iconfilestr), icondir, btheme->tui.iconfile);
521 bbuf = IMB_loadiffname(iconfilestr, IB_rect); /* if the image is missing bbuf will just be NULL */
522 if(bbuf && (bbuf->x < ICON_IMAGE_W || bbuf->y < ICON_IMAGE_H)) {
523 printf("\n***WARNING***\nIcons file %s too small.\nUsing built-in Icons instead\n", iconfilestr);
530 bbuf = IMB_ibImageFromMemory((unsigned char*)datatoc_blenderbuttons, datatoc_blenderbuttons_size, IB_rect);
533 /* free existing texture if any */
535 glDeleteTextures(1, &icongltex.id);
539 /* we only use a texture for cards with non-power of two */
540 if(GPU_non_power_of_two_support()) {
541 glGenTextures(1, &icongltex.id);
544 icongltex.w = bbuf->x;
545 icongltex.h = bbuf->y;
546 icongltex.invw = 1.0f/bbuf->x;
547 icongltex.invh = 1.0f/bbuf->y;
549 glBindTexture(GL_TEXTURE_2D, icongltex.id);
550 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bbuf->x, bbuf->y, 0, GL_RGBA, GL_UNSIGNED_BYTE, bbuf->rect);
551 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
552 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
553 glBindTexture(GL_TEXTURE_2D, 0);
555 if(glGetError() == GL_OUT_OF_MEMORY) {
556 glDeleteTextures(1, &icongltex.id);
564 icontype= ICON_TYPE_TEXTURE;
566 icontype= ICON_TYPE_BUFFER;
569 for (y=0; y<ICON_GRID_ROWS; y++) {
570 for (x=0; x<ICON_GRID_COLS; x++) {
571 def_internal_icon(bbuf, BIFICONID_FIRST + y*ICON_GRID_COLS + x,
572 x*(ICON_GRID_W+ICON_GRID_MARGIN)+ICON_GRID_MARGIN,
573 y*(ICON_GRID_H+ICON_GRID_MARGIN)+ICON_GRID_MARGIN, ICON_GRID_W,
579 def_internal_vicon(VICO_VIEW3D_VEC, vicon_view3d_draw);
580 def_internal_vicon(VICO_EDIT_VEC, vicon_edit_draw);
581 def_internal_vicon(VICO_EDITMODE_DEHLT, vicon_editmode_dehlt_draw);
582 def_internal_vicon(VICO_EDITMODE_HLT, vicon_editmode_hlt_draw);
583 def_internal_vicon(VICO_DISCLOSURE_TRI_RIGHT_VEC, vicon_disclosure_tri_right_draw);
584 def_internal_vicon(VICO_DISCLOSURE_TRI_DOWN_VEC, vicon_disclosure_tri_down_draw);
585 def_internal_vicon(VICO_MOVE_UP_VEC, vicon_move_up_draw);
586 def_internal_vicon(VICO_MOVE_DOWN_VEC, vicon_move_down_draw);
587 def_internal_vicon(VICO_X_VEC, vicon_x_draw);
588 def_internal_vicon(VICO_SMALL_TRI_RIGHT_VEC, vicon_small_tri_right_draw);
592 #endif // WITH_HEADLESS
594 static void init_iconfile_list(struct ListBase *list)
597 struct direntry *dir;
598 int restoredir = 1; /* restore to current directory */
599 int totfile, i, index=1;
601 char olddir[FILE_MAX];
603 list->first = list->last = NULL;
604 icondir = BLI_get_folder(BLENDER_DATAFILES, "icons");
609 /* since BLI_getdir changes the current working directory, restore it
610 back to old value afterwards */
611 if(!BLI_getwdN(olddir, sizeof(olddir)))
613 totfile = BLI_getdir(icondir, &dir);
614 if (restoredir && !chdir(olddir)) {} /* fix warning about checking return value */
616 for(i=0; i<totfile; i++) {
617 if( (dir[i].type & S_IFREG) ) {
618 char *filename = dir[i].relname;
620 if(BLI_testextensie(filename, ".png")) {
621 /* loading all icons on file start is overkill & slows startup
622 * its possible they change size after blender load anyway. */
625 char iconfilestr[FILE_MAX+16]; /* allow 256 chars for file+dir */
627 /* check to see if the image is the right size, continue if not */
628 /* copying strings here should go ok, assuming that we never get back
629 a complete path to file longer than 256 chars */
630 BLI_join_dirfile(iconfilestr, sizeof(iconfilestr), icondir, filename);
631 bbuf= IMB_loadiffname(iconfilestr, IB_rect);
642 /* bad size or failed to load */
643 if ((ifilex != ICON_IMAGE_W) || (ifiley != ICON_IMAGE_H)) {
644 printf("icon '%s' is wrong size %dx%d\n", iconfilestr, ifilex, ifiley);
649 /* found a potential icon file, so make an entry for it in the cache list */
650 ifile = MEM_callocN(sizeof(IconFile), "IconFile");
652 BLI_strncpy(ifile->filename, filename, sizeof(ifile->filename));
653 ifile->index = index;
655 BLI_addtail(list, ifile);
662 /* free temporary direntry structure that's been created by BLI_getdir() */
666 MEM_freeN(dir[i].relname);
667 MEM_freeN(dir[i].path);
668 if (dir[i].string) MEM_freeN(dir[i].string);
674 static void free_iconfile_list(struct ListBase *list)
676 IconFile *ifile=NULL, *next_ifile=NULL;
678 for(ifile=list->first; ifile; ifile=next_ifile) {
679 next_ifile = ifile->next;
680 BLI_freelinkN(list, ifile);
684 int UI_iconfile_get_index(const char *filename)
687 ListBase *list=&(iconfilelist);
689 for(ifile=list->first; ifile; ifile=ifile->next) {
690 if (BLI_path_cmp(filename, ifile->filename) == 0) {
698 ListBase *UI_iconfile_list(void)
700 ListBase *list=&(iconfilelist);
706 void UI_icons_free(void)
708 #ifndef WITH_HEADLESS
710 glDeleteTextures(1, &icongltex.id);
714 free_iconfile_list(&iconfilelist);
719 void UI_icons_free_drawinfo(void *drawinfo)
721 DrawInfo *di = drawinfo;
724 if(di->type == ICON_TYPE_BUFFER) {
725 if(di->data.buffer.image) {
726 MEM_freeN(di->data.buffer.image->rect);
727 MEM_freeN(di->data.buffer.image);
735 static DrawInfo *icon_create_drawinfo(void)
739 di = MEM_callocN(sizeof(DrawInfo), "di_icon");
740 di->type= ICON_TYPE_PREVIEW;
745 /* note!, returns unscaled by DPI, may need to multiply result by UI_DPI_ICON_FAC */
746 int UI_icon_get_width(int icon_id)
751 icon = BKE_icon_get(icon_id);
755 printf("UI_icon_get_width: Internal error, no icon for icon ID: %d\n", icon_id);
759 di = (DrawInfo *)icon->drawinfo;
761 di = icon_create_drawinfo();
766 return ICON_DEFAULT_WIDTH;
771 int UI_icon_get_height(int icon_id)
776 icon = BKE_icon_get(icon_id);
780 printf("UI_icon_get_height: Internal error, no icon for icon ID: %d\n", icon_id);
784 di = (DrawInfo*)icon->drawinfo;
787 di = icon_create_drawinfo();
792 return ICON_DEFAULT_HEIGHT;
797 void UI_icons_init(int first_dyn_id)
802 init_iconfile_list(&iconfilelist);
803 BKE_icons_init(first_dyn_id);
804 init_internal_icons();
809 /* Render size for preview images and icons
811 static int preview_render_size(enum eIconSizes size)
814 case ICON_SIZE_ICON: return 32;
815 case ICON_SIZE_PREVIEW: return PREVIEW_DEFAULT_HEIGHT;
820 /* Create rect for the icon
822 static void icon_create_rect(struct PreviewImage* prv_img, enum eIconSizes size)
824 unsigned int render_size = preview_render_size(size);
828 printf("Error: requested preview image does not exist");
830 if (!prv_img->rect[size]) {
831 prv_img->w[size] = render_size;
832 prv_img->h[size] = render_size;
833 prv_img->changed[size] = 1;
834 prv_img->changed_timestamp[size] = 0;
835 prv_img->rect[size] = MEM_callocN(render_size*render_size*sizeof(unsigned int), "prv_rect");
839 /* only called when icon has changed */
840 /* only call with valid pointer from UI_icon_draw */
841 static void icon_set_image(bContext *C, ID *id, PreviewImage* prv_img, enum eIconSizes size)
845 printf("No preview image for this ID: %s\n", id->name);
849 icon_create_rect(prv_img, size);
851 ED_preview_icon_job(C, prv_img, id, prv_img->rect[size],
852 prv_img->w[size], prv_img->h[size]);
855 static void icon_draw_rect(float x, float y, int w, int h, float UNUSED(aspect), int rw, int rh, unsigned int *rect, float alpha, float *rgb, short is_preview)
860 if(w<=0 || h<=0 || w>2000 || h>2000) {
861 printf("icon_draw_rect: icons are %i x %i pixels?\n", w, h);
862 BLI_assert(!"invalid icon size");
868 glPixelTransferf(GL_ALPHA_SCALE, alpha);
871 glPixelTransferf(GL_RED_SCALE, rgb[0]);
872 glPixelTransferf(GL_GREEN_SCALE, rgb[1]);
873 glPixelTransferf(GL_BLUE_SCALE, rgb[2]);
876 /* rect contains image in 'rendersize', we only scale if needed */
878 /* first allocate imbuf for scaling and copy preview into it */
879 ima = IMB_allocImBuf(rw, rh, 32, IB_rect);
880 memcpy(ima->rect, rect, rw*rh*sizeof(unsigned int));
881 IMB_scaleImBuf(ima, w, h); /* scale it */
887 glaDrawPixelsSafe(x, y, w, h, w, GL_RGBA, GL_UNSIGNED_BYTE, rect);
891 glDrawPixels(w, h, GL_RGBA, GL_UNSIGNED_BYTE, rect);
899 glPixelTransferf(GL_ALPHA_SCALE, 1.0f);
902 glPixelTransferf(GL_RED_SCALE, 1.0f);
903 glPixelTransferf(GL_GREEN_SCALE, 1.0f);
904 glPixelTransferf(GL_BLUE_SCALE, 1.0f);
908 static void icon_draw_texture(float x, float y, float w, float h, int ix, int iy, int UNUSED(iw), int ih, float alpha, float *rgb)
910 float x1, x2, y1, y2;
912 if(rgb) glColor4f(rgb[0], rgb[1], rgb[2], alpha);
913 else glColor4f(1.0f, 1.0f, 1.0f, alpha);
915 x1= ix*icongltex.invw;
916 x2= (ix + ih)*icongltex.invw;
917 y1= iy*icongltex.invh;
918 y2= (iy + ih)*icongltex.invh;
920 glEnable(GL_TEXTURE_2D);
921 glBindTexture(GL_TEXTURE_2D, icongltex.id);
924 glTexCoord2f(x1, y1);
927 glTexCoord2f(x2, y1);
930 glTexCoord2f(x2, y2);
931 glVertex2f(x+w, y+h);
933 glTexCoord2f(x1, y2);
937 glBindTexture(GL_TEXTURE_2D, 0);
938 glDisable(GL_TEXTURE_2D);
941 /* Drawing size for preview images */
942 static int get_draw_size(enum eIconSizes size)
945 case ICON_SIZE_ICON: return ICON_DEFAULT_HEIGHT;
946 case ICON_SIZE_PREVIEW: return PREVIEW_DEFAULT_HEIGHT;
951 static void icon_draw_size(float x, float y, int icon_id, float aspect, float alpha, float *rgb, enum eIconSizes size, int draw_size, int UNUSED(nocreate), int is_preview)
956 float fdraw_size= UI_DPI_ICON_FAC*draw_size;
959 icon = BKE_icon_get(icon_id);
963 printf("icon_draw_mipmap: Internal error, no icon for icon ID: %d\n", icon_id);
967 di = (DrawInfo*)icon->drawinfo;
970 di = icon_create_drawinfo();
973 icon->drawinfo_free = UI_icons_free_drawinfo;
976 /* scale width and height according to aspect */
977 w = (int)(fdraw_size/aspect + 0.5f);
978 h = (int)(fdraw_size/aspect + 0.5f);
980 if(di->type == ICON_TYPE_VECTOR) {
981 /* vector icons use the uiBlock transformation, they are not drawn
982 with untransformed coordinates like the other icons */
983 di->data.vector.func((int)x, (int)y, ICON_DEFAULT_HEIGHT, ICON_DEFAULT_HEIGHT, 1.0f);
985 else if(di->type == ICON_TYPE_TEXTURE) {
986 icon_draw_texture(x, y, (float)w, (float)h, di->data.texture.x, di->data.texture.y,
987 di->data.texture.w, di->data.texture.h, alpha, rgb);
989 else if(di->type == ICON_TYPE_BUFFER) {
990 /* it is a builtin icon */
991 iimg= di->data.buffer.image;
993 if(!iimg->rect) return; /* something has gone wrong! */
995 icon_draw_rect(x, y, w, h, aspect, iimg->w, iimg->h, iimg->rect, alpha, rgb, is_preview);
997 else if(di->type == ICON_TYPE_PREVIEW) {
998 PreviewImage* pi = BKE_previewimg_get((ID*)icon->obj);
1001 /* no create icon on this level in code */
1002 if(!pi->rect[size]) return; /* something has gone wrong! */
1004 /* preview images use premul alpha ... */
1005 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
1006 icon_draw_rect(x, y, w, h, aspect, pi->w[size], pi->h[size], pi->rect[size], 1.0f, NULL, is_preview);
1007 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
1012 static void ui_id_icon_render(bContext *C, ID *id, int big)
1014 PreviewImage *pi = BKE_previewimg_get(id);
1017 if ((pi->changed[0] ||!pi->rect[0])) /* changed only ever set by dynamic icons */
1019 /* create the rect if necessary */
1021 icon_set_image(C, id, pi, 0); /* icon size */
1023 icon_set_image(C, id, pi, 1); /* bigger preview size */
1030 static void ui_id_brush_render(bContext *C, ID *id)
1032 PreviewImage *pi = BKE_previewimg_get(id);
1038 for(i = 0; i < NUM_ICON_SIZES; i++) {
1039 /* check if rect needs to be created; changed
1040 only set by dynamic icons */
1041 if((pi->changed[i] || !pi->rect[i])) {
1042 icon_set_image(C, id, pi, i);
1049 static int ui_id_brush_get_icon(bContext *C, ID *id)
1051 Brush *br = (Brush*)id;
1053 if(br->flag & BRUSH_CUSTOM_ICON) {
1055 ui_id_brush_render(C, id);
1058 Object *ob = CTX_data_active_object(C);
1060 EnumPropertyItem *items = NULL;
1063 /* XXX: this is not nice, should probably make brushes
1064 be strictly in one paint mode only to avoid
1065 checking various context stuff here */
1067 if(CTX_wm_view3d(C) && ob) {
1068 if(ob->mode & OB_MODE_SCULPT)
1069 mode = OB_MODE_SCULPT;
1070 else if(ob->mode & (OB_MODE_VERTEX_PAINT|OB_MODE_WEIGHT_PAINT))
1071 mode = OB_MODE_VERTEX_PAINT;
1072 else if(ob->mode & OB_MODE_TEXTURE_PAINT)
1073 mode = OB_MODE_TEXTURE_PAINT;
1075 else if((sima = CTX_wm_space_image(C)) &&
1076 (sima->flag & SI_DRAWTOOL)) {
1077 mode = OB_MODE_TEXTURE_PAINT;
1080 /* reset the icon */
1081 if(mode == OB_MODE_SCULPT) {
1082 items = brush_sculpt_tool_items;
1083 tool = br->sculpt_tool;
1085 else if(mode == OB_MODE_VERTEX_PAINT) {
1086 items = brush_vertex_tool_items;
1087 tool = br->vertexpaint_tool;
1089 else if(mode == OB_MODE_TEXTURE_PAINT) {
1090 items = brush_image_tool_items;
1091 tool = br->imagepaint_tool;
1094 if(!items || !RNA_enum_icon_from_value(items, tool, &id->icon_id))
1101 int ui_id_icon_get(bContext *C, ID *id, int big)
1106 switch(GS(id->name)) {
1108 iconid= ui_id_brush_get_icon(C, id);
1110 case ID_MA: /* fall through */
1111 case ID_TE: /* fall through */
1112 case ID_IM: /* fall through */
1113 case ID_WO: /* fall through */
1114 case ID_LA: /* fall through */
1115 iconid= BKE_icon_getid(id);
1116 /* checks if not exists, or changed */
1117 ui_id_icon_render(C, id, big);
1126 static void icon_draw_at_size(float x, float y, int icon_id, float aspect, float alpha, enum eIconSizes size, int nocreate)
1128 int draw_size = get_draw_size(size);
1129 icon_draw_size(x, y, icon_id, aspect, alpha, NULL, size, draw_size, nocreate, FALSE);
1132 void UI_icon_draw_aspect(float x, float y, int icon_id, float aspect, float alpha)
1134 icon_draw_at_size(x, y, icon_id, aspect, alpha, ICON_SIZE_ICON, 0);
1137 void UI_icon_draw_aspect_color(float x, float y, int icon_id, float aspect, float *rgb)
1139 int draw_size = get_draw_size(ICON_SIZE_ICON);
1140 icon_draw_size(x, y, icon_id, aspect, 1.0f, rgb, ICON_SIZE_ICON, draw_size, FALSE, FALSE);
1143 void UI_icon_draw(float x, float y, int icon_id)
1145 UI_icon_draw_aspect(x, y, icon_id, 1.0f, 1.0f);
1148 void UI_icon_draw_size(float x, float y, int size, int icon_id, float alpha)
1150 icon_draw_size(x, y, icon_id, 1.0f, alpha, NULL, ICON_SIZE_ICON, size, TRUE, FALSE);
1153 void UI_icon_draw_preview(float x, float y, int icon_id)
1155 icon_draw_at_size(x, y, icon_id, 1.0f, 1.0f, ICON_SIZE_PREVIEW, 0);
1158 void UI_icon_draw_preview_aspect(float x, float y, int icon_id, float aspect)
1160 icon_draw_at_size(x, y, icon_id, aspect, 1.0f, ICON_SIZE_PREVIEW, 0);
1163 void UI_icon_draw_preview_aspect_size(float x, float y, int icon_id, float aspect, int size)
1165 icon_draw_size(x, y, icon_id, aspect, 1.0f, NULL, ICON_SIZE_PREVIEW, size, FALSE, TRUE);