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 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
|
#include "clRowEntry.h"
#include "clCellValue.h"
#include "clHeaderBar.h"
#include "clHeaderItem.h"
#include "clSystemSettings.h"
#include "clTreeCtrl.h"
#include "file_logger.h"
#include <algorithm>
#include <drawingutils.h>
#include <functional>
#include <globals.h>
#include <wx/dataview.h>
#include <wx/dc.h>
#include <wx/renderer.h>
#include <wx/settings.h>
#include <wx/window.h>
#if !wxCHECK_VERSION(3, 1, 0)
#define wxCONTROL_NONE 0
#endif
#ifdef __WXGTK__
#define SELECTION_RECT_DEFLATE 1
#elif defined(__WXMSW__)
#define SELECTION_RECT_DEFLATE 2
#else
#define SELECTION_RECT_DEFLATE 3
#endif
namespace
{
const wxString COLOUR_TEXT = " #FFFFFF ";
struct clClipperHelper {
bool m_used = false;
wxRect m_oldRect;
wxDC& m_dc;
clClipperHelper(wxDC& dc)
: m_dc(dc)
{
}
~clClipperHelper() { Reset(); }
void Clip(const wxRect& rect)
{
// Make sure we can call this method only once
if(m_used) {
return;
}
m_dc.GetClippingBox(m_oldRect);
m_dc.SetClippingRegion(rect);
m_used = true;
}
void Reset()
{
// Make sure we can call this method only once
if(m_used) {
m_dc.DestroyClippingRegion();
if(!m_oldRect.IsEmpty()) {
m_dc.SetClippingRegion(m_oldRect);
}
m_used = false;
}
}
};
wxString GetTextForRendering(const wxString& text)
{
size_t pos = text.find('\n');
if(pos != wxString::npos) {
wxString fixed_text = text.Mid(0, pos - 1);
if(fixed_text.length() != text.length()) {
fixed_text << "...";
}
return fixed_text;
} else {
return text;
}
}
namespace
{
void draw_selection(wxDC& dc, const wxRect& rect, const wxColour& pen_colour, const wxColour& brush_colour,
double radius = 3.0)
{
wxBrush brush(brush_colour);
wxPen pen(pen_colour);
wxDCBrushChanger brush_changer(dc, brush);
wxDCPenChanger pen_changer(dc, pen);
dc.SetPen(pen);
dc.SetBrush(brush);
dc.DrawRoundedRectangle(rect, radius);
}
} // namespace
void DoDrawSimpleSelection(wxWindow* win, wxDC& dc, const wxRect& rect, const clColours& colours)
{
wxUnusedVar(win);
wxRect r = rect;
r.Deflate(SELECTION_RECT_DEFLATE);
r = r.CenterIn(rect);
draw_selection(dc, r, colours.GetSelItemBgColour(), colours.GetSelItemBgColour());
}
void DrawButton(wxWindow* win, wxDC& dc, const wxRect& button_rect, const clCellValue& cell)
{
DrawingUtils::DrawButton(dc, win, button_rect, cell.GetButtonUnicodeSymbol(), wxNullBitmap, eButtonKind::kNormal,
cell.GetButtonState());
}
} // namespace
#ifdef __WXMSW__
int clRowEntry::X_SPACER = 4;
int clRowEntry::Y_SPACER = 2;
#elif defined(__WXOSX__)
int clRowEntry::X_SPACER = 4;
int clRowEntry::Y_SPACER = 4;
#else
int clRowEntry::X_SPACER = 5;
int clRowEntry::Y_SPACER = 2;
#endif
// clang-format off
#ifdef __WXMSW__
# define PEN_STYLE wxPENSTYLE_SHORT_DASH
# define IS_MSW 1
#else
# define PEN_STYLE wxPENSTYLE_DOT
# define IS_MSW 0
#endif
#ifdef __WXOSX__
# define IS_OSX 1
#else
# define IS_OSX 0
#endif
#ifdef __WXGTK__
# define IS_GTK 1
#else
# define IS_GTK 0
#endif
// clang-format on
void clRowEntry::DrawSimpleSelection(wxWindow* win, wxDC& dc, const wxRect& rect, const clColours& colours)
{
DoDrawSimpleSelection(win, dc, rect, colours);
}
clRowEntry::clRowEntry(clTreeCtrl* tree, const wxString& label, int bitmapIndex, int bitmapSelectedIndex)
: m_tree(tree)
, m_model(tree ? &tree->GetModel() : nullptr)
{
if(m_tree) {
// Fill the verctor with items constructed using the _non_ default constructor
// to makes sure that IsOk() returns TRUE
m_cells.resize(m_tree->GetHeader()->empty() ? 1 : m_tree->GetHeader()->size(),
clCellValue("", -1, -1)); // at least one column
clCellValue cv(label, bitmapIndex, bitmapSelectedIndex);
m_cells[0] = cv;
}
}
clRowEntry::clRowEntry(clTreeCtrl* tree, bool checked, const wxString& label, int bitmapIndex, int bitmapSelectedIndex)
: m_tree(tree)
, m_model(tree ? &tree->GetModel() : nullptr)
{
// Fill the verctor with items constructed using the _non_ default constructor
// to makes sure that IsOk() returns TRUE
if(m_tree) {
m_cells.resize(m_tree->GetHeader()->empty() ? 1 : m_tree->GetHeader()->size(),
clCellValue("", -1, -1)); // at least one column
clCellValue cv(checked, label, bitmapIndex, bitmapSelectedIndex);
m_cells[0] = cv;
}
}
clRowEntry::~clRowEntry()
{
// Delete all the node children
DeleteAllChildren();
wxDELETE(m_clientObject);
// Notify the model that a selection is being deleted
if(m_model) {
m_model->NodeDeleted(this);
}
}
void clRowEntry::ConnectNodes(clRowEntry* first, clRowEntry* second)
{
if(first) {
first->m_next = this;
}
this->m_prev = first;
this->m_next = second;
if(second) {
second->m_prev = this;
}
}
void clRowEntry::InsertChild(clRowEntry* child, clRowEntry* prev)
{
child->SetParent(this);
child->SetIndentsCount(GetIndentsCount() + 1);
// We need the last item of this subtree (prev 'this' is the root)
if(prev == nullptr || prev == this) {
// make it the first item
m_children.insert(m_children.begin(), child);
} else {
// optimization:
// we often get here by calling AddChild(), so don't loop over the list, check if `prev`
// is the last item
if(!m_children.empty() && m_children.back() == prev) {
m_children.insert(m_children.end(), child);
} else {
// Insert the item in the parent children list
clRowEntry::Vec_t::iterator iter = m_children.end();
iter = std::find_if(m_children.begin(), m_children.end(), [&](clRowEntry* c) { return c == prev; });
if(iter != m_children.end()) {
++iter;
}
// if iter is end(), than the is actually appending the item
m_children.insert(iter, child);
}
}
// Connect the linked list for sequential iteration
clRowEntry::Vec_t::iterator iterCur =
std::find_if(m_children.begin(), m_children.end(), [&](clRowEntry* c) { return c == child; });
clRowEntry* nodeBefore = nullptr;
// Find the item before and after
if(iterCur == m_children.begin()) {
nodeBefore = child->GetParent(); // "this"
} else {
--iterCur;
clRowEntry* prevSibling = (*iterCur);
while(prevSibling && prevSibling->HasChildren()) {
prevSibling = prevSibling->GetLastChild();
}
nodeBefore = prevSibling;
}
child->ConnectNodes(nodeBefore, nodeBefore->m_next);
}
void clRowEntry::AddChild(clRowEntry* child) { InsertChild(child, m_children.empty() ? nullptr : m_children.back()); }
void clRowEntry::SetParent(clRowEntry* parent)
{
if(m_parent == parent) {
return;
}
if(m_parent) {
m_parent->DeleteChild(this);
}
m_parent = parent;
}
void clRowEntry::DeleteChild(clRowEntry* child)
{
// first remove all of its children
// do this in a while loop since 'child->RemoveChild(c);' will alter
// the array and will invalidate all iterators
while(!child->m_children.empty()) {
clRowEntry* c = child->m_children[0];
child->DeleteChild(c);
}
// Connect the list
clRowEntry* prev = child->m_prev;
clRowEntry* next = child->m_next;
if(prev) {
prev->m_next = next;
}
if(next) {
next->m_prev = prev;
}
// Now disconnect this child from this node
clRowEntry::Vec_t::iterator iter =
std::find_if(m_children.begin(), m_children.end(), [&](clRowEntry* c) { return c == child; });
if(iter != m_children.end()) {
m_children.erase(iter);
}
wxDELETE(child);
}
int clRowEntry::GetExpandedLines() const
{
clRowEntry* node = const_cast<clRowEntry*>(this);
int counter = 0;
while(node) {
if(node->IsVisible()) {
++counter;
}
node = node->m_next;
}
return counter;
}
void clRowEntry::GetNextItems(int count, clRowEntry::Vec_t& items, bool selfIncluded)
{
if(count <= 0) {
return;
}
items.reserve(count);
if(!this->IsHidden() && selfIncluded) {
items.push_back(this);
}
clRowEntry* next = GetNext();
while(next) {
if(next->IsVisible() && !next->IsHidden()) {
items.push_back(next);
}
if((int)items.size() == count) {
return;
}
next = next->GetNext();
}
}
void clRowEntry::GetPrevItems(int count, clRowEntry::Vec_t& items, bool selfIncluded)
{
if(count <= 0) {
return;
}
items.reserve(count);
if(!this->IsHidden() && selfIncluded) {
items.insert(items.begin(), this);
}
clRowEntry* prev = GetPrev();
while(prev) {
if(prev->IsVisible() && !prev->IsHidden()) {
items.insert(items.begin(), prev);
}
if((int)items.size() == count) {
return;
}
prev = prev->GetPrev();
}
}
clRowEntry* clRowEntry::GetVisibleItem(int index)
{
clRowEntry::Vec_t items;
GetNextItems(index, items);
if((int)items.size() != index) {
return nullptr;
}
return items.back();
}
void clRowEntry::UnselectAll()
{
clRowEntry* item = const_cast<clRowEntry*>(this);
while(item) {
item->SetSelected(false);
item = item->GetNext();
}
}
bool clRowEntry::SetExpanded(bool b)
{
if(!m_model) {
return false;
}
if(IsHidden() && !b) {
// Hidden root can not be hidden
return false;
}
if(IsHidden()) {
// Hidden node do not fire events
SetFlag(kNF_Expanded, b);
return true;
}
// Already expanded?
if(b && IsExpanded()) {
return true;
}
// Already collapsed?
if(!b && !IsExpanded()) {
return true;
}
if(!m_model->NodeExpanding(this, b)) {
return false;
}
SetFlag(kNF_Expanded, b);
m_model->NodeExpanded(this, b);
return true;
}
void clRowEntry::ClearRects()
{
m_buttonRect = wxRect();
m_rowRect = wxRect();
}
std::vector<size_t> clRowEntry::GetColumnWidths(wxWindow* win, wxDC& dc)
{
wxDCFontChanger font_changer(dc);
std::vector<size_t> v;
wxRect rowRect = GetItemRect();
int itemIndent = IsListItem() ? clHeaderItem::X_SPACER : (GetIndentsCount() * m_tree->GetIndent());
// set default font
const wxFont default_font = m_tree->GetDefaultFont();
v.reserve(m_cells.size());
int COLOUR_TEXT_LEN = wxNOT_FOUND;
COLOUR_TEXT_LEN = wxNOT_FOUND;
for(size_t i = 0; i < m_cells.size(); ++i) {
auto& cell = m_cells[i];
// use the tree font to calculate the width
dc.SetFont(default_font);
// unless cell font is valid
if(cell.GetFont().IsOk()) {
// cell
dc.SetFont(cell.GetFont());
}
v.emplace_back();
size_t& width = v.back();
if((i == 0) && !IsListItem()) {
// space for the button
width += rowRect.GetHeight();
}
if(cell.IsColour()) {
if(COLOUR_TEXT_LEN == wxNOT_FOUND) {
COLOUR_TEXT_LEN = dc.GetTextExtent(COLOUR_TEXT).GetWidth();
}
width += COLOUR_TEXT_LEN;
}
if(cell.IsBool()) {
// Render the checkbox
width += X_SPACER;
width += GetCheckBoxWidth(win);
width += X_SPACER;
}
int bitmapIndex = cell.GetBitmapIndex();
if(IsExpanded() && HasChildren() && cell.GetBitmapSelectedIndex() != wxNOT_FOUND) {
bitmapIndex = cell.GetBitmapSelectedIndex();
}
if(bitmapIndex != wxNOT_FOUND) {
const wxBitmap& bmp = m_tree->GetBitmap(bitmapIndex);
if(bmp.IsOk()) {
width += IsListItem() ? 0 : X_SPACER;
width += bmp.GetScaledWidth();
width += X_SPACER;
}
}
// do we have text to redner?
// if we dont and we have a header, use the header's label
wxString label = cell.GetValueString();
if(label.empty() && m_tree->GetHeader() && m_tree->GetHeader()->size() >= i) {
label = m_tree->GetHeader()->Item(i).GetLabel();
}
if(!label.empty()) {
wxString text_to_render = GetTextForRendering(label);
width += (i == 0 ? itemIndent : clHeaderItem::X_SPACER);
width += dc.GetTextExtent(text_to_render).GetWidth();
width += X_SPACER;
}
if(cell.HasButton()) {
width += X_SPACER;
width += GetCheckBoxWidth(win);
width += X_SPACER;
}
}
return v;
}
void clRowEntry::RenderBackground(wxDC& dc, long tree_style, const clColours& c, int row_index)
{
wxRect rowRect = GetItemRect();
bool zebraColouring = (tree_style & wxTR_ROW_LINES) || (tree_style & wxDV_ROW_LINES);
bool even_row = ((row_index % 2) == 0);
clColours colours = c;
if(zebraColouring) {
// Set Zebra colouring, only if no user colour was provided for the given line
colours.SetItemBgColour(even_row ? c.GetAlternateColour() : c.GetBgColour());
}
// Override default item bg colour with the user's one
if(GetBgColour().IsOk()) {
colours.SetItemBgColour(GetBgColour());
}
wxRect selectionRect = rowRect;
wxPoint deviceOrigin = dc.GetDeviceOrigin();
selectionRect.SetX(-deviceOrigin.x);
draw_selection(dc, selectionRect, colours.GetItemBgColour(), colours.GetItemBgColour(), 0.0);
}
void clRowEntry::Render(wxWindow* win, wxDC& dc, const clColours& c, int row_index, clSearchText* searcher)
{
wxUnusedVar(searcher);
wxRect rowRect = GetItemRect();
bool zebraColouring = (m_tree->HasStyle(wxTR_ROW_LINES) || m_tree->HasStyle(wxDV_ROW_LINES));
bool even_row = ((row_index % 2) == 0);
// Not cell related
clColours colours = c;
if(zebraColouring) {
// Set Zebra colouring, only if no user colour was provided for the given line
colours.SetItemBgColour(even_row ? c.GetAlternateColour() : c.GetBgColour());
}
// Override default item bg colour with the user's one
if(GetBgColour().IsOk()) {
colours.SetItemBgColour(GetBgColour());
}
wxRect selectionRect = rowRect;
wxPoint deviceOrigin = dc.GetDeviceOrigin();
selectionRect.SetX(-deviceOrigin.x);
// set a base colour for the item
dc.SetBrush(colours.GetItemBgColour());
dc.SetPen(colours.GetItemBgColour());
dc.DrawRectangle(rowRect);
if(IsSelected() && !m_tree->IsDisabled()) {
DrawSimpleSelection(win, dc, selectionRect, colours);
} else if(IsHovered() && !m_tree->IsDisabled()) {
draw_selection(dc, selectionRect, colours.GetHoverBgColour(), colours.GetHoverBgColour());
} else if(colours.GetItemBgColour().IsOk()) {
draw_selection(dc, selectionRect, colours.GetItemBgColour(), colours.GetItemBgColour(), 0.0);
}
// Per cell drawings
for(size_t i = 0; i < m_cells.size(); ++i) {
bool last_cell = (i == (m_cells.size() - 1));
colours = c; // reset the colours
clCellValue& cell = GetColumn(i);
wxFont f = m_tree->GetDefaultFont();
if(cell.GetFont().IsOk()) {
f = cell.GetFont();
}
if(m_tree->IsDisabled()) {
// if the tree is disabled, use a gray text to draw the text
colours.SetItemTextColour(colours.GetGrayText());
colours.SetSelItemTextColour(colours.GetGrayText());
} else if(cell.GetTextColour().IsOk()) {
colours.SetItemTextColour(cell.GetTextColour());
}
if(cell.GetBgColour().IsOk()) {
colours.SetItemBgColour(cell.GetBgColour());
}
dc.SetFont(f);
wxColour buttonColour = IsSelected() ? colours.GetSelItemTextColour() : colours.GetItemTextColour();
wxRect cellRect = GetCellRect(i);
int textXOffset = cellRect.GetX();
if((i == 0) && !IsListItem()) {
// The expand button is only make sense for the first cell
if(HasChildren()) {
wxRect assignedRectForButton = GetButtonRect();
wxRect buttonRect = assignedRectForButton;
buttonRect.Deflate(1);
textXOffset += buttonRect.GetWidth();
buttonRect = GetButtonRect();
if(textXOffset >= cellRect.GetWidth()) {
// if we cant draw the button (off screen etc)
SetRects(GetItemRect(), wxRect());
continue;
}
buttonRect.Deflate((buttonRect.GetWidth() / 3), (buttonRect.GetHeight() / 3));
wxRect tribtn = buttonRect;
dc.SetPen(wxPen(buttonColour, 2));
if(IsExpanded()) {
dc.SetPen(wxPen(buttonColour, 2));
tribtn.SetHeight(tribtn.GetHeight() - tribtn.GetHeight() / 2);
tribtn = tribtn.CenterIn(assignedRectForButton);
wxPoint middleLeft = wxPoint((tribtn.GetLeft() + tribtn.GetWidth() / 2), tribtn.GetBottom());
dc.DrawLine(tribtn.GetTopLeft(), middleLeft);
dc.DrawLine(tribtn.GetTopRight(), middleLeft);
} else {
tribtn.SetWidth(tribtn.GetWidth() - tribtn.GetWidth() / 2);
tribtn = tribtn.CenterIn(buttonRect);
wxPoint middleLeft = wxPoint(tribtn.GetRight(), (tribtn.GetY() + (tribtn.GetHeight() / 2)));
wxPoint p1 = tribtn.GetTopLeft();
wxPoint p2 = tribtn.GetBottomLeft();
dc.DrawLine(p1, middleLeft);
dc.DrawLine(middleLeft, p2);
}
} else {
wxRect buttonRect(rowRect);
buttonRect.SetWidth(rowRect.GetHeight());
buttonRect.Deflate(1);
textXOffset += buttonRect.GetWidth();
if(textXOffset >= cellRect.GetWidth()) {
SetRects(GetItemRect(), wxRect());
continue;
}
}
}
int itemIndent = IsListItem() ? clHeaderItem::X_SPACER : (GetIndentsCount() * m_tree->GetIndent());
int bitmapIndex = cell.GetBitmapIndex();
if(IsExpanded() && HasChildren() && cell.GetBitmapSelectedIndex() != wxNOT_FOUND) {
bitmapIndex = cell.GetBitmapSelectedIndex();
}
// Draw checkbox
if(cell.IsBool()) {
// Render the checkbox
textXOffset += X_SPACER;
int checkboxSize = GetCheckBoxWidth(win);
wxRect checkboxRect = wxRect(textXOffset, rowRect.GetY(), checkboxSize, checkboxSize);
checkboxRect = checkboxRect.CenterIn(rowRect, wxVERTICAL);
dc.SetPen(colours.GetItemTextColour());
RenderCheckBox(win, dc, colours, checkboxRect, cell.GetValueBool());
cell.SetCheckboxRect(checkboxRect);
textXOffset += checkboxRect.GetWidth();
textXOffset += X_SPACER;
} else {
cell.SetCheckboxRect(wxRect()); // clear the checkbox rect
}
// Draw the bitmap
if(bitmapIndex != wxNOT_FOUND) {
const wxBitmap& bmp = m_tree->GetBitmap(bitmapIndex);
if(bmp.IsOk()) {
textXOffset += IsListItem() ? 0 : X_SPACER;
int bitmapY = rowRect.GetY() + ((rowRect.GetHeight() - bmp.GetScaledHeight()) / 2);
// if((textXOffset + bmp.GetScaledWidth()) >= cellRect.GetWidth()) { continue; }
dc.DrawBitmap(bmp, itemIndent + textXOffset, bitmapY, true);
textXOffset += bmp.GetScaledWidth();
textXOffset += X_SPACER;
}
}
// Draw the text
if(!cell.GetValueString().empty()) {
// clip the drawing region
wxRect clip_rect = cellRect;
if(cell.HasButton()) {
clip_rect.SetWidth(clip_rect.GetWidth() - clip_rect.GetHeight() - 1);
}
clClipperHelper clipper(dc);
clipper.Clip(clip_rect);
wxString text_to_render = GetTextForRendering(cell.GetValueString());
wxRect textRect(dc.GetTextExtent(text_to_render));
textRect = textRect.CenterIn(rowRect, wxVERTICAL);
int textY = textRect.GetY();
int textX = (i == 0 ? itemIndent : clHeaderItem::X_SPACER) + textXOffset;
RenderText(win, dc, colours, text_to_render, textX, textY, i);
textXOffset += textRect.GetWidth();
textXOffset += X_SPACER;
}
// By default, a cell has no action button
cell.SetButtonRect(wxRect());
if(cell.HasButton()) {
// draw the drop down arrow. Make it aligned to the right
textXOffset += X_SPACER;
wxRect button_rect(textXOffset, rowRect.GetY(), rowRect.GetHeight(), rowRect.GetHeight());
button_rect = button_rect.CenterIn(rowRect, wxVERTICAL);
// Draw a button with the unicode symbol in it
if(IsSelected()) {
DrawButton(win, dc, button_rect, cell);
}
// Keep the rect to test clicks
cell.SetButtonRect(button_rect);
textXOffset += button_rect.GetWidth();
textXOffset += X_SPACER;
} else if(cell.IsButton()) {
// the centire cell is a button
wxRect button_rect = cellRect;
button_rect.Deflate(1);
button_rect = button_rect.CenterIn(cellRect);
DrawingUtils::DrawButton(dc, win, button_rect, cell.GetValueString(), wxNullBitmap, eButtonKind::kNormal,
cell.GetButtonState());
cell.SetButtonRect(button_rect);
} else if(cell.IsColour()) {
wxRect rr = cellRect;
rr.Deflate(1);
// since the method `DrawingUtils::DrawColourPicker` is not familiar with our spacing policy
// move the drawing rectangle to the X_SPACER position
// rr.SetX(rr.GetX() + X_SPACER);
// rr.SetWidth(rr.GetWidth() - X_SPACER);
wxRect button_rect =
DrawingUtils::DrawColourPicker(win, dc, rr, cell.GetValueColour(), cell.GetButtonState());
cell.SetButtonRect(button_rect);
}
if(!last_cell) {
cellRect.SetHeight(rowRect.GetHeight());
dc.SetPen(wxPen(colours.GetHeaderVBorderColour(), 1, PEN_STYLE));
dc.DrawLine(cellRect.GetTopRight(), cellRect.GetBottomRight());
}
}
}
void clRowEntry::RenderText(wxWindow* win, wxDC& dc, const clColours& colours, const wxString& text, int x, int y,
size_t col)
{
if(IsHighlight()) {
const clMatchResult& hi = GetHighlightInfo();
Str3Arr_t arr;
if(!hi.Get(col, arr)) {
RenderTextSimple(win, dc, colours, text, x, y, col);
return;
}
dc.SetFont(m_tree->GetDefaultFont());
#ifdef __WXMSW__
const wxColour& defaultTextColour =
m_tree->IsNativeTheme() ? colours.GetItemTextColour()
: (IsSelected() ? colours.GetSelItemTextColour() : colours.GetItemTextColour());
#else
const wxColour& defaultTextColour = IsSelected() ? colours.GetSelItemTextColour() : colours.GetItemTextColour();
#endif
const wxColour& matchBgColour = colours.GetMatchedItemBgText();
const wxColour& matchTextColour = colours.GetMatchedItemText();
int xx = x;
wxRect rowRect = GetItemRect();
for(size_t i = 0; i < arr.size(); ++i) {
wxString str = arr[i];
bool is_match = (i == 1); // the middle entry is always the matched string
wxSize sz = dc.GetTextExtent(str);
rowRect.SetX(xx);
rowRect.SetWidth(sz.GetWidth());
if(is_match) {
// draw a match rectangle
dc.SetPen(matchBgColour.IsOk() ? matchBgColour : GetBgColour());
dc.SetBrush(matchBgColour.IsOk() ? matchBgColour : GetBgColour());
dc.SetTextForeground(matchTextColour.IsOk() ? matchTextColour : defaultTextColour);
rowRect.Deflate(1);
dc.DrawRoundedRectangle(rowRect, 0);
} else {
dc.SetTextForeground(defaultTextColour);
}
dc.DrawText(str, xx, y);
xx += sz.GetWidth();
}
} else {
// No match
RenderTextSimple(win, dc, colours, text, x, y, col);
}
}
void clRowEntry::RenderTextSimple(wxWindow* win, wxDC& dc, const clColours& colours, const wxString& text, int x, int y,
size_t col)
{
wxUnusedVar(win);
wxDCTextColourChanger changer(dc);
// select the default text colour
wxColour text_colour = GetTextColour(col);
if(!text_colour.IsOk()) {
if(IsSelected()) {
text_colour = colours.GetSelItemTextColour();
} else {
text_colour = colours.GetItemTextColour();
}
}
dc.SetTextForeground(text_colour);
dc.DrawText(text, x, y);
}
size_t clRowEntry::GetChildrenCount(bool recurse) const
{
if(!recurse) {
return m_children.size();
} else {
size_t count = m_children.size();
// Loop over the children and add its children count
for(size_t i = 0; i < m_children.size(); ++i) {
count += m_children[i]->GetChildrenCount(recurse);
}
return count;
}
}
bool clRowEntry::IsVisible() const
{
if(IsHidden()) {
return false;
}
clRowEntry* parent = GetParent();
while(parent) {
if(!parent->IsExpanded()) {
return false;
}
parent = parent->GetParent();
}
return true;
}
void clRowEntry::DeleteAllChildren()
{
while(!m_children.empty()) {
clRowEntry* c = m_children[0];
// DeleteChild will remove it from the array
DeleteChild(c);
}
}
clRowEntry* clRowEntry::GetLastChild() const
{
if(m_children.empty()) {
return nullptr;
}
return m_children.back();
}
clRowEntry* clRowEntry::GetFirstChild() const
{
if(m_children.empty()) {
return nullptr;
}
return m_children[0];
}
void clRowEntry::SetHidden(bool b)
{
if(b && !IsRoot()) {
return;
}
SetFlag(kNF_Hidden, b);
if(b) {
m_indentsCount = -1;
} else {
m_indentsCount = 0;
}
}
int clRowEntry::CalcItemWidth(wxDC& dc, int rowHeight, size_t col)
{
wxUnusedVar(col);
if(col >= m_cells.size()) {
return 0;
}
clCellValue& cell = GetColumn(col);
int item_width = X_SPACER;
// colour items occupying the entire cell
if(cell.IsColour()) {
dc.SetFont(cell.GetFont().IsOk() ? cell.GetFont() : m_tree->GetDefaultFont());
item_width += dc.GetTextExtent(COLOUR_TEXT).GetWidth();
item_width += X_SPACER;
return item_width;
}
if(cell.IsBool()) {
// add the checkbox size
item_width += clGetSize(rowHeight, m_tree);
item_width += X_SPACER;
} else if(cell.HasButton()) {
item_width += clGetSize(rowHeight, m_tree);
item_width += X_SPACER;
}
dc.SetFont(cell.GetFont().IsOk() ? cell.GetFont() : m_tree->GetDefaultFont());
wxString text_to_render = GetTextForRendering(cell.GetValueString());
wxSize textSize = dc.GetTextExtent(text_to_render);
if((col == 0) && !IsListItem()) {
// always make room for the twist button
item_width += clGetSize(rowHeight, m_tree);
}
int bitmapIndex = cell.GetBitmapIndex();
if(IsExpanded() && HasChildren() && cell.GetBitmapSelectedIndex() != wxNOT_FOUND) {
bitmapIndex = cell.GetBitmapSelectedIndex();
}
if(bitmapIndex != wxNOT_FOUND) {
const wxBitmap& bmp = m_tree->GetBitmap(bitmapIndex);
if(bmp.IsOk()) {
item_width += clGetSize(X_SPACER, m_tree);
item_width += bmp.GetScaledWidth();
item_width += clGetSize(X_SPACER, m_tree);
}
}
if((col == 0) && !IsListItem()) {
int itemIndent = (GetIndentsCount() * m_tree->GetIndent());
item_width += clGetSize(itemIndent, m_tree);
}
item_width += textSize.GetWidth();
item_width += clGetSize(clHeaderItem::X_SPACER, m_tree);
return item_width;
}
void clRowEntry::SetBitmapIndex(int bitmapIndex, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetBitmapIndex(bitmapIndex);
}
int clRowEntry::GetBitmapIndex(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return wxNOT_FOUND;
}
return cell.GetBitmapIndex();
}
void clRowEntry::SetBitmapSelectedIndex(int bitmapIndex, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetBitmapSelectedIndex(bitmapIndex);
}
int clRowEntry::GetBitmapSelectedIndex(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return wxNOT_FOUND;
}
return cell.GetBitmapSelectedIndex();
}
void clRowEntry::SetLabel(const wxString& label, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetValue(label);
}
const wxString& clRowEntry::GetLabel(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
static wxString empty_string;
return empty_string;
}
return cell.GetValueString();
}
void clRowEntry::SetChecked(bool checked, int bitmapIndex, const wxString& label, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetValue(checked);
cell.SetValue(label);
cell.SetBitmapIndex(bitmapIndex);
// Mark this type as 'bool'
cell.SetType(clCellValue::kTypeBool);
}
bool clRowEntry::IsChecked(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return false;
}
return cell.GetValueBool();
}
const clCellValue& clRowEntry::GetColumn(size_t col) const
{
if(col >= m_cells.size()) {
static clCellValue null_column;
return null_column;
}
return m_cells[col];
}
clCellValue& clRowEntry::GetColumn(size_t col)
{
if(col >= m_cells.size()) {
static clCellValue null_column;
return null_column;
}
return m_cells[col];
}
void clRowEntry::SetBgColour(const wxColour& bgColour, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetBgColour(bgColour);
}
void clRowEntry::SetFont(const wxFont& font, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetFont(font);
}
void clRowEntry::SetTextColour(const wxColour& textColour, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetTextColour(textColour);
}
const wxColour& clRowEntry::GetBgColour(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
static wxColour invalid_colour;
return invalid_colour;
}
return cell.GetBgColour();
}
const wxFont& clRowEntry::GetFont(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
static wxFont invalid_font;
return invalid_font;
}
return cell.GetFont();
}
const wxColour& clRowEntry::GetTextColour(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
static wxColour invalid_colour;
return invalid_colour;
}
const wxColour& colour = cell.GetTextColour();
if(!colour.IsOk()) {
// if one of our parent has a valid colour (or its parent.. or ...) __and__ our colour is invalid -> lets use
// our parent's colour
auto parent = GetParent();
while(parent) {
if(parent->GetColumn(col).IsOk() && parent->GetColumn(col).GetTextColour().IsOk()) {
return parent->GetColumn(col).GetTextColour();
}
parent = parent->GetParent();
}
}
// return the current cell colour
return colour;
}
wxRect clRowEntry::GetCellRect(size_t col) const
{
if(m_tree && m_tree->GetHeader() && (col < m_tree->GetHeader()->size())) {
// Check which column was clicked
wxRect cellRect = m_tree->GetHeader()->Item(col).GetRect();
const wxRect& itemRect = GetItemRect();
// Make sure that the cellRect has all the correct attributes of the row
cellRect.SetY(itemRect.GetY());
// If we got h-scrollbar, adjust the X coordinate
// cellRect.SetX(cellRect.GetX() - m_tree->GetFirstColumn());
cellRect.SetHeight(itemRect.GetHeight());
return cellRect;
} else {
return GetItemRect();
}
}
const wxRect& clRowEntry::GetCheckboxRect(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
static wxRect emptyRect;
return emptyRect;
}
return cell.GetCheckboxRect();
}
const wxRect& clRowEntry::GetCellButtonRect(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
static wxRect emptyRect;
return emptyRect;
}
return cell.GetButtonRect();
}
void clRowEntry::RenderCheckBox(wxWindow* win, wxDC& dc, const clColours& colours, const wxRect& rect, bool checked)
{
// on mac/linux, use native drawings
int flags = wxCONTROL_CURRENT;
if(checked) {
flags |= wxCONTROL_CHECKED;
}
wxRendererNative::Get().DrawCheckBox(win, dc, rect, flags);
}
int clRowEntry::GetCheckBoxWidth(wxWindow* win)
{
static int width = wxNOT_FOUND;
if(width == wxNOT_FOUND) {
width = wxRendererNative::Get().GetCheckBoxSize(win).GetWidth();
if(width <= 0) {
// set default value
width = 20;
}
}
return width;
}
void clRowEntry::SetHasButton(eCellButtonType button_type, const wxString& unicode_symbol, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetType(clCellValue::kTypeButton);
cell.SetButtonType(button_type, unicode_symbol);
}
bool clRowEntry::HasButton(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return false;
}
return cell.HasButton();
}
void clRowEntry::SetIsButton(const wxString& label, size_t col)
{
clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetType(clCellValue::kTypeOnlyButton);
cell.SetValue(label);
}
bool clRowEntry::IsButton(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return false;
}
return cell.IsButton();
}
void clRowEntry::SetColour(const wxColour& colour, size_t col)
{
auto& cell = GetColumn(col);
if(!cell.IsOk()) {
return;
}
cell.SetType(clCellValue::kTypeColour);
cell.SetValue(colour);
}
bool clRowEntry::IsColour(size_t col) const
{
const clCellValue& cell = GetColumn(col);
if(!cell.IsOk()) {
return false;
}
return cell.IsColour();
}
|