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 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
|
#include "clGenericNotebook.hpp"
#include "ColoursAndFontsManager.h"
#include "JSON.h"
#include "clColours.h"
#include "clSystemSettings.h"
#include "clTabRendererMinimal.hpp"
#include "cl_command_event.h"
#include "codelite_events.h"
#include "drawingutils.h"
#include "editor_config.h"
#include "event_notifier.h"
#include "file_logger.h"
#include "globals.h"
#include "imanager.h"
#include "lexer_configuration.h"
#include "wxStringHash.h"
#include <algorithm>
#include <wx/app.h>
#include <wx/dcbuffer.h>
#include <wx/dcgraph.h>
#include <wx/dnd.h>
#include <wx/image.h>
#include <wx/menu.h>
#include <wx/regex.h>
#include <wx/sizer.h>
#include <wx/wupdlock.h>
#include <wx/xrc/xh_bmp.h>
#include <wx/xrc/xmlres.h>
namespace
{
struct DnD_Data {
clTabCtrl* srcTabCtrl = nullptr;
int tabIndex;
DnD_Data()
: srcTabCtrl(NULL)
, tabIndex(wxNOT_FOUND)
{
}
void Clear()
{
srcTabCtrl = NULL;
tabIndex = wxNOT_FOUND;
}
};
DnD_Data s_clTabCtrlDnD_Data;
const wxString BUTTON_FILE_LIST_SYMBOL = wxT("\u22EF");
wxRect GetFileListButtonRect(wxWindow* win, size_t style, wxDC& dc)
{
wxDCFontChanger font_changer(dc);
wxFont font = clTabRenderer::GetTabFont(true);
dc.SetFont(font);
wxRect rr = dc.GetTextExtent(BUTTON_FILE_LIST_SYMBOL);
rr.Inflate(win->FromDIP(5));
int max_dim = wxMax(rr.GetWidth(), rr.GetHeight());
rr.SetWidth(max_dim);
rr.SetHeight(max_dim);
wxRect client_rect = win->GetClientRect();
rr.SetX(client_rect.GetX() + client_rect.GetWidth() - rr.GetWidth());
rr = rr.CenterIn(client_rect, wxVERTICAL);
return rr;
}
} // namespace
void clGenericNotebook::PositionControls()
{
size_t style = GetStyle();
// Detach the controls from the main sizer
if(GetSizer()) {
GetSizer()->Detach(m_windows);
GetSizer()->Detach(m_tabCtrl);
}
// Set new sizer
if(style & kNotebook_BottomTabs) {
// Tabs are placed under the pages
SetSizer(new wxBoxSizer(wxVERTICAL));
GetSizer()->Add(m_windows, 1, wxEXPAND);
GetSizer()->Add(m_tabCtrl, 0, wxEXPAND);
} else {
// Tabs are placed on top of the pages
SetSizer(new wxBoxSizer(wxVERTICAL));
GetSizer()->Add(m_tabCtrl, 0, wxEXPAND);
GetSizer()->Add(m_windows, 1, wxEXPAND);
}
m_tabCtrl->Refresh();
Layout();
}
clGenericNotebook::clGenericNotebook(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size,
long style, const wxString& name)
: wxPanel(parent, id, pos, size, wxWANTS_CHARS | wxTAB_TRAVERSAL | (style & wxWINDOW_STYLE_MASK), name)
{
static bool once = false;
if(!once) {
// Add PNG and Bitmap handler
wxImage::AddHandler(new wxPNGHandler);
wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
once = true;
}
style = (style & ~wxWINDOW_STYLE_MASK); // filter out wxWindow styles
Bind(wxEVT_SIZE, &clGenericNotebook::OnSize, this);
Bind(wxEVT_SIZING, &clGenericNotebook::OnSize, this);
m_tabCtrl = new clTabCtrl(this, style);
m_windows = new WindowStack(this, wxID_ANY, true);
EventNotifier::Get()->Bind(wxEVT_SYS_COLOURS_CHANGED, &clGenericNotebook::OnColoursChanged, this);
EventNotifier::Get()->Bind(wxEVT_EDITOR_SETTINGS_CHANGED, &clGenericNotebook::OnPreferencesChanged, this);
PositionControls();
}
clGenericNotebook::~clGenericNotebook()
{
EventNotifier::Get()->Unbind(wxEVT_SYS_COLOURS_CHANGED, &clGenericNotebook::OnColoursChanged, this);
EventNotifier::Get()->Unbind(wxEVT_EDITOR_SETTINGS_CHANGED, &clGenericNotebook::OnPreferencesChanged, this);
}
void clGenericNotebook::AddPage(wxWindow* page, const wxString& label, bool selected, int bitmapId,
const wxString& shortLabel)
{
InsertPage(GetPageCount(), page, label, selected, bitmapId, shortLabel);
}
void clGenericNotebook::DoChangeSelection(wxWindow* page) { m_windows->Select(page); }
bool clGenericNotebook::InsertPage(size_t index, wxWindow* page, const wxString& label, bool selected, int bitmapId,
const wxString& shortLabel)
{
clTabInfo::Ptr_t tab(new clTabInfo(m_tabCtrl, GetStyle(), page, label, bitmapId));
tab->SetShortLabel(shortLabel.IsEmpty() ? label : shortLabel);
tab->SetActive(selected, GetStyle());
return m_tabCtrl->InsertPage(index, tab);
}
void clGenericNotebook::SetStyle(size_t style)
{
m_tabCtrl->SetStyle(style);
PositionControls();
m_tabCtrl->Refresh();
}
wxWindow* clGenericNotebook::GetCurrentPage() const
{
if(m_tabCtrl->GetSelection() == wxNOT_FOUND)
return NULL;
return m_tabCtrl->GetPage(m_tabCtrl->GetSelection());
}
int clGenericNotebook::FindPage(wxWindow* page) const { return m_tabCtrl->FindPage(page); }
bool clGenericNotebook::RemovePage(size_t page, bool notify) { return m_tabCtrl->RemovePage(page, notify, false); }
bool clGenericNotebook::DeletePage(size_t page, bool notify) { return m_tabCtrl->RemovePage(page, notify, true); }
bool clGenericNotebook::DeleteAllPages() { return m_tabCtrl->DeleteAllPages(); }
void clGenericNotebook::EnableStyle(NotebookStyle style, bool enable)
{
size_t flags = GetStyle();
if(enable) {
flags |= style;
} else {
flags &= ~style;
}
SetStyle(flags);
}
void clGenericNotebook::SetTabDirection(wxDirection d)
{
size_t flags = GetStyle();
// Unless wxBOTTOM, use UP tabs (default, no flag is set)
flags &= ~kNotebook_BottomTabs;
if(d == wxBOTTOM) {
flags |= kNotebook_BottomTabs;
}
SetStyle(flags);
}
bool clGenericNotebook::MoveActivePage(int newIndex)
{
return m_tabCtrl->MoveActiveToIndex(newIndex, GetSelection() > newIndex ? eDirection::kLeft : eDirection::kRight);
}
void clGenericNotebook::OnSize(wxSizeEvent& event)
{
event.Skip();
// CallAfter(&clGenericNotebook::PositionControls);
}
void clGenericNotebook::OnPreferencesChanged(wxCommandEvent& event)
{
event.Skip();
// update the renderer
SetArt(clTabRenderer::CreateRenderer(this, GetStyle()));
// Enable tab switching using the mouse scrollbar
EnableStyle(kNotebook_MouseScrollSwitchTabs, EditorConfigST::Get()->GetOptions()->IsMouseScrollSwitchTabs());
}
void clGenericNotebook::OnColoursChanged(clCommandEvent& event)
{
event.Skip();
SetBackgroundColour(clSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
m_tabCtrl->m_colours.UpdateColours(GetStyle());
Refresh();
}
//----------------------------------------------------------
// clGenericNotebook header
//----------------------------------------------------------
// -------------------------------------------------------------------------------
// clTabCtrl class.
// This is where things are actually getting done
// -------------------------------------------------------------------------------
clTabCtrl::clTabCtrl(wxWindow* notebook, size_t style)
: wxPanel(notebook, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxWANTS_CHARS | wxTAB_TRAVERSAL)
, m_style(style)
, m_closeButtonClickedIndex(wxNOT_FOUND)
, m_contextMenu(NULL)
, m_dragStartTime((time_t)-1)
{
m_bitmaps = new clBitmapList;
SetBackgroundStyle(wxBG_STYLE_PAINT);
m_art = clTabRenderer::CreateRenderer(this, m_style);
DoSetBestSize();
SetDropTarget(new clTabCtrlDropTarget(this));
Bind(wxEVT_PAINT, &clTabCtrl::OnPaint, this);
Bind(wxEVT_ERASE_BACKGROUND, &clTabCtrl::OnEraseBG, this);
Bind(wxEVT_SIZE, &clTabCtrl::OnSize, this);
Bind(wxEVT_LEFT_DOWN, &clTabCtrl::OnLeftDown, this);
Bind(wxEVT_RIGHT_UP, &clTabCtrl::OnRightUp, this);
Bind(wxEVT_LEFT_UP, &clTabCtrl::OnLeftUp, this);
Bind(wxEVT_MOTION, &clTabCtrl::OnMouseMotion, this);
Bind(wxEVT_MIDDLE_UP, &clTabCtrl::OnMouseMiddleClick, this);
Bind(wxEVT_MOUSEWHEEL, &clTabCtrl::OnMouseScroll, this);
Bind(wxEVT_CONTEXT_MENU, &clTabCtrl::OnContextMenu, this);
Bind(wxEVT_LEFT_DCLICK, &clTabCtrl::OnLeftDClick, this);
// call refresh when leaving the window
Bind(wxEVT_LEAVE_WINDOW, [this](wxMouseEvent& e) {
e.Skip();
// reset the close button state
for(auto tab : m_tabs) {
tab->m_xButtonState = eButtonState::kNormal;
}
Refresh();
});
wxTheApp->Bind(wxEVT_ACTIVATE_APP, &clTabCtrl::OnActivateApp, this);
SetStyle(m_style);
m_colours.UpdateColours(m_style);
// The history object
m_history.reset(new clTabHistory());
}
void clTabCtrl::OnActivateApp(wxActivateEvent& e)
{
e.Skip(); // reset the close button state
for(auto tab : m_tabs) {
tab->m_xButtonState = eButtonState::kNormal;
}
Refresh();
}
void clTabCtrl::DoSetBestSize()
{
wxClientDC dc(this);
wxFont font = clTabRenderer::GetTabFont(true);
dc.SetFont(font);
wxString text;
for(clTabInfo::Ptr_t ti : m_tabs) {
if(text.length() < ti->GetBestLabel(m_style).length()) {
text = ti->GetBestLabel(m_style);
}
}
if(text.empty()) {
text = "__WORKSPACE__";
}
wxSize sz = dc.GetTextExtent(text);
int bmpHeight = clTabRenderer::GetDefaultBitmapHeight(GetArt()->ySpacer);
m_nHeight = sz.GetHeight() + (4 * GetArt()->ySpacer);
m_nHeight = wxMax(m_nHeight, bmpHeight);
m_nWidth = sz.GetWidth();
SetSizeHints(wxSize(-1, m_nHeight));
SetSize(-1, m_nHeight);
PositionFilelistButton();
}
bool clTabCtrl::ShiftRight(clTabInfo::Vec_t& tabs)
{
// Move the first tab from the list and adjust the remainder
// of the tabs x coordiate
if(!tabs.empty()) {
clTabInfo::Ptr_t t = tabs.at(0);
int width = t->GetWidth();
tabs.erase(tabs.begin() + 0);
for(size_t i = 0; i < tabs.size(); ++i) {
clTabInfo::Ptr_t t = tabs.at(i);
t->GetRect().SetX(t->GetRect().x - width + GetArt()->overlapWidth);
}
return true;
}
return false;
}
bool clTabCtrl::IsActiveTabInList(const clTabInfo::Vec_t& tabs) const
{
for(size_t i = 0; i < tabs.size(); ++i) {
if(tabs.at(i)->IsActive())
return true;
}
return false;
}
bool clTabCtrl::IsActiveTabVisible(const clTabInfo::Vec_t& tabs) const
{
wxRect clientRect(GetClientRect());
if(GetStyle() & kNotebook_ShowFileListButton) {
clientRect.SetWidth(clientRect.GetWidth() - CHEVRON_SIZE);
}
for(size_t i = 0; i < tabs.size(); ++i) {
clTabInfo::Ptr_t t = tabs.at(i);
wxRect tabRect = t->GetRect();
tabRect.SetWidth(tabRect.GetWidth() * 0.5); // The tab does not need to be fully shown, but at least 50% of it
if(t->IsActive() && clientRect.Contains(tabRect)) {
return true;
}
}
return false;
}
clTabCtrl::~clTabCtrl()
{
wxDELETE(m_contextMenu);
Unbind(wxEVT_PAINT, &clTabCtrl::OnPaint, this);
Unbind(wxEVT_ERASE_BACKGROUND, &clTabCtrl::OnEraseBG, this);
Unbind(wxEVT_SIZE, &clTabCtrl::OnSize, this);
Unbind(wxEVT_LEFT_DOWN, &clTabCtrl::OnLeftDown, this);
Unbind(wxEVT_RIGHT_UP, &clTabCtrl::OnRightUp, this);
Unbind(wxEVT_LEFT_UP, &clTabCtrl::OnLeftUp, this);
Unbind(wxEVT_MOTION, &clTabCtrl::OnMouseMotion, this);
Unbind(wxEVT_MIDDLE_UP, &clTabCtrl::OnMouseMiddleClick, this);
Unbind(wxEVT_CONTEXT_MENU, &clTabCtrl::OnContextMenu, this);
Unbind(wxEVT_LEFT_DCLICK, &clTabCtrl::OnLeftDClick, this);
Unbind(wxEVT_MOUSEWHEEL, &clTabCtrl::OnMouseScroll, this);
wxTheApp->Unbind(wxEVT_ACTIVATE_APP, &clTabCtrl::OnActivateApp, this);
wxDELETE(m_bitmaps);
}
void clTabCtrl::OnSize(wxSizeEvent& event)
{
event.Skip();
m_visibleTabs.clear();
PositionFilelistButton();
Refresh();
}
void clTabCtrl::OnEraseBG(wxEraseEvent& e) { wxUnusedVar(e); }
void clTabCtrl::OnPaint(wxPaintEvent& e)
{
wxPaintDC dc(this);
wxGCDC gcdc;
DrawingUtils::GetGCDC(dc, gcdc);
PrepareDC(gcdc);
wxRect clientRect(GetClientRect());
if(clientRect.width <= 3 || clientRect.height <= 3)
return;
wxRect rect(GetClientRect());
if(m_tabs.empty()) {
// Draw the default bg colour
gcdc.SetPen(clSystemSettings::GetDefaultPanelColour());
gcdc.SetBrush(clSystemSettings::GetDefaultPanelColour());
gcdc.DrawRectangle(GetClientRect());
return;
}
// Draw the tab area background colours
clTabInfo::Ptr_t active_tab = GetActiveTabInfo();
clTabColours activeTabColours = m_colours;
m_chevronRect = {};
if(m_style & kNotebook_ShowFileListButton) {
m_chevronRect = GetFileListButtonRect(this, m_style, gcdc);
}
#ifdef __WXOSX__
clientRect.Inflate(1);
#endif
GetArt()->DrawBackground(this, gcdc, clientRect, m_colours, m_style);
for(size_t i = 0; i < m_tabs.size(); ++i) {
m_tabs[i]->CalculateOffsets(GetStyle(), gcdc);
}
// Sanity
if(!(rect.GetSize().x > 0 && rect.GetSize().y > 0)) {
m_visibleTabs.clear();
return;
}
SetBackgroundColour(GetArt()->DrawBackground(this, gcdc, rect, m_colours, m_style));
UpdateVisibleTabs();
gcdc.SetClippingRegion(clientRect.x, clientRect.y, clientRect.width - m_chevronRect.GetWidth(), clientRect.height);
// check if the mouse is over a visible tab
int tabHit, realPos;
eDirection align;
auto mousePos = GetParent()->ScreenToClient(::wxGetMousePosition());
TestPoint(mousePos, realPos, tabHit, align);
wxUnusedVar(realPos);
wxUnusedVar(align);
clTabInfo::Ptr_t activeTab;
int activeTabIndex = wxNOT_FOUND;
for(int i = (m_visibleTabs.size() - 1); i >= 0; --i) {
clTabInfo::Ptr_t tab = m_visibleTabs[i];
if(tab->IsActive() && !activeTab) {
activeTab = tab;
activeTabIndex = i;
}
clTabColours* pColours = &m_colours;
clTabColours user_colours;
m_art->Draw(this, gcdc, gcdc, *tab.get(), i, (*pColours), m_style,
tabHit == i ? eButtonState::kHover : eButtonState::kNormal, tab->m_xButtonState);
}
if(!activeTab) {
m_tabs[0]->SetActive(true, GetStyle());
activeTab = m_tabs[0]; // make the first tab, the default one
activeTabIndex = 0;
}
// Redraw the active tab
m_art->Draw(this, gcdc, gcdc, *activeTab.get(), activeTabIndex, activeTabColours, m_style, eButtonState::kNormal,
activeTab->m_xButtonState);
gcdc.DestroyClippingRegion();
m_art->FinaliseBackground(this, gcdc, clientRect, activeTab->GetRect(), m_colours, m_style);
}
void clTabCtrl::DoUpdateCoordiantes(clTabInfo::Vec_t& tabs)
{
int xx = 0;
wxRect clientRect = GetClientRect();
for(size_t i = 0; i < tabs.size(); ++i) {
clTabInfo::Ptr_t tab = tabs[i];
tab->GetRect().SetX(xx);
tab->GetRect().SetY(0);
tab->GetRect().SetWidth(tab->GetWidth());
tab->GetRect().SetHeight(clientRect.GetHeight());
xx += tab->GetWidth();
}
}
void clTabCtrl::UpdateVisibleTabs(bool forceReshuffle)
{
// don't update the list if we don't need to
if(IsActiveTabInList(m_visibleTabs) && IsActiveTabVisible(m_visibleTabs) && !forceReshuffle)
return;
// set the physical coords for each tab (we do this for all the tabs)
DoUpdateCoordiantes(m_tabs);
// Start shifting right tabs until the active tab is visible
m_visibleTabs = m_tabs;
if(!IsVerticalTabs()) {
while(!IsActiveTabVisible(m_visibleTabs)) {
if(!ShiftRight(m_visibleTabs))
break;
}
} else {
while(!IsActiveTabVisible(m_visibleTabs)) {
if(!ShiftBottom(m_visibleTabs))
break;
}
}
}
void clTabCtrl::OnLeftDown(wxMouseEvent& event)
{
event.Skip();
const wxPoint& evetPos = event.GetPosition();
m_closeButtonClickedIndex = wxNOT_FOUND;
int tabHit, realPos;
eDirection align;
TestPoint(evetPos, realPos, tabHit, align);
if(tabHit == wxNOT_FOUND)
return;
// Did we hit the active tab?
bool clickWasOnActiveTab = (GetSelection() == realPos);
if(GetStyle() & kNotebook_CloseButtonOnActiveTab) {
// we clicked on the selected index
clTabInfo::Ptr_t t = m_visibleTabs.at(tabHit);
wxRect xRect = t->GetCloseButtonRect();
if(xRect.Contains(evetPos)) {
m_closeButtonClickedIndex = tabHit;
t->m_xButtonState = eButtonState::kPressed;
Refresh();
return;
}
}
// If the click was not on the active tab, set the clicked
// tab as the new selection and leave this function
if(!clickWasOnActiveTab) {
SetSelection(realPos);
}
// We clicked on a tab, so prepare to start DnD operation
if((m_style & kNotebook_AllowDnD)) {
wxCHECK_RET(!m_dragStartTime.IsValid(), "A leftdown event when Tab DnD was already starting/started");
m_dragStartTime = wxDateTime::UNow();
m_dragStartPos = wxPoint(event.GetX(), event.GetY());
}
}
int clTabCtrl::ChangeSelection(size_t tabIdx)
{
// wxWindowUpdateLocker locker(GetParent());
int oldSelection = GetSelection();
if(!IsIndexValid(tabIdx))
return oldSelection;
for(size_t i = 0; i < m_tabs.size(); ++i) {
clTabInfo::Ptr_t tab = m_tabs.at(i);
tab->SetActive((i == tabIdx), GetStyle());
if(i == tabIdx) {
m_history->Push(tab->GetWindow());
}
}
clTabInfo::Ptr_t activeTab = GetActiveTabInfo();
if(activeTab) {
static_cast<clGenericNotebook*>(GetParent())->DoChangeSelection(activeTab->GetWindow());
// Only SetFocus if !Wayland, otherwise it hangs; see #2457
if(!clIsWaylandSession())
activeTab->GetWindow()->CallAfter(&wxWindow::SetFocus);
}
Refresh();
return oldSelection;
}
int clTabCtrl::SetSelection(size_t tabIdx)
{
DoChangeSelection(tabIdx);
return wxNOT_FOUND;
}
int clTabCtrl::GetSelection() const
{
for(size_t i = 0; i < m_tabs.size(); ++i) {
clTabInfo::Ptr_t tab = m_tabs.at(i);
if(tab->IsActive())
return i;
}
return wxNOT_FOUND;
}
clTabInfo::Ptr_t clTabCtrl::GetTabInfo(size_t index)
{
if(!IsIndexValid(index))
return clTabInfo::Ptr_t(NULL);
return m_tabs.at(index);
}
clTabInfo::Ptr_t clTabCtrl::GetTabInfo(size_t index) const
{
if(!IsIndexValid(index))
return clTabInfo::Ptr_t(NULL);
return m_tabs.at(index);
}
clTabInfo::Ptr_t clTabCtrl::GetTabInfo(wxWindow* page)
{
for(size_t i = 0; i < m_tabs.size(); ++i) {
clTabInfo::Ptr_t tab = m_tabs.at(i);
if(tab->GetWindow() == page)
return tab;
}
return clTabInfo::Ptr_t(NULL);
}
bool clTabCtrl::SetPageText(size_t page, const wxString& text)
{
clTabInfo::Ptr_t tab = GetTabInfo(page);
if(!tab) {
return false;
}
tab->SetLabel(text, GetStyle());
// trigger an "on-size" event
PostSizeEventToParent();
return true;
}
void clTabCtrl::DoUpdateXCoordFromPage(wxWindow* page, int diff)
{
// Update the coordinates starting from the current tab
bool foundActiveTab = false;
for(size_t i = 0; i < m_tabs.size(); ++i) {
if(!foundActiveTab && (m_tabs.at(i)->GetWindow() == page)) {
foundActiveTab = true;
} else if(foundActiveTab) {
m_tabs.at(i)->GetRect().SetX(m_tabs.at(i)->GetRect().GetX() + diff);
}
}
}
clTabInfo::Ptr_t clTabCtrl::GetActiveTabInfo()
{
for(size_t i = 0; i < m_tabs.size(); ++i) {
if(m_tabs.at(i)->IsActive()) {
return m_tabs.at(i);
}
}
return clTabInfo::Ptr_t(NULL);
}
void clTabCtrl::AddPage(clTabInfo::Ptr_t tab) { InsertPage(m_tabs.size(), tab); }
WindowStack* clTabCtrl::GetStack() { return reinterpret_cast<clGenericNotebook*>(GetParent())->m_windows; }
bool clTabCtrl::InsertPage(size_t index, clTabInfo::Ptr_t tab)
{
int oldSelection = GetSelection();
if(index > m_tabs.size())
return false;
m_tabs.insert(m_tabs.begin() + index, tab);
bool sendPageChangedEvent = (oldSelection == wxNOT_FOUND) || tab->IsActive();
int tabIndex = index;
GetStack()->Add(tab->GetWindow(), tab->IsActive());
if(sendPageChangedEvent) {
ChangeSelection(tabIndex);
// Send an event
wxBookCtrlEvent event(wxEVT_BOOK_PAGE_CHANGED);
event.SetEventObject(GetParent());
event.SetSelection(GetSelection());
event.SetOldSelection(oldSelection);
GetParent()->GetEventHandler()->ProcessEvent(event);
}
m_history->Push(tab->GetWindow());
// DoSetBestSize();
Refresh();
return true;
}
wxString clTabCtrl::GetPageText(size_t page) const
{
clTabInfo::Ptr_t tab = GetTabInfo(page);
if(tab)
return tab->GetLabel();
return "";
}
const wxBitmap& clTabCtrl::GetPageBitmap(size_t index) const
{
clTabInfo::Ptr_t tab = GetTabInfo(index);
if(tab) {
return GetBitmaps()->Get(tab->GetBitmap(), false);
}
return wxNullBitmap;
}
int clTabCtrl::GetPageBitmapIndex(size_t index) const
{
clTabInfo::Ptr_t tab = GetTabInfo(index);
if(tab) {
return tab->GetBitmap();
}
return wxNOT_FOUND;
}
void clTabCtrl::SetPageBitmap(size_t index, int bmp)
{
clTabInfo::Ptr_t tab = GetTabInfo(index);
if(!tab)
return;
// Set the new bitmap and calc the difference
int oldWidth = tab->GetWidth();
tab->SetBitmap(bmp, GetStyle());
int newWidth = tab->GetWidth();
int diff = (newWidth - oldWidth);
// Update the width of the tabs from the current tab by "diff"
DoUpdateXCoordFromPage(tab->GetWindow(), diff);
// Redraw the tab control
Refresh();
}
void clTabCtrl::OnLeftUp(wxMouseEvent& event)
{
event.Skip();
m_dragStartTime.Set((time_t)-1); // Not considering D'n'D so reset any saved values
m_dragStartPos = wxPoint();
for(clTabInfo::Ptr_t t : m_tabs) {
t->m_xButtonState = t->IsActive() ? eButtonState::kNormal : eButtonState::kDisabled;
}
// First check if the chevron was clicked. We do this because the chevron could overlap the buttons drawing
// area
int tabHit, realPos;
eDirection align;
TestPoint(event.GetPosition(), realPos, tabHit, align);
if(tabHit != wxNOT_FOUND) {
if((GetStyle() & kNotebook_CloseButtonOnActiveTab)) {
// we clicked on the selected index
clTabInfo::Ptr_t t = m_visibleTabs.at(tabHit);
wxRect xRect = t->GetCloseButtonRect();
xRect.Inflate(2); // don't be picky if we did not click exactly on the 16x16 bitmap...
if(m_closeButtonClickedIndex == tabHit && xRect.Contains(event.GetPosition())) {
if(GetStyle() & kNotebook_CloseButtonOnActiveTabFireEvent) {
// let the user process this
wxBookCtrlEvent event(wxEVT_BOOK_PAGE_CLOSE_BUTTON);
event.SetEventObject(GetParent());
event.SetSelection(realPos);
GetParent()->GetEventHandler()->AddPendingEvent(event);
} else {
CallAfter(&clTabCtrl::DoDeletePage, realPos);
}
}
}
}
}
void clTabCtrl::OnMouseMotion(wxMouseEvent& event)
{
event.Skip();
int realPos, tabHit;
wxString curtip = GetToolTipText();
eDirection align;
TestPoint(event.GetPosition(), realPos, tabHit, align);
if(tabHit == wxNOT_FOUND || realPos == wxNOT_FOUND) {
if(!curtip.IsEmpty()) {
SetToolTip("");
}
} else {
clTabInfo::Ptr_t tabInfo = m_tabs.at(realPos);
const wxString& pagetip = tabInfo->GetTooltip().empty() ? tabInfo->GetLabel() : tabInfo->GetTooltip();
if(pagetip != curtip) {
SetToolTip(pagetip);
}
}
if(m_dragStartTime.IsValid()) { // If we're tugging on the tab, consider starting D'n'D
wxTimeSpan diff = wxDateTime::UNow() - m_dragStartTime;
if(diff.GetMilliseconds() > 100 && // We need to check both x and y distances as tabs may be vertical
((abs(m_dragStartPos.x - event.GetX()) > 10) || (abs(m_dragStartPos.y - event.GetY()) > 10))) {
OnBeginDrag(); // Sufficient time and distance since the LeftDown for a believable D'n'D start
}
}
// Refresh if hovering the close button state
for(clTabInfo::Ptr_t t : m_tabs) {
t->m_xButtonState = t->IsActive() ? eButtonState::kNormal : eButtonState::kDisabled;
}
if((realPos != wxNOT_FOUND) && (GetStyle() & kNotebook_CloseButtonOnActiveTab)) {
clTabInfo::Ptr_t t = m_tabs[realPos];
wxRect xRect = t->GetCloseButtonRect();
if(xRect.Contains(event.GetPosition())) {
t->m_xButtonState = event.LeftIsDown() ? eButtonState::kPressed : eButtonState::kHover;
}
}
Refresh();
}
void clTabCtrl::TestPoint(const wxPoint& pt, int& realPosition, int& tabHit, eDirection& align)
{
realPosition = wxNOT_FOUND;
tabHit = wxNOT_FOUND;
align = eDirection::kInvalid;
if(m_visibleTabs.empty())
return;
// Because the tabs are overlapping, we need to test
// the active tab first
clTabInfo::Ptr_t activeTab = GetActiveTabInfo();
if(activeTab && activeTab->GetRect().Contains(pt)) {
for(size_t i = 0; i < m_visibleTabs.size(); ++i) {
if(m_visibleTabs.at(i)->GetWindow() == activeTab->GetWindow()) {
tabHit = i;
realPosition = DoGetPageIndex(m_visibleTabs.at(i)->GetWindow());
return;
}
}
}
for(size_t i = 0; i < m_visibleTabs.size(); ++i) {
clTabInfo::Ptr_t tab = m_visibleTabs.at(i);
wxRect r(tab->GetRect());
if(r.Contains(pt)) {
if(pt.x > ((r.GetWidth() / 2) + r.GetX())) {
// the point is on the RIGHT side
align = eDirection::kRight;
} else {
align = eDirection::kLeft;
}
tabHit = i;
realPosition = DoGetPageIndex(tab->GetWindow());
return;
}
}
}
void clTabCtrl::SetStyle(size_t style)
{
this->m_style = style;
if(IsVerticalTabs()) {
SetSizeHints(wxSize(m_nWidth, -1));
SetSize(m_nWidth, -1);
} else {
SetSizeHints(wxSize(-1, m_nHeight));
SetSize(-1, m_nHeight);
}
for(size_t i = 0; i < m_tabs.size(); ++i) {
m_tabs.at(i)->CalculateOffsets(GetStyle());
}
m_visibleTabs.clear();
Layout();
if(GetStyle() & kNotebook_HideTabBar) {
Hide();
} else {
if(((GetStyle() & kNotebook_HideTabBar) == 0) && !IsShown()) {
Show();
}
}
Refresh();
}
wxWindow* clTabCtrl::GetPage(size_t index) const
{
clTabInfo::Ptr_t tab = GetTabInfo(index);
if(tab)
return tab->GetWindow();
return NULL;
}
bool clTabCtrl::IsIndexValid(size_t index) const { return (index < m_tabs.size()); }
int clTabCtrl::FindPage(wxWindow* page) const
{
for(size_t i = 0; i < m_tabs.size(); ++i) {
if(m_tabs.at(i)->GetWindow() == page) {
return i;
}
}
return wxNOT_FOUND;
}
bool clTabCtrl::RemovePage(size_t page, bool notify, bool deletePage)
{
wxWindow* nextSelection = NULL;
if(!IsIndexValid(page))
return false;
bool deletingSelection = ((int)page == GetSelection());
if(notify) {
wxBookCtrlEvent event(wxEVT_BOOK_PAGE_CLOSING);
event.SetEventObject(GetParent());
event.SetSelection(page);
GetParent()->GetEventHandler()->ProcessEvent(event);
if(!event.IsAllowed()) {
// Vetoed
return false;
}
}
// Remove the tab from the "all-tabs" list
clTabInfo::Ptr_t tab = m_tabs.at(page);
m_tabs.erase(m_tabs.begin() + page);
// Remove this page from the history
m_history->Pop(tab->GetWindow());
// Remove the tabs from the visible tabs list
clTabInfo::Vec_t::iterator iter = std::find_if(m_visibleTabs.begin(), m_visibleTabs.end(), [&](clTabInfo::Ptr_t t) {
if(t->GetWindow() == tab->GetWindow()) {
return true;
}
return false;
});
if(iter != m_visibleTabs.end()) {
iter = m_visibleTabs.erase(iter);
for(; iter != m_visibleTabs.end(); ++iter) {
// update the remainding tabs coordinates
if(IsVerticalTabs()) {
(*iter)->GetRect().SetY((*iter)->GetRect().GetY() - tab->GetHeight() + GetArt()->verticalOverlapWidth);
} else {
(*iter)->GetRect().SetX((*iter)->GetRect().GetX() - tab->GetWidth() + GetArt()->overlapWidth);
}
}
}
// Choose a new selection, but only if we are deleting the active tab
nextSelection = NULL;
if(deletingSelection) {
while(!m_history->GetHistory().empty() && !nextSelection) {
nextSelection = m_history->PrevPage();
if(!GetTabInfo(nextSelection)) {
// The history contains a tab that no longer exists
m_history->Pop(nextSelection);
nextSelection = NULL;
}
}
// It is OK to end up with a null next selection, we will handle it later
}
// If we are deleting the active page, select the new one first and _then_ remove the
// current one. This removes any possible flicker
if(deletingSelection) {
// Always make sure we have something to select...
if(!nextSelection && !m_tabs.empty()) {
nextSelection = m_tabs.at(0)->GetWindow();
}
int nextSel = DoGetPageIndex(nextSelection);
if(nextSel != wxNOT_FOUND) {
ChangeSelection(nextSel);
if(notify) {
wxBookCtrlEvent event(wxEVT_BOOK_PAGE_CHANGED);
event.SetEventObject(GetParent());
event.SetSelection(GetSelection());
GetParent()->GetEventHandler()->ProcessEvent(event);
}
}
}
// Now remove the page from the notebook. We will delete the page
// ourself, so there is no need to call DeletePage
GetStack()->Remove(tab->GetWindow());
if(deletePage) {
// Destory the page
tab->GetWindow()->Destroy();
} else {
// Just hide it
tab->GetWindow()->Hide();
}
if(notify) {
wxBookCtrlEvent event(wxEVT_BOOK_PAGE_CLOSED);
event.SetEventObject(GetParent());
GetParent()->GetEventHandler()->ProcessEvent(event);
}
UpdateVisibleTabs(true);
Refresh();
return true;
}
int clTabCtrl::DoGetPageIndex(wxWindow* win) const
{
if(!win)
return wxNOT_FOUND;
for(size_t i = 0; i < m_tabs.size(); ++i) {
if(m_tabs.at(i)->GetWindow() == win)
return i;
}
return wxNOT_FOUND;
}
bool clTabCtrl::DeleteAllPages()
{
GetStack()->Clear();
m_tabs.clear();
m_visibleTabs.clear();
m_history->Clear();
Refresh();
return true;
}
void clTabCtrl::OnMouseMiddleClick(wxMouseEvent& event)
{
event.Skip();
if(GetStyle() & kNotebook_MouseMiddleClickClosesTab) {
int realPos, tabHit;
eDirection align;
TestPoint(event.GetPosition(), realPos, tabHit, align);
if(realPos != wxNOT_FOUND) {
CallAfter(&clTabCtrl::DoDeletePage, realPos);
}
} else if(GetStyle() & kNotebook_MouseMiddleClickFireEvent) {
int realPos, tabHit;
eDirection align;
TestPoint(event.GetPosition(), realPos, tabHit, align);
if(realPos != wxNOT_FOUND) {
// Just fire an event
wxBookCtrlEvent e(wxEVT_BOOK_PAGE_CLOSE_BUTTON);
e.SetEventObject(GetParent());
e.SetSelection(realPos);
GetParent()->GetEventHandler()->AddPendingEvent(e);
}
}
}
void clTabCtrl::GetAllPages(std::vector<wxWindow*>& pages)
{
std::for_each(m_tabs.begin(), m_tabs.end(),
[&](clTabInfo::Ptr_t tabInfo) { pages.push_back(tabInfo->GetWindow()); });
}
void clTabCtrl::SetMenu(wxMenu* menu)
{
wxDELETE(m_contextMenu);
m_contextMenu = menu;
}
void clTabCtrl::OnContextMenu(wxContextMenuEvent& event)
{
event.Skip();
wxPoint pt = ::wxGetMousePosition();
pt = ScreenToClient(pt);
int realPos, tabHit;
eDirection align;
TestPoint(pt, realPos, tabHit, align);
if((realPos != wxNOT_FOUND)) {
// Show context menu for active tabs only
if(m_contextMenu && (realPos == GetSelection())) {
PopupMenu(m_contextMenu);
} else {
// fire an event for the selected tab
wxBookCtrlEvent menuEvent(wxEVT_BOOK_TAB_CONTEXT_MENU);
menuEvent.SetEventObject(GetParent());
menuEvent.SetSelection(realPos);
GetParent()->GetEventHandler()->ProcessEvent(menuEvent);
}
}
}
void clTabCtrl::DoShowTabList()
{
// sanity
if(!m_fileListButton) {
return;
}
const int curselection = GetSelection();
wxMenu menu;
const int firstTabPageID = 13457;
int pageMenuID = firstTabPageID;
// Do we have pages opened?
// Optionally make a sorted view of tabs.
std::vector<size_t> sortedIndexes(m_tabs.size());
{
// std is C++11 at the moment, so no generalized capture.
size_t index = 0;
std::generate(sortedIndexes.begin(), sortedIndexes.end(), [&index]() { return index++; });
}
if(EditorConfigST::Get()->GetOptions()->IsSortTabsDropdownAlphabetically()) {
std::sort(sortedIndexes.begin(), sortedIndexes.end(),
[this](size_t i1, size_t i2) { return m_tabs[i1]->m_label.CmpNoCase(m_tabs[i2]->m_label) < 0; });
}
for(auto sortedIndex : sortedIndexes) {
clTabInfo::Ptr_t tab = m_tabs.at(sortedIndex);
wxWindow* pWindow = tab->GetWindow();
wxString label = tab->GetLabel();
wxMenuItem* item = new wxMenuItem(&menu, pageMenuID, label, "", wxITEM_CHECK);
menu.Append(item);
item->Check(tab->IsActive());
menu.Bind(
wxEVT_MENU,
[=](wxCommandEvent& event) {
clGenericNotebook* book = dynamic_cast<clGenericNotebook*>(this->GetParent());
int newSelection = book->GetPageIndex(pWindow);
if(newSelection != curselection) {
book->SetSelection(newSelection);
}
},
pageMenuID);
pageMenuID++;
}
// Let others handle this event as well
clContextMenuEvent menuEvent(wxEVT_BOOK_FILELIST_BUTTON_CLICKED);
menuEvent.SetMenu(&menu);
menuEvent.SetEventObject(GetParent()); // The clGenericNotebook
GetParent()->GetEventHandler()->ProcessEvent(menuEvent);
if(menu.GetMenuItemCount() == 0) {
return;
}
m_fileListButton->ShowMenu(menu);
}
bool clTabCtrl::SetPageToolTip(size_t page, const wxString& tooltip)
{
clTabInfo::Ptr_t tab = GetTabInfo(page);
if(tab) {
tab->SetTooltip(tooltip);
return true;
}
return false;
}
int clTabCtrl::DoGetPageIndex(const wxString& label) const
{
for(size_t i = 0; i < m_tabs.size(); ++i) {
if(m_tabs.at(i)->GetLabel() == label)
return i;
}
return wxNOT_FOUND;
}
void clTabCtrl::DoChangeSelection(size_t index)
{
// sanity
if(index >= m_tabs.size())
return;
int oldSelection = GetSelection();
/// Do nothing if the tab is already selected
if(oldSelection == (int)index) {
ChangeSelection(index);
return;
}
{
wxBookCtrlEvent event(wxEVT_BOOK_PAGE_CHANGING);
event.SetEventObject(GetParent());
event.SetSelection(oldSelection);
event.SetOldSelection(wxNOT_FOUND);
GetParent()->GetEventHandler()->ProcessEvent(event);
if(!event.IsAllowed()) {
return; // Vetoed by the user
}
}
ChangeSelection(index);
// Fire an event
{
wxBookCtrlEvent event(wxEVT_BOOK_PAGE_CHANGED);
event.SetEventObject(GetParent());
event.SetSelection(GetSelection());
event.SetOldSelection(oldSelection);
GetParent()->GetEventHandler()->ProcessEvent(event);
}
}
bool clTabCtrl::MoveActiveToIndex(int newIndex, eDirection direction)
{
int activeTabInex = GetSelection();
// Sanity
if(newIndex == wxNOT_FOUND)
return false;
if(activeTabInex == wxNOT_FOUND)
return false;
if((newIndex < 0) || (newIndex >= (int)m_tabs.size()))
return false;
bool movingTabRight;
if(direction == eDirection::kInvalid) {
movingTabRight = (newIndex > activeTabInex);
} else if((direction == eDirection::kRight) || (direction == eDirection::kUp)) {
movingTabRight = true;
} else {
movingTabRight = false;
}
clTabInfo::Ptr_t movingTab = GetActiveTabInfo();
clTabInfo::Ptr_t insertBeforeTab = m_tabs.at(newIndex);
if(!movingTab)
return false;
// Step 1:
// Remove the tab from both the active and from the visible tabs array
clTabInfo::Vec_t::iterator iter = std::find_if(m_visibleTabs.begin(), m_visibleTabs.end(), [&](clTabInfo::Ptr_t t) {
if(t->GetWindow() == movingTab->GetWindow()) {
return true;
}
return false;
});
if(iter != m_visibleTabs.end()) {
m_visibleTabs.erase(iter);
}
iter = std::find_if(m_tabs.begin(), m_tabs.end(), [&](clTabInfo::Ptr_t t) {
if(t->GetWindow() == movingTab->GetWindow()) {
return true;
}
return false;
});
if(iter != m_tabs.end()) {
m_tabs.erase(iter);
}
// Step 2:
// Insert 'tab' in its new position (in both arrays)
iter = std::find_if(m_tabs.begin(), m_tabs.end(), [&](clTabInfo::Ptr_t t) {
if(t->GetWindow() == insertBeforeTab->GetWindow()) {
return true;
}
return false;
});
if(movingTabRight) {
++iter;
// inser the new tab _after_
if(iter != m_tabs.end()) {
m_tabs.insert(iter, movingTab);
} else {
m_tabs.push_back(movingTab);
}
iter = std::find_if(m_visibleTabs.begin(), m_visibleTabs.end(), [&](clTabInfo::Ptr_t t) {
if(t->GetWindow() == insertBeforeTab->GetWindow()) {
return true;
}
return false;
});
++iter;
if(iter != m_visibleTabs.end()) {
m_visibleTabs.insert(iter, movingTab);
} else {
m_visibleTabs.push_back(movingTab);
}
} else {
if(iter != m_tabs.end()) {
m_tabs.insert(iter, movingTab);
}
iter = std::find_if(m_visibleTabs.begin(), m_visibleTabs.end(), [&](clTabInfo::Ptr_t t) {
if(t->GetWindow() == insertBeforeTab->GetWindow()) {
return true;
}
return false;
});
if(iter != m_visibleTabs.end()) {
m_visibleTabs.insert(iter, movingTab);
}
}
// Step 3:
// Update the visible tabs coordinates
DoUpdateCoordiantes(m_visibleTabs);
// And finally: Refresh
Refresh();
return true;
}
void clTabCtrl::OnLeftDClick(wxMouseEvent& event)
{
event.Skip();
int realPos, tabHit;
eDirection align;
TestPoint(event.GetPosition(), realPos, tabHit, align);
if(tabHit == wxNOT_FOUND) {
// Fire background d-clicked event
wxBookCtrlEvent e(wxEVT_BOOK_NEW_PAGE);
e.SetEventObject(GetParent());
GetParent()->GetEventHandler()->AddPendingEvent(e);
} else {
// a tab was hit
wxBookCtrlEvent e(wxEVT_BOOK_TAB_DCLICKED);
e.SetEventObject(GetParent());
e.SetSelection(realPos);
GetParent()->GetEventHandler()->AddPendingEvent(e);
}
}
void clTabCtrl::DoDrawBottomBox(clTabInfo::Ptr_t activeTab, const wxRect& clientRect, wxDC& dc,
const clTabColours& colours)
{
GetArt()->DrawBottomRect(this, activeTab, clientRect, dc, colours, GetStyle());
}
bool clTabCtrl::IsVerticalTabs() const { return false; }
bool clTabCtrl::ShiftBottom(clTabInfo::Vec_t& tabs)
{
// Move the first tab from the list and adjust the remainder
// of the tabs y coordiate
if(!tabs.empty()) {
clTabInfo::Ptr_t t = tabs.at(0);
int height = t->GetHeight();
tabs.erase(tabs.begin() + 0);
for(size_t i = 0; i < tabs.size(); ++i) {
clTabInfo::Ptr_t t = tabs.at(i);
t->GetRect().SetY(t->GetRect().y - height + GetArt()->verticalOverlapWidth);
}
return true;
}
return false;
}
void clTabCtrl::OnRightUp(wxMouseEvent& event) { event.Skip(); }
void clTabCtrl::SetArt(clTabRenderer::Ptr_t art)
{
m_art = art;
DoSetBestSize();
Refresh();
}
void clTabCtrl::OnMouseScroll(wxMouseEvent& event)
{
event.Skip();
if(GetStyle() & kNotebook_MouseScrollSwitchTabs) {
size_t curSelection = GetSelection();
if(event.GetWheelRotation() > 0) {
if(curSelection > 0) {
SetSelection(curSelection - 1);
}
} else {
if(curSelection < GetTabs().size()) {
SetSelection(curSelection + 1);
}
}
}
}
// ---------------------------------------------------------------------------
// DnD
// ---------------------------------------------------------------------------
void clTabCtrl::OnBeginDrag()
{
m_dragStartTime.Set((time_t)-1); // Reset the saved values
m_dragStartPos = wxPoint();
// We simply drag the active tab index
s_clTabCtrlDnD_Data.srcTabCtrl = this;
s_clTabCtrlDnD_Data.tabIndex = GetSelection();
wxTextDataObject dragContent("clTabCtrl");
wxDropSource dragSource(this);
dragSource.SetData(dragContent);
wxDragResult result = dragSource.DoDragDrop(true);
wxUnusedVar(result);
}
void clTabCtrl::PositionFilelistButton()
{
if((m_style & kNotebook_ShowFileListButton) == 0) {
return;
}
wxClientDC cdc(this);
wxRect button_rect_base = GetFileListButtonRect(this, m_style, cdc);
m_chevronRect = button_rect_base;
wxRect button_rect = button_rect_base;
button_rect.Deflate(2);
button_rect = button_rect.CenterIn(m_chevronRect);
if(m_fileListButton == nullptr) {
m_fileListButton =
new clButton(this, wxID_ANY, BUTTON_FILE_LIST_SYMBOL, wxDefaultPosition, button_rect.GetSize());
m_fileListButton->Bind(wxEVT_BUTTON, [this](wxCommandEvent& event) {
wxUnusedVar(event);
DoShowTabList();
});
}
clColours colours;
colours.InitFromColour(clSystemSettings::GetDefaultPanelColour());
colours.SetBgColour(GetBackgroundColour());
colours.SetBorderColour(GetBackgroundColour());
m_fileListButton->SetColours(colours);
m_fileListButton->SetSize(button_rect.GetSize());
m_fileListButton->Move(button_rect.GetTopLeft());
}
clTabCtrlDropTarget::clTabCtrlDropTarget(clTabCtrl* tabCtrl)
: m_tabCtrl(tabCtrl)
, m_notebook(NULL)
{
}
clTabCtrlDropTarget::clTabCtrlDropTarget(clGenericNotebook* notebook)
: m_tabCtrl(NULL)
, m_notebook(notebook)
{
}
clTabCtrlDropTarget::~clTabCtrlDropTarget() {}
bool clTabCtrlDropTarget::OnDropText(wxCoord x, wxCoord y, const wxString& data)
{
int nTabIndex = s_clTabCtrlDnD_Data.tabIndex;
clTabCtrl* ctrl = s_clTabCtrlDnD_Data.srcTabCtrl;
s_clTabCtrlDnD_Data.Clear();
if(m_tabCtrl == ctrl) {
// Test the drop tab index
int realPos, tabHit;
eDirection align;
m_tabCtrl->TestPoint(wxPoint(x, y), realPos, tabHit, align);
// if the tab being dragged and the one we drop it on are the same
// return false
if(nTabIndex == realPos)
return false;
m_tabCtrl->MoveActiveToIndex(realPos, align);
} else if(ctrl) {
int realPos, tabHit;
eDirection align;
m_tabCtrl->TestPoint(wxPoint(x, y), realPos, tabHit, align);
// DnD to another notebook control
clTabInfo::Ptr_t movingTab = ctrl->GetTabInfo(nTabIndex);
clGenericNotebook* sourceBook = dynamic_cast<clGenericNotebook*>(ctrl->GetParent());
clGenericNotebook* targetBook = dynamic_cast<clGenericNotebook*>(m_tabCtrl->GetParent());
if(!sourceBook || !targetBook)
return false;
// To allow moving tabs betwen notebooks, both must have the kNotebook_AllowForeignDnD style bit enabled
if(!(sourceBook->GetStyle() & kNotebook_AllowForeignDnD))
return false;
if(!(targetBook->GetStyle() & kNotebook_AllowForeignDnD))
return false;
sourceBook->RemovePage(nTabIndex, false);
if(realPos == wxNOT_FOUND) {
targetBook->AddPage(movingTab->GetWindow(), movingTab->GetLabel(), true, movingTab->GetBitmap());
} else {
targetBook->InsertPage(realPos, movingTab->GetWindow(), movingTab->GetLabel(), true,
movingTab->GetBitmap());
}
return true;
} else if(m_notebook) {
wxWindowUpdateLocker locker(wxTheApp->GetTopWindow());
int where = m_notebook->HitTest(m_notebook->ScreenToClient(wxGetMousePosition()));
// If the drop tab and the source tab are the same, do nothing
if(where == nTabIndex) {
return false;
}
// Get the tab info before we remove it
wxWindow* movingPage = m_notebook->GetPage(nTabIndex);
wxWindow* dropPage = m_notebook->GetPage(where);
if(!movingPage || !dropPage) {
return false;
}
wxString label = m_notebook->GetPageText(nTabIndex);
int bmp = m_notebook->GetPageBitmapIndex(nTabIndex);
// Remove the page and insert it at the drop index
m_notebook->RemovePage(nTabIndex, false);
// Locate the drop index (since we removed a page, the drop index is no longer correct)
where = m_notebook->GetPageIndex(dropPage);
m_notebook->InsertPage(where, movingPage, label, true, bmp);
}
return true;
}
void clTabCtrl::SetPageModified(size_t page, bool modified)
{
clTabInfo::Ptr_t tab = GetTabInfo(page);
if(!tab) {
return;
}
tab->m_isModified = modified;
Refresh();
}
bool clTabCtrl::IsModified(size_t page) const
{
clTabInfo::Ptr_t tab = GetTabInfo(page);
if(!tab) {
return false;
}
return tab->IsModified();
}
|