File size: 31,253 Bytes
9375c9a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 |
// Copyright (C) 2008 Davis E. King ([email protected]), and Nils Labugt
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_WIDGETs_STYLE_CPP_
#define DLIB_WIDGETs_STYLE_CPP_
#include "style.h"
namespace dlib
{
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// button style stuff
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void button_style_default::draw_button (
const canvas& c,
const rectangle& rect,
const bool enabled,
const font& mfont,
const long ,
const long ,
const ustring& name,
const bool is_depressed
) const
{
rectangle area = rect.intersect(c);
if (area.is_empty())
return;
fill_rect(c,rect,rgb_pixel(212,208,200));
unsigned char red, green, blue;
if (enabled)
{
red = 0;
green = 0;
blue = 0;
}
else
{
red = 128;
green = 128;
blue = 128;
}
// compute the name length if it hasn't already been computed
if (name_width == 0)
{
unsigned long height;
mfont.compute_size(name,name_width,height);
}
// figure out where the name string should appear
rectangle name_rect;
const unsigned long width = name_width;
const unsigned long height = mfont.height();
name_rect.set_left((rect.right() + rect.left() - width)/2);
name_rect.set_top((rect.bottom() + rect.top() - height)/2 + 1);
name_rect.set_right(name_rect.left()+width-1);
name_rect.set_bottom(name_rect.top()+height);
if (is_depressed)
{
name_rect.set_left(name_rect.left()+1);
name_rect.set_right(name_rect.right()+1);
name_rect.set_top(name_rect.top()+1);
name_rect.set_bottom(name_rect.bottom()+1);
mfont.draw_string(c,name_rect,name,rgb_pixel(red,green,blue));
draw_button_down(c,rect);
}
else
{
mfont.draw_string(c,name_rect,name,rgb_pixel(red,green,blue));
// now draw the edge of the button
draw_button_up(c,rect);
}
}
// ----------------------------------------------------------------------------------------
rectangle button_style_default::
get_min_size (
const ustring& name,
const font& mfont
) const
{
unsigned long width;
unsigned long height;
mfont.compute_size(name,width,height);
name_width = width;
return rectangle(width+2*padding, height+2*padding);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void button_style_toolbar1::draw_button (
const canvas& c,
const rectangle& rect,
const bool enabled,
const font& mfont,
const long lastx,
const long lasty,
const ustring& name,
const bool is_depressed
) const
{
rectangle area = rect.intersect(c);
if (area.is_empty())
return;
const long radius = 4;
unsigned char red, green, blue;
if (enabled)
{
red = 0;
green = 0;
blue = 0;
long d = 0;
if (rect.contains(lastx,lasty))
d = -70;
if (is_depressed)
d = 20;
if (d != 0)
{
rectangle temp(rect);
temp.left()--; temp.top()--; temp.right()++; temp.bottom()++;
draw_rounded_rectangle(c, temp, radius, rgb_alpha_pixel(255,255,0,120));
temp.left()--; temp.top()--; temp.right()++; temp.bottom()++;
draw_rounded_rectangle(c, temp, radius, rgb_alpha_pixel(255,255,0,40));
}
fill_gradient_rounded(c,rect,radius,rgb_alpha_pixel(255, 255, 255,120-d),
rgb_alpha_pixel(255, 255, 255,0));
draw_rounded_rectangle(c,rect,radius, rgb_alpha_pixel(30,30,30,200));
}
else
{
red = 128;
green = 128;
blue = 128;
draw_rounded_rectangle(c,rect,radius, rgb_alpha_pixel(red,green,blue,210));
}
// compute the name length if it hasn't already been computed
if (name_width == 0)
{
unsigned long height;
mfont.compute_size(name,name_width,height);
}
// figure out where the name string should appear
rectangle name_rect;
const unsigned long width = name_width;
const unsigned long height = mfont.height();
name_rect.set_left((rect.right() + rect.left() - width)/2);
name_rect.set_top((rect.bottom() + rect.top() - height)/2 + 1);
name_rect.set_right(name_rect.left()+width-1);
name_rect.set_bottom(name_rect.top()+height);
if (is_depressed)
{
name_rect.set_left(name_rect.left()+1);
name_rect.set_right(name_rect.right()+1);
name_rect.set_top(name_rect.top()+1);
name_rect.set_bottom(name_rect.bottom()+1);
mfont.draw_string(c,name_rect,name,rgb_pixel(red,green,blue));
}
else
{
mfont.draw_string(c,name_rect,name,rgb_pixel(red,green,blue));
}
}
// ----------------------------------------------------------------------------------------
rectangle button_style_toolbar1::
get_min_size (
const ustring& name,
const font& mfont
) const
{
unsigned long width;
unsigned long height;
mfont.compute_size(name,width,height);
name_width = width;
return rectangle(width+2*padding, height+2*padding);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void button_style_toolbar_icon1::draw_button (
const canvas& c,
const rectangle& rect,
const bool enabled,
const font& ,
const long lastx,
const long lasty,
const ustring& ,
const bool is_depressed
) const
{
rectangle area = rect.intersect(c);
if (area.is_empty())
return;
const long radius = padding;
if (enabled)
{
if (rect.contains(lastx,lasty))
{
if (is_depressed)
{
fill_gradient_rounded(c,rect,radius,rgb_alpha_pixel(100,100,200,150),
rgb_alpha_pixel(50,50,100,100));
draw_rounded_rectangle(c,rect,radius, rgb_alpha_pixel(150,150,30,200));
}
else
{
fill_gradient_rounded(c,rect,radius,rgb_alpha_pixel(150,150,250,130),
rgb_alpha_pixel(100,100,150,90));
draw_rounded_rectangle(c,rect,radius, rgb_alpha_pixel(150,150,30,200));
}
}
if (is_depressed)
{
rectangle img_rect(translate_rect(centered_rect(rect,img_mouseover.nc(),img_mouseover.nr()),1,1));
point p(img_rect.left(),img_rect.top());
draw_image(c,p,img_mouseover);
}
else
{
rectangle img_rect(centered_rect(rect,img_normal.nc(),img_normal.nr()));
point p(img_rect.left(),img_rect.top());
if (rect.contains(lastx,lasty))
draw_image(c,p,img_mouseover);
else
draw_image(c,p,img_normal);
}
}
else
{
rectangle img_rect(centered_rect(rect,img_normal.nc(),img_normal.nr()));
point p(img_rect.left(),img_rect.top());
draw_image(c,p,img_disabled);
}
}
// ----------------------------------------------------------------------------------------
rectangle button_style_toolbar_icon1::
get_min_size (
const ustring& ,
const font&
) const
{
return rectangle(img_normal.nc()+2*padding, img_normal.nr()+2*padding);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void button_style_arrow::
draw_button (
const canvas& c,
const rectangle& rect,
const bool enabled,
const font& ,
const long ,
const long ,
const ustring& ,
const bool is_depressed
) const
{
rectangle area = rect.intersect(c);
if (area.is_empty())
return;
fill_rect(c,rect,rgb_pixel(212,208,200));
const long height = rect.height();
const long width = rect.width();
const long smallest = (width < height) ? width : height;
const long rows = (smallest+3)/4;
const long start = rows + rows/2-1;
long dep;
long tip_x = 0;
long tip_y = 0;
long wy = 0;
long hy = 0;
long wx = 0;
long hx = 0;
if (is_depressed)
{
dep = 0;
// draw the button's border
draw_button_down(c,rect);
}
else
{
dep = -1;
// draw the button's border
draw_button_up(c,rect);
}
switch (dir)
{
case UP:
tip_x = width/2 + rect.left() + dep;
tip_y = (height - start)/2 + rect.top() + dep + 1;
wy = 0;
hy = 1;
wx = 1;
hx = 0;
break;
case DOWN:
tip_x = width/2 + rect.left() + dep;
tip_y = rect.bottom() - (height - start)/2 + dep;
wy = 0;
hy = -1;
wx = 1;
hx = 0;
break;
case LEFT:
tip_x = rect.left() + (width - start)/2 + dep + 1;
tip_y = height/2 + rect.top() + dep;
wy = 1;
hy = 0;
wx = 0;
hx = 1;
break;
case RIGHT:
tip_x = rect.right() - (width - start)/2 + dep;
tip_y = height/2 + rect.top() + dep;
wy = 1;
hy = 0;
wx = 0;
hx = -1;
break;
}
rgb_pixel color;
if (enabled)
{
color.red = 0;
color.green = 0;
color.blue = 0;
}
else
{
color.red = 128;
color.green = 128;
color.blue = 128;
}
for (long i = 0; i < rows; ++i)
{
draw_line(c,point(tip_x + wx*i + hx*i, tip_y + wy*i + hy*i),
point(tip_x + wx*i*-1 + hx*i, tip_y + wy*i*-1 + hy*i),
color);
}
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// toggle button style stuff
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void toggle_button_style_default::draw_toggle_button (
const canvas& c,
const rectangle& rect,
const bool enabled,
const font& mfont,
const long ,
const long ,
const ustring& name,
const bool is_depressed,
const bool is_checked
) const
{
rectangle area = rect.intersect(c);
if (area.is_empty())
return;
fill_rect(c,rect,rgb_pixel(212,208,200));
unsigned char red, green, blue;
if (enabled)
{
red = 0;
green = 0;
blue = 0;
}
else
{
red = 128;
green = 128;
blue = 128;
}
// compute the name length if it hasn't already been computed
if (name_width == 0)
{
unsigned long height;
mfont.compute_size(name,name_width,height);
}
// figure out where the name string should appear
rectangle name_rect;
const unsigned long width = name_width;
const unsigned long height = mfont.height();
name_rect.set_left((rect.right() + rect.left() - width)/2);
name_rect.set_top((rect.bottom() + rect.top() - height)/2 + 1);
name_rect.set_right(name_rect.left()+width-1);
name_rect.set_bottom(name_rect.top()+height);
long d = 0;
if (is_checked)
d = 1;
if (is_depressed)
d = 2;
name_rect.set_left(name_rect.left()+d);
name_rect.set_right(name_rect.right()+d);
name_rect.set_top(name_rect.top()+d);
name_rect.set_bottom(name_rect.bottom()+d);
mfont.draw_string(c,name_rect,name,rgb_pixel(red,green,blue));
// now draw the edge of the button
if (is_checked || is_depressed)
draw_button_down(c,rect);
else
draw_button_up(c,rect);
}
// ----------------------------------------------------------------------------------------
rectangle toggle_button_style_default::
get_min_size (
const ustring& name,
const font& mfont
) const
{
unsigned long width;
unsigned long height;
mfont.compute_size(name,width,height);
name_width = width;
return rectangle(width+2*padding, height+2*padding);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void toggle_button_style_check_box::draw_toggle_button (
const canvas& c,
const rectangle& rect,
const bool enabled,
const font& mfont,
const long ,
const long ,
const ustring& name,
const bool is_depressed,
const bool is_checked
) const
{
rectangle area = rect.intersect(c);
if (area.is_empty())
return;
rgb_pixel color;
if (enabled)
{
color.red = 0;
color.green = 0;
color.blue = 0;
}
else
{
color.red = 128;
color.green = 128;
color.blue = 128;
}
// figure out where the name string should appear
rectangle name_rect, box_rect;
unsigned long padding = 0;
if (mfont.height() < 13)
padding = (rect.height() - mfont.height())/2;
name_rect = rect;
name_rect.set_left(rect.left() + 17-1);
name_rect.set_top(rect.top() + padding);
name_rect.set_bottom(rect.bottom() - padding);
box_rect = rect;
box_rect.set_right(rect.left() + 12);
box_rect.set_bottom(rect.top() + 12);
mfont.draw_string(c,name_rect,name,color);
if (enabled && is_depressed == false)
fill_rect(c, box_rect,rgb_pixel(255,255,255));
else
fill_rect(c, box_rect,rgb_pixel(212,208,200));
draw_sunken_rectangle(c, box_rect);
if (is_checked)
{
const long x = box_rect.left();
const long y = box_rect.top();
draw_line(c,point(3+x,5+y),point(6+x,8+y),color);
draw_line(c,point(3+x,6+y),point(5+x,8+y),color);
draw_line(c,point(3+x,7+y),point(5+x,9+y),color);
draw_line(c,point(6+x,6+y),point(9+x,3+y),color);
draw_line(c,point(6+x,7+y),point(9+x,4+y),color);
draw_line(c,point(6+x,8+y),point(9+x,5+y),color);
}
}
// ----------------------------------------------------------------------------------------
rectangle toggle_button_style_check_box::
get_min_size (
const ustring& name,
const font& mfont
) const
{
unsigned long width;
unsigned long height;
mfont.compute_size(name,width,height);
if (height < 13)
height = 13;
return rectangle(width + 17 -1, height -1);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void toggle_button_style_radio_button::draw_toggle_button (
const canvas& c,
const rectangle& rect,
const bool enabled,
const font& mfont,
const long ,
const long ,
const ustring& name,
const bool is_depressed,
const bool is_checked
) const
{
rectangle area = rect.intersect(c);
if (area.is_empty())
return;
rgb_pixel color;
// figure out where the name string should appear
rectangle name_rect, box_rect;
unsigned long padding = 0;
if (mfont.height() < 13)
padding = (rect.height() - mfont.height())/2;
name_rect = rect;
name_rect.set_left(rect.left() + 17-1);
name_rect.set_top(rect.top() + padding);
name_rect.set_bottom(rect.bottom() - padding);
box_rect = rect;
box_rect.set_right(rect.left() + 12);
box_rect.set_bottom(rect.top() + 12);
const long x = box_rect.left();
const long y = box_rect.top();
if (enabled && is_depressed == false)
draw_solid_circle(c,point(rect.left()+5,rect.top()+5),4.5,rgb_pixel(255,255,255));
else
draw_solid_circle(c,point(rect.left()+5,rect.top()+5),4.5,rgb_pixel(212,208,200));
color = rgb_pixel(128,128,128);
draw_line(c,point(0+x,4+y),point(0+x,7+y),color);
draw_line(c,point(1+x,2+y),point(1+x,9+y),color);
draw_line(c,point(2+x,1+y),point(9+x,1+y),color);
draw_line(c,point(4+x,0+y),point(7+x,0+y),color);
color = rgb_pixel(255,255,255);
draw_line(c,point(4+x,11+y),point(7+x,11+y),color);
draw_line(c,point(2+x,10+y),point(9+x,10+y),color);
draw_line(c,point(10+x,2+y),point(10+x,9+y),color);
draw_line(c,point(11+x,4+y),point(11+x,7+y),color);
color = rgb_pixel(64,64,64);
draw_line(c,point(1+x,4+y),point(1+x,7+y),color);
draw_line(c,point(4+x,1+y),point(7+x,1+y),color);
draw_pixel(c,point(2+x,3+y),color);
draw_pixel(c,point(3+x,2+y),color);
draw_pixel(c,point(2+x,2+y),color);
draw_pixel(c,point(2+x,8+y),color);
draw_pixel(c,point(8+x,2+y),color);
draw_pixel(c,point(9+x,2+y),color);
color = rgb_pixel(212,208,200);
draw_line(c,point(4+x,10+y),point(7+x,10+y),color);
draw_line(c,point(10+x,4+y),point(10+x,7+y),color);
draw_pixel(c,point(3+x,9+y),color);
draw_pixel(c,point(9+x,3+y),color);
if (enabled)
{
color.red = 0;
color.green = 0;
color.blue = 0;
}
else
{
color.red = 128;
color.green = 128;
color.blue = 128;
}
mfont.draw_string(c,name_rect,name,color);
if (is_checked)
{
draw_line(c,point(5+x,4+y),point(6+x,4+y),color);
draw_line(c,point(4+x,5+y),point(7+x,5+y),color);
draw_line(c,point(4+x,6+y),point(7+x,6+y),color);
draw_line(c,point(5+x,7+y),point(6+x,7+y),color);
}
}
// ----------------------------------------------------------------------------------------
rectangle toggle_button_style_radio_button::
get_min_size (
const ustring& name,
const font& mfont
) const
{
unsigned long width;
unsigned long height;
mfont.compute_size(name,width,height);
if (height < 13)
height = 13;
return rectangle(width + 17 -1, height -1);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// scroll bar style stuff
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
long scroll_bar_style_default::
get_slider_length (
long total_length,
long max_pos
) const
{
// if the length is too small then we have to smash up the arrow buttons
// and hide the slider.
if (total_length <= get_width()*2)
{
return 0;
}
else
{
double range = total_length - get_button_length(total_length, max_pos)*2;
double scale_factor = 30.0/(max_pos + 30.0);
if (scale_factor < 0.1)
scale_factor = 0.1;
double fraction = range/(max_pos + range)*scale_factor;
double result = fraction * range;
long res = static_cast<long>(result);
if (res < 8)
res = 8;
return res;
}
}
// ----------------------------------------------------------------------------------------
long scroll_bar_style_default::
get_button_length (
long total_length,
long
) const
{
// if the length is too small then we have to smash up the arrow buttons
// and hide the slider.
if (total_length <= get_width()*2)
{
return total_length/2;
}
else
{
return get_width();
}
}
// ----------------------------------------------------------------------------------------
void scroll_bar_style_default::
draw_scroll_bar_background (
const canvas& c,
const rectangle& rect,
const bool ,
const long ,
const long ,
const bool is_depressed
) const
{
if (is_depressed)
draw_checkered(c, rect,rgb_pixel(0,0,0),rgb_pixel(43,47,55));
else
draw_checkered(c, rect,rgb_pixel(255,255,255),rgb_pixel(212,208,200));
}
// ----------------------------------------------------------------------------------------
void scroll_bar_style_default::
draw_scroll_bar_slider (
const canvas& c,
const rectangle& rect,
const bool ,
const long ,
const long ,
const bool
) const
{
fill_rect(c, rect, rgb_pixel(212,208,200));
draw_button_up(c, rect);
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// text_field styles
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
unsigned long text_field_style_default::
get_padding (
const font& mfont
) const
{
return mfont.height()-mfont.ascender();
}
// ----------------------------------------------------------------------------------------
void text_field_style_default::
draw_text_field (
const canvas& c,
const rectangle& rect,
const rectangle& text_rect,
const bool enabled,
const font& mfont,
const ustring& text,
const unsigned long cursor_x,
const unsigned long text_pos,
const rgb_pixel& text_color,
const rgb_pixel& bg_color,
const bool has_focus,
const bool cursor_visible,
const long highlight_start,
const long highlight_end
) const
{
rectangle area = rect.intersect(c);
if (enabled)
{
// first fill our area with the bg_color
fill_rect(c, area,bg_color);
}
else
{
// first fill our area with gray
fill_rect(c, area,rgb_pixel(212,208,200));
}
if (enabled)
mfont.draw_string(c,text_rect,text,text_color,text_pos);
else
mfont.draw_string(c,text_rect,text,rgb_pixel(128,128,128),text_pos);
// now draw the edge of the text_field
draw_sunken_rectangle(c, rect);
if (highlight_start <= highlight_end && enabled)
{
rectangle highlight_rect = text_rect;
unsigned long left_pad = 0, right_pad = mfont.left_overflow();
long i;
for (i = text_pos; i <= highlight_end; ++i)
{
if (i == highlight_start)
left_pad = right_pad;
right_pad += mfont[text[i]].width();
}
highlight_rect.set_left(text_rect.left()+left_pad);
highlight_rect.set_right(text_rect.left()+right_pad);
// highlight the highlight_rect area
highlight_rect = highlight_rect.intersect(c);
for (long row = highlight_rect.top(); row <= highlight_rect.bottom(); ++row)
{
for (long col = highlight_rect.left(); col <= highlight_rect.right(); ++col)
{
canvas::pixel& pixel = c[row-c.top()][col-c.left()];
if (pixel.red == 255 && pixel.green == 255 && pixel.blue == 255)
{
// this is a background (and white) pixel so set it to a dark
// blueish color.
pixel.red = 10;
pixel.green = 36;
pixel.blue = 106;
}
else
{
// this should be a pixel that is part of a letter so set it to white
pixel.red = 255;
pixel.green = 255;
pixel.blue = 255;
}
}
}
}
// now draw the cursor if we need to
if (cursor_visible && has_focus && enabled)
{
const unsigned long top = rect.top()+3;
const unsigned long bottom = rect.bottom()-3;
draw_line(c, point(rect.left()+cursor_x,top),point(rect.left()+cursor_x,bottom));
}
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// text_box styles
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
void text_box_style_default::
draw_text_box (
const canvas& c,
const rectangle& display_rect,
const rectangle& text_rect,
const bool enabled,
const font& mfont,
const ustring& text,
const rectangle& cursor_rect,
const rgb_pixel& text_color,
const rgb_pixel& bg_color,
const bool has_focus,
const bool cursor_visible,
const long highlight_start,
const long highlight_end
) const
{
rectangle area = display_rect.intersect(c);
if (enabled)
{
// first fill our area with the bg_color
fill_rect(c, area,bg_color);
}
else
{
// first fill our area with gray
fill_rect(c, area,rgb_pixel(212,208,200));
}
if (enabled)
mfont.draw_string(c,text_rect,text,text_color, 0, ustring::npos, area);
else
mfont.draw_string(c,text_rect,text,rgb_pixel(128,128,128), 0, ustring::npos, area);
// now draw the highlight if there is any
if (highlight_start <= highlight_end && enabled)
{
const rectangle first_pos = mfont.compute_cursor_rect(text_rect, text, highlight_start);
const rectangle last_pos = mfont.compute_cursor_rect(text_rect, text, highlight_end+1);
const rgb_alpha_pixel color(10, 30, 106, 90);
// if the highlighted text is all on one line
if (first_pos.top() == last_pos.top())
{
fill_rect(c, (first_pos + last_pos).intersect(display_rect), color);
}
else
{
const rectangle min_boundary(display_rect.left()+4, display_rect.top()+4,
display_rect.right()-4, display_rect.bottom()-4);
const rectangle boundary( display_rect.intersect(text_rect) + min_boundary);
rectangle first_row, last_row, middle_rows;
first_row += first_pos;
first_row += point(boundary.right(), first_pos.top());
last_row += last_pos;
last_row += point(boundary.left(), last_pos.bottom());
middle_rows.left() = boundary.left();
middle_rows.right() = boundary.right();
middle_rows.top() = first_row.bottom()+1;
middle_rows.bottom() = last_row.top()-1;
fill_rect(c, first_row.intersect(display_rect), color);
fill_rect(c, middle_rows, color);
fill_rect(c, last_row.intersect(display_rect), color);
}
}
// now draw the cursor if we need to
if (cursor_visible && has_focus && enabled)
{
draw_line(c, point(cursor_rect.left(), cursor_rect.top()),point(cursor_rect.left(), cursor_rect.bottom()), 0, area);
}
}
// ----------------------------------------------------------------------------------------
}
#endif // DLIB_WIDGETs_STYLE_CPP_
|