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
|
/* Scintilla source code edit control */
/* ScintillaGTKAccessible.cxx - GTK+ accessibility for ScintillaGTK */
/* Copyright 2016 by Colomban Wendling <colomban@geany.org>
* The License.txt file describes the conditions under which this software may be distributed. */
// REFERENCES BETWEEN THE DIFFERENT OBJECTS
//
// ScintillaGTKAccessible is the actual implementation, as a C++ class.
// ScintillaObjectAccessible is the GObject derived from AtkObject that
// implements the various ATK interfaces, through ScintillaGTKAccessible.
// This follows the same pattern as ScintillaGTK and ScintillaObject.
//
// ScintillaGTK owns a strong reference to the ScintillaObjectAccessible, and
// is both responsible for creating and destroying that object.
//
// ScintillaObjectAccessible owns a strong reference to ScintillaGTKAccessible,
// and is responsible for creating and destroying that object.
//
// ScintillaGTKAccessible has weak references to both the ScintillaGTK and
// the ScintillaObjectAccessible objects associated, but does not own any
// strong references to those objects.
//
// The chain of ownership is as follows:
// ScintillaGTK -> ScintillaObjectAccessible -> ScintillaGTKAccessible
// DETAILS ON THE GOBJECT TYPE IMPLEMENTATION
//
// On GTK < 3.2, we need to use the AtkObjectFactory. We need to query
// the factory to see what type we should derive from, thus making use of
// dynamic inheritance. It's tricky, but it works so long as it's done
// carefully enough.
//
// On GTK 3.2 through 3.6, we need to hack around because GTK stopped
// registering its accessible types in the factory, so we can't query
// them that way. Unfortunately, the accessible types aren't exposed
// yet (not until 3.8), so there's no proper way to know which type to
// inherit from. To work around this, we instantiate the parent's
// AtkObject temporarily, and use it's type. It means creating an extra
// throwaway object and being able to pass the type information up to the
// type registration code, but it's the only solution I could find.
//
// On GTK 3.8 onward, we use the proper exposed GtkContainerAccessible as
// parent, and so a straightforward class.
//
// To hide and contain the complexity in type creation arising from the
// hackish support for GTK 3.2 to 3.8, the actual implementation for the
// widget's get_accessible() is located in the accessibility layer itself.
// Initially based on GtkTextViewAccessible from GTK 3.20
// Inspiration for the GTK < 3.2 part comes from Evince 2.24, thanks.
// FIXME: optimize character/byte offset conversion (with a cache?)
#include <cstddef>
#include <cstdlib>
#include <cstdint>
#include <cassert>
#include <cstring>
#include <stdexcept>
#include <new>
#include <string>
#include <string_view>
#include <vector>
#include <map>
#include <set>
#include <optional>
#include <algorithm>
#include <memory>
#include <glib.h>
#include <gtk/gtk.h>
// whether we have widget_set() and widget_unset()
#define HAVE_WIDGET_SET_UNSET (GTK_CHECK_VERSION(3, 3, 6))
// whether GTK accessibility is available through the ATK factory
#define HAVE_GTK_FACTORY (! GTK_CHECK_VERSION(3, 1, 9))
// whether we have gtk-a11y.h and the public GTK accessible types
#define HAVE_GTK_A11Y_H (GTK_CHECK_VERSION(3, 7, 6))
#if HAVE_GTK_A11Y_H
# include <gtk/gtk-a11y.h>
#endif
#if defined(_WIN32)
// On Win32 use windows.h to access CLIPFORMAT
#undef NOMINMAX
#define NOMINMAX
#include <windows.h>
#endif
// ScintillaGTK.h and stuff it needs
#include "ScintillaTypes.h"
#include "ScintillaMessages.h"
#include "ScintillaStructures.h"
#include "ILoader.h"
#include "ILexer.h"
#include "Debugging.h"
#include "Geometry.h"
#include "Platform.h"
#include "Scintilla.h"
#include "ScintillaWidget.h"
#include "CharacterCategoryMap.h"
#include "Position.h"
#include "UniqueString.h"
#include "SplitVector.h"
#include "Partitioning.h"
#include "RunStyles.h"
#include "ContractionState.h"
#include "CellBuffer.h"
#include "CallTip.h"
#include "KeyMap.h"
#include "Indicator.h"
#include "LineMarker.h"
#include "Style.h"
#include "ViewStyle.h"
#include "CharClassify.h"
#include "Decoration.h"
#include "CaseFolder.h"
#include "Document.h"
#include "CaseConvert.h"
#include "UniConversion.h"
#include "Selection.h"
#include "PositionCache.h"
#include "EditModel.h"
#include "MarginView.h"
#include "EditView.h"
#include "Editor.h"
#include "AutoComplete.h"
#include "ScintillaBase.h"
#include "Wrappers.h"
#include "ScintillaGTK.h"
#include "ScintillaGTKAccessible.h"
using namespace Scintilla;
using namespace Scintilla::Internal;
struct ScintillaObjectAccessiblePrivate {
ScintillaGTKAccessible *pscin;
};
typedef GtkAccessible ScintillaObjectAccessible;
typedef GtkAccessibleClass ScintillaObjectAccessibleClass;
#define SCINTILLA_OBJECT_ACCESSIBLE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SCINTILLA_TYPE_OBJECT_ACCESSIBLE, ScintillaObjectAccessible))
#define SCINTILLA_TYPE_OBJECT_ACCESSIBLE (scintilla_object_accessible_get_type(0))
// We can't use priv member because of dynamic inheritance, so we don't actually know the offset. Meh.
#define SCINTILLA_OBJECT_ACCESSIBLE_GET_PRIVATE(inst) (G_TYPE_INSTANCE_GET_PRIVATE((inst), SCINTILLA_TYPE_OBJECT_ACCESSIBLE, ScintillaObjectAccessiblePrivate))
static GType scintilla_object_accessible_get_type(GType parent_type);
ScintillaGTKAccessible *ScintillaGTKAccessible::FromAccessible(GtkAccessible *accessible) {
// FIXME: do we need the check below? GTK checks that in all methods, so maybe
GtkWidget *widget = gtk_accessible_get_widget(accessible);
if (! widget) {
return nullptr;
}
return SCINTILLA_OBJECT_ACCESSIBLE_GET_PRIVATE(accessible)->pscin;
}
ScintillaGTKAccessible::ScintillaGTKAccessible(GtkAccessible *accessible_, GtkWidget *widget_) :
accessible(accessible_),
sci(ScintillaGTK::FromWidget(widget_)),
old_pos(-1) {
SetAccessibility(true);
g_signal_connect(widget_, "sci-notify", G_CALLBACK(SciNotify), this);
}
ScintillaGTKAccessible::~ScintillaGTKAccessible() {
if (gtk_accessible_get_widget(accessible)) {
g_signal_handlers_disconnect_matched(sci->sci, G_SIGNAL_MATCH_DATA, 0, 0, nullptr, nullptr, this);
}
}
gchar *ScintillaGTKAccessible::GetTextRangeUTF8(Sci::Position startByte, Sci::Position endByte) {
g_return_val_if_fail(startByte >= 0, nullptr);
// FIXME: should we swap start/end if necessary?
g_return_val_if_fail(endByte >= startByte, nullptr);
gchar *utf8Text = nullptr;
const char *charSetBuffer;
// like TargetAsUTF8, but avoids a double conversion
if (sci->IsUnicodeMode() || ! *(charSetBuffer = sci->CharacterSetID())) {
int len = endByte - startByte;
utf8Text = static_cast<gchar *>(g_malloc(len + 1));
sci->pdoc->GetCharRange(utf8Text, startByte, len);
utf8Text[len] = '\0';
} else {
// Need to convert
std::string s = sci->RangeText(startByte, endByte);
std::string tmputf = ConvertText(&s[0], s.length(), "UTF-8", charSetBuffer, false);
size_t len = tmputf.length();
utf8Text = static_cast<gchar *>(g_malloc(len + 1));
memcpy(utf8Text, tmputf.c_str(), len);
utf8Text[len] = '\0';
}
return utf8Text;
}
gchar *ScintillaGTKAccessible::GetText(int startChar, int endChar) {
Sci::Position startByte, endByte;
if (endChar == -1) {
startByte = ByteOffsetFromCharacterOffset(startChar);
endByte = sci->pdoc->Length();
} else {
ByteRangeFromCharacterRange(startChar, endChar, startByte, endByte);
}
return GetTextRangeUTF8(startByte, endByte);
}
gchar *ScintillaGTKAccessible::GetTextAfterOffset(int charOffset,
AtkTextBoundary boundaryType, int *startChar, int *endChar) {
g_return_val_if_fail(charOffset >= 0, nullptr);
Sci::Position startByte, endByte;
Sci::Position byteOffset = ByteOffsetFromCharacterOffset(charOffset);
switch (boundaryType) {
case ATK_TEXT_BOUNDARY_CHAR:
startByte = PositionAfter(byteOffset);
endByte = PositionAfter(startByte);
// FIXME: optimize conversion back, as we can reasonably assume +1 char?
break;
case ATK_TEXT_BOUNDARY_WORD_START:
startByte = sci->WndProc(Message::WordEndPosition, byteOffset, 1);
startByte = sci->WndProc(Message::WordEndPosition, startByte, 0);
endByte = sci->WndProc(Message::WordEndPosition, startByte, 1);
endByte = sci->WndProc(Message::WordEndPosition, endByte, 0);
break;
case ATK_TEXT_BOUNDARY_WORD_END:
startByte = sci->WndProc(Message::WordEndPosition, byteOffset, 0);
startByte = sci->WndProc(Message::WordEndPosition, startByte, 1);
endByte = sci->WndProc(Message::WordEndPosition, startByte, 0);
endByte = sci->WndProc(Message::WordEndPosition, endByte, 1);
break;
case ATK_TEXT_BOUNDARY_LINE_START: {
int line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
startByte = sci->WndProc(Message::PositionFromLine, line + 1, 0);
endByte = sci->WndProc(Message::PositionFromLine, line + 2, 0);
break;
}
case ATK_TEXT_BOUNDARY_LINE_END: {
int line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
startByte = sci->WndProc(Message::GetLineEndPosition, line, 0);
endByte = sci->WndProc(Message::GetLineEndPosition, line + 1, 0);
break;
}
default:
*startChar = *endChar = -1;
return nullptr;
}
CharacterRangeFromByteRange(startByte, endByte, startChar, endChar);
return GetTextRangeUTF8(startByte, endByte);
}
gchar *ScintillaGTKAccessible::GetTextBeforeOffset(int charOffset,
AtkTextBoundary boundaryType, int *startChar, int *endChar) {
g_return_val_if_fail(charOffset >= 0, nullptr);
Sci::Position startByte, endByte;
Sci::Position byteOffset = ByteOffsetFromCharacterOffset(charOffset);
switch (boundaryType) {
case ATK_TEXT_BOUNDARY_CHAR:
endByte = PositionBefore(byteOffset);
startByte = PositionBefore(endByte);
break;
case ATK_TEXT_BOUNDARY_WORD_START:
endByte = sci->WndProc(Message::WordStartPosition, byteOffset, 0);
endByte = sci->WndProc(Message::WordStartPosition, endByte, 1);
startByte = sci->WndProc(Message::WordStartPosition, endByte, 0);
startByte = sci->WndProc(Message::WordStartPosition, startByte, 1);
break;
case ATK_TEXT_BOUNDARY_WORD_END:
endByte = sci->WndProc(Message::WordStartPosition, byteOffset, 1);
endByte = sci->WndProc(Message::WordStartPosition, endByte, 0);
startByte = sci->WndProc(Message::WordStartPosition, endByte, 1);
startByte = sci->WndProc(Message::WordStartPosition, startByte, 0);
break;
case ATK_TEXT_BOUNDARY_LINE_START: {
int line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
endByte = sci->WndProc(Message::PositionFromLine, line, 0);
if (line > 0) {
startByte = sci->WndProc(Message::PositionFromLine, line - 1, 0);
} else {
startByte = endByte;
}
break;
}
case ATK_TEXT_BOUNDARY_LINE_END: {
int line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
if (line > 0) {
endByte = sci->WndProc(Message::GetLineEndPosition, line - 1, 0);
} else {
endByte = 0;
}
if (line > 1) {
startByte = sci->WndProc(Message::GetLineEndPosition, line - 2, 0);
} else {
startByte = endByte;
}
break;
}
default:
*startChar = *endChar = -1;
return nullptr;
}
CharacterRangeFromByteRange(startByte, endByte, startChar, endChar);
return GetTextRangeUTF8(startByte, endByte);
}
gchar *ScintillaGTKAccessible::GetTextAtOffset(int charOffset,
AtkTextBoundary boundaryType, int *startChar, int *endChar) {
g_return_val_if_fail(charOffset >= 0, nullptr);
Sci::Position startByte, endByte;
Sci::Position byteOffset = ByteOffsetFromCharacterOffset(charOffset);
switch (boundaryType) {
case ATK_TEXT_BOUNDARY_CHAR:
startByte = byteOffset;
endByte = sci->WndProc(Message::PositionAfter, byteOffset, 0);
break;
case ATK_TEXT_BOUNDARY_WORD_START:
startByte = sci->WndProc(Message::WordStartPosition, byteOffset, 1);
endByte = sci->WndProc(Message::WordEndPosition, byteOffset, 1);
if (! sci->WndProc(Message::IsRangeWord, startByte, endByte)) {
// if the cursor was not on a word, forward back
startByte = sci->WndProc(Message::WordStartPosition, startByte, 0);
startByte = sci->WndProc(Message::WordStartPosition, startByte, 1);
}
endByte = sci->WndProc(Message::WordEndPosition, endByte, 0);
break;
case ATK_TEXT_BOUNDARY_WORD_END:
startByte = sci->WndProc(Message::WordStartPosition, byteOffset, 1);
endByte = sci->WndProc(Message::WordEndPosition, byteOffset, 1);
if (! sci->WndProc(Message::IsRangeWord, startByte, endByte)) {
// if the cursor was not on a word, forward back
endByte = sci->WndProc(Message::WordEndPosition, endByte, 0);
endByte = sci->WndProc(Message::WordEndPosition, endByte, 1);
}
startByte = sci->WndProc(Message::WordStartPosition, startByte, 0);
break;
case ATK_TEXT_BOUNDARY_LINE_START: {
int line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
startByte = sci->WndProc(Message::PositionFromLine, line, 0);
endByte = sci->WndProc(Message::PositionFromLine, line + 1, 0);
break;
}
case ATK_TEXT_BOUNDARY_LINE_END: {
int line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
if (line > 0) {
startByte = sci->WndProc(Message::GetLineEndPosition, line - 1, 0);
} else {
startByte = 0;
}
endByte = sci->WndProc(Message::GetLineEndPosition, line, 0);
break;
}
default:
*startChar = *endChar = -1;
return nullptr;
}
CharacterRangeFromByteRange(startByte, endByte, startChar, endChar);
return GetTextRangeUTF8(startByte, endByte);
}
#if ATK_CHECK_VERSION(2, 10, 0)
gchar *ScintillaGTKAccessible::GetStringAtOffset(int charOffset,
AtkTextGranularity granularity, int *startChar, int *endChar) {
g_return_val_if_fail(charOffset >= 0, nullptr);
Sci::Position startByte, endByte;
Sci::Position byteOffset = ByteOffsetFromCharacterOffset(charOffset);
switch (granularity) {
case ATK_TEXT_GRANULARITY_CHAR:
startByte = byteOffset;
endByte = sci->WndProc(Message::PositionAfter, byteOffset, 0);
break;
case ATK_TEXT_GRANULARITY_WORD:
startByte = sci->WndProc(Message::WordStartPosition, byteOffset, 1);
endByte = sci->WndProc(Message::WordEndPosition, byteOffset, 1);
break;
case ATK_TEXT_GRANULARITY_LINE: {
gint line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
startByte = sci->WndProc(Message::PositionFromLine, line, 0);
endByte = sci->WndProc(Message::GetLineEndPosition, line, 0);
break;
}
default:
*startChar = *endChar = -1;
return nullptr;
}
CharacterRangeFromByteRange(startByte, endByte, startChar, endChar);
return GetTextRangeUTF8(startByte, endByte);
}
#endif
gunichar ScintillaGTKAccessible::GetCharacterAtOffset(int charOffset) {
g_return_val_if_fail(charOffset >= 0, 0);
Sci::Position startByte = ByteOffsetFromCharacterOffset(charOffset);
Sci::Position endByte = PositionAfter(startByte);
gchar *ch = GetTextRangeUTF8(startByte, endByte);
gunichar unichar = g_utf8_get_char_validated(ch, -1);
g_free(ch);
return unichar;
}
gint ScintillaGTKAccessible::GetCharacterCount() {
return sci->pdoc->CountCharacters(0, sci->pdoc->Length());
}
gint ScintillaGTKAccessible::GetCaretOffset() {
return CharacterOffsetFromByteOffset(sci->WndProc(Message::GetCurrentPos, 0, 0));
}
gboolean ScintillaGTKAccessible::SetCaretOffset(int charOffset) {
sci->WndProc(Message::GotoPos, ByteOffsetFromCharacterOffset(charOffset), 0);
return TRUE;
}
gint ScintillaGTKAccessible::GetOffsetAtPoint(gint x, gint y, AtkCoordType coords) {
gint x_widget, y_widget, x_window, y_window;
GtkWidget *widget = gtk_accessible_get_widget(accessible);
GdkWindow *window = gtk_widget_get_window(widget);
gdk_window_get_origin(window, &x_widget, &y_widget);
if (coords == ATK_XY_SCREEN) {
x = x - x_widget;
y = y - y_widget;
} else if (coords == ATK_XY_WINDOW) {
window = gdk_window_get_toplevel(window);
gdk_window_get_origin(window, &x_window, &y_window);
x = x - x_widget + x_window;
y = y - y_widget + y_window;
} else {
return -1;
}
// FIXME: should we handle scrolling?
return CharacterOffsetFromByteOffset(sci->WndProc(Message::CharPositionFromPointClose, x, y));
}
void ScintillaGTKAccessible::GetCharacterExtents(int charOffset,
gint *x, gint *y, gint *width, gint *height, AtkCoordType coords) {
*x = *y = *height = *width = 0;
Sci::Position byteOffset = ByteOffsetFromCharacterOffset(charOffset);
// FIXME: should we handle scrolling?
*x = sci->WndProc(Message::PointXFromPosition, 0, byteOffset);
*y = sci->WndProc(Message::PointYFromPosition, 0, byteOffset);
int line = sci->WndProc(Message::LineFromPosition, byteOffset, 0);
*height = sci->WndProc(Message::TextHeight, line, 0);
int nextByteOffset = PositionAfter(byteOffset);
int next_x = sci->WndProc(Message::PointXFromPosition, 0, nextByteOffset);
if (next_x > *x) {
*width = next_x - *x;
} else if (nextByteOffset > byteOffset) {
/* maybe next position was on the next line or something.
* just compute the expected character width */
int style = StyleAt(byteOffset, true);
int len = nextByteOffset - byteOffset;
char *ch = new char[len + 1];
sci->pdoc->GetCharRange(ch, byteOffset, len);
ch[len] = '\0';
*width = sci->TextWidth(style, ch);
delete[] ch;
}
GtkWidget *widget = gtk_accessible_get_widget(accessible);
GdkWindow *window = gtk_widget_get_window(widget);
int x_widget, y_widget;
gdk_window_get_origin(window, &x_widget, &y_widget);
if (coords == ATK_XY_SCREEN) {
*x += x_widget;
*y += y_widget;
} else if (coords == ATK_XY_WINDOW) {
window = gdk_window_get_toplevel(window);
int x_window, y_window;
gdk_window_get_origin(window, &x_window, &y_window);
*x += x_widget - x_window;
*y += y_widget - y_window;
} else {
*x = *y = *height = *width = 0;
}
}
static AtkAttributeSet *AddTextAttribute(AtkAttributeSet *attributes, AtkTextAttribute attr, gchar *value) {
AtkAttribute *at = g_new(AtkAttribute, 1);
at->name = g_strdup(atk_text_attribute_get_name(attr));
at->value = value;
return g_slist_prepend(attributes, at);
}
static AtkAttributeSet *AddTextIntAttribute(AtkAttributeSet *attributes, AtkTextAttribute attr, gint i) {
return AddTextAttribute(attributes, attr, g_strdup(atk_text_attribute_get_value(attr, i)));
}
static AtkAttributeSet *AddTextColorAttribute(AtkAttributeSet *attributes, AtkTextAttribute attr, ColourRGBA colour) {
return AddTextAttribute(attributes, attr,
g_strdup_printf("%u,%u,%u", colour.GetRed() * 257, colour.GetGreen() * 257, colour.GetBlue() * 257));
}
AtkAttributeSet *ScintillaGTKAccessible::GetAttributesForStyle(unsigned int styleNum) {
AtkAttributeSet *attr_set = nullptr;
if (styleNum >= sci->vs.styles.size())
return nullptr;
Style &style = sci->vs.styles[styleNum];
attr_set = AddTextAttribute(attr_set, ATK_TEXT_ATTR_FAMILY_NAME, g_strdup(style.fontName));
attr_set = AddTextAttribute(attr_set, ATK_TEXT_ATTR_SIZE, g_strdup_printf("%d", style.size / SC_FONT_SIZE_MULTIPLIER));
attr_set = AddTextIntAttribute(attr_set, ATK_TEXT_ATTR_WEIGHT, CLAMP(static_cast<int>(style.weight), 100, 1000));
attr_set = AddTextIntAttribute(attr_set, ATK_TEXT_ATTR_STYLE, style.italic ? PANGO_STYLE_ITALIC : PANGO_STYLE_NORMAL);
attr_set = AddTextIntAttribute(attr_set, ATK_TEXT_ATTR_UNDERLINE, style.underline ? PANGO_UNDERLINE_SINGLE : PANGO_UNDERLINE_NONE);
attr_set = AddTextColorAttribute(attr_set, ATK_TEXT_ATTR_FG_COLOR, style.fore);
attr_set = AddTextColorAttribute(attr_set, ATK_TEXT_ATTR_BG_COLOR, style.back);
attr_set = AddTextIntAttribute(attr_set, ATK_TEXT_ATTR_INVISIBLE, style.visible ? 0 : 1);
attr_set = AddTextIntAttribute(attr_set, ATK_TEXT_ATTR_EDITABLE, style.changeable ? 1 : 0);
return attr_set;
}
AtkAttributeSet *ScintillaGTKAccessible::GetRunAttributes(int charOffset, int *startChar, int *endChar) {
g_return_val_if_fail(charOffset >= -1, nullptr);
Sci::Position byteOffset;
if (charOffset == -1) {
byteOffset = sci->WndProc(Message::GetCurrentPos, 0, 0);
} else {
byteOffset = ByteOffsetFromCharacterOffset(charOffset);
}
int length = sci->pdoc->Length();
g_return_val_if_fail(byteOffset <= length, nullptr);
const char style = StyleAt(byteOffset, true);
// compute the range for this style
Sci::Position startByte = byteOffset;
// when going backwards, we know the style is already computed
while (startByte > 0 && sci->pdoc->StyleAt((startByte) - 1) == style)
(startByte)--;
Sci::Position endByte = byteOffset + 1;
while (endByte < length && StyleAt(endByte, true) == style)
(endByte)++;
CharacterRangeFromByteRange(startByte, endByte, startChar, endChar);
return GetAttributesForStyle((unsigned int) style);
}
AtkAttributeSet *ScintillaGTKAccessible::GetDefaultAttributes() {
return GetAttributesForStyle(0);
}
gint ScintillaGTKAccessible::GetNSelections() {
return sci->sel.Empty() ? 0 : sci->sel.Count();
}
gchar *ScintillaGTKAccessible::GetSelection(gint selection_num, int *startChar, int *endChar) {
if (selection_num < 0 || (unsigned int) selection_num >= sci->sel.Count())
return nullptr;
Sci::Position startByte = sci->sel.Range(selection_num).Start().Position();
Sci::Position endByte = sci->sel.Range(selection_num).End().Position();
CharacterRangeFromByteRange(startByte, endByte, startChar, endChar);
return GetTextRangeUTF8(startByte, endByte);
}
gboolean ScintillaGTKAccessible::AddSelection(int startChar, int endChar) {
size_t n_selections = sci->sel.Count();
Sci::Position startByte, endByte;
ByteRangeFromCharacterRange(startChar, endChar, startByte, endByte);
// use WndProc() to set the selections so it notifies as needed
if (n_selections > 1 || ! sci->sel.Empty()) {
sci->WndProc(Message::AddSelection, startByte, endByte);
} else {
sci->WndProc(Message::SetSelection, startByte, endByte);
}
return TRUE;
}
gboolean ScintillaGTKAccessible::RemoveSelection(gint selection_num) {
size_t n_selections = sci->sel.Count();
if (selection_num < 0 || (unsigned int) selection_num >= n_selections)
return FALSE;
if (n_selections > 1) {
sci->WndProc(Message::DropSelectionN, selection_num, 0);
} else if (sci->sel.Empty()) {
return FALSE;
} else {
sci->WndProc(Message::ClearSelections, 0, 0);
}
return TRUE;
}
gboolean ScintillaGTKAccessible::SetSelection(gint selection_num, int startChar, int endChar) {
if (selection_num < 0 || (unsigned int) selection_num >= sci->sel.Count())
return FALSE;
Sci::Position startByte, endByte;
ByteRangeFromCharacterRange(startChar, endChar, startByte, endByte);
sci->WndProc(Message::SetSelectionNStart, selection_num, startByte);
sci->WndProc(Message::SetSelectionNEnd, selection_num, endByte);
return TRUE;
}
void ScintillaGTKAccessible::AtkTextIface::init(::AtkTextIface *iface) {
iface->get_text = GetText;
iface->get_text_after_offset = GetTextAfterOffset;
iface->get_text_at_offset = GetTextAtOffset;
iface->get_text_before_offset = GetTextBeforeOffset;
#if ATK_CHECK_VERSION(2, 10, 0)
iface->get_string_at_offset = GetStringAtOffset;
#endif
iface->get_character_at_offset = GetCharacterAtOffset;
iface->get_character_count = GetCharacterCount;
iface->get_caret_offset = GetCaretOffset;
iface->set_caret_offset = SetCaretOffset;
iface->get_offset_at_point = GetOffsetAtPoint;
iface->get_character_extents = GetCharacterExtents;
iface->get_n_selections = GetNSelections;
iface->get_selection = GetSelection;
iface->add_selection = AddSelection;
iface->remove_selection = RemoveSelection;
iface->set_selection = SetSelection;
iface->get_run_attributes = GetRunAttributes;
iface->get_default_attributes = GetDefaultAttributes;
}
/* atkeditabletext.h */
void ScintillaGTKAccessible::SetTextContents(const gchar *contents) {
// FIXME: it's probably useless to check for READONLY here, SETTEXT probably does it just fine?
if (! sci->pdoc->IsReadOnly()) {
sci->WndProc(Message::SetText, 0, (sptr_t) contents);
}
}
bool ScintillaGTKAccessible::InsertStringUTF8(Sci::Position bytePos, const gchar *utf8, Sci::Position lengthBytes) {
if (sci->pdoc->IsReadOnly()) {
return false;
}
// like EncodedFromUTF8(), but avoids an extra copy
// FIXME: update target?
const char *charSetBuffer;
if (sci->IsUnicodeMode() || ! *(charSetBuffer = sci->CharacterSetID())) {
sci->pdoc->InsertString(bytePos, utf8, lengthBytes);
} else {
// conversion needed
std::string encoded = ConvertText(utf8, lengthBytes, charSetBuffer, "UTF-8", true);
sci->pdoc->InsertString(bytePos, encoded.c_str(), encoded.length());
}
return true;
}
void ScintillaGTKAccessible::InsertText(const gchar *text, int lengthBytes, int *charPosition) {
Sci::Position bytePosition = ByteOffsetFromCharacterOffset(*charPosition);
// FIXME: should we update the target?
if (InsertStringUTF8(bytePosition, text, lengthBytes)) {
(*charPosition) += sci->pdoc->CountCharacters(bytePosition, lengthBytes);
}
}
void ScintillaGTKAccessible::CopyText(int startChar, int endChar) {
Sci::Position startByte, endByte;
ByteRangeFromCharacterRange(startChar, endChar, startByte, endByte);
sci->CopyRangeToClipboard(startByte, endByte);
}
void ScintillaGTKAccessible::CutText(int startChar, int endChar) {
g_return_if_fail(endChar >= startChar);
if (! sci->pdoc->IsReadOnly()) {
// FIXME: have a byte variant of those and convert only once?
CopyText(startChar, endChar);
DeleteText(startChar, endChar);
}
}
void ScintillaGTKAccessible::DeleteText(int startChar, int endChar) {
g_return_if_fail(endChar >= startChar);
if (! sci->pdoc->IsReadOnly()) {
Sci::Position startByte, endByte;
ByteRangeFromCharacterRange(startChar, endChar, startByte, endByte);
if (! sci->RangeContainsProtected(startByte, endByte)) {
// FIXME: restore the target?
sci->pdoc->DeleteChars(startByte, endByte - startByte);
}
}
}
void ScintillaGTKAccessible::PasteText(int charPosition) {
if (sci->pdoc->IsReadOnly())
return;
// Helper class holding the position for the asynchronous paste operation.
// We can only hope that when the callback gets called scia is still valid, but ScintillaGTK
// has always done that without problems, so let's guess it's a fairly safe bet.
struct Helper : GObjectWatcher {
ScintillaGTKAccessible *scia;
Sci::Position bytePosition;
void Destroyed() override {
scia = nullptr;
}
Helper(ScintillaGTKAccessible *scia_, Sci::Position bytePos_) :
GObjectWatcher(G_OBJECT(scia_->sci->sci)),
scia(scia_),
bytePosition(bytePos_) {
}
void TextReceived(GtkClipboard *, const gchar *text) {
if (text) {
size_t len = strlen(text);
std::string convertedText;
if (len > 0 && scia->sci->convertPastes) {
// Convert line endings of the paste into our local line-endings mode
convertedText = Document::TransformLineEnds(text, len, scia->sci->pdoc->eolMode);
len = convertedText.length();
text = convertedText.c_str();
}
scia->InsertStringUTF8(bytePosition, text, static_cast<Sci::Position>(len));
}
}
static void TextReceivedCallback(GtkClipboard *clipboard, const gchar *text, gpointer data) {
Helper *helper = static_cast<Helper*>(data);
try {
if (helper->scia != nullptr) {
helper->TextReceived(clipboard, text);
}
} catch (...) {}
delete helper;
}
};
Helper *helper = new Helper(this, ByteOffsetFromCharacterOffset(charPosition));
GtkWidget *widget = gtk_accessible_get_widget(accessible);
GtkClipboard *clipboard = gtk_widget_get_clipboard(widget, GDK_SELECTION_CLIPBOARD);
gtk_clipboard_request_text(clipboard, helper->TextReceivedCallback, helper);
}
void ScintillaGTKAccessible::AtkEditableTextIface::init(::AtkEditableTextIface *iface) {
iface->set_text_contents = SetTextContents;
iface->insert_text = InsertText;
iface->copy_text = CopyText;
iface->cut_text = CutText;
iface->delete_text = DeleteText;
iface->paste_text = PasteText;
//~ iface->set_run_attributes = SetRunAttributes;
}
bool ScintillaGTKAccessible::Enabled() const {
return sci->accessibilityEnabled == SC_ACCESSIBILITY_ENABLED;
}
// Callbacks
void ScintillaGTKAccessible::UpdateCursor() {
Sci::Position pos = sci->WndProc(Message::GetCurrentPos, 0, 0);
if (old_pos != pos) {
int charPosition = CharacterOffsetFromByteOffset(pos);
g_signal_emit_by_name(accessible, "text-caret-moved", charPosition);
old_pos = pos;
}
size_t n_selections = sci->sel.Count();
size_t prev_n_selections = old_sels.size();
bool selection_changed = n_selections != prev_n_selections;
old_sels.resize(n_selections);
for (size_t i = 0; i < n_selections; i++) {
SelectionRange &sel = sci->sel.Range(i);
if (i < prev_n_selections && ! selection_changed) {
SelectionRange &old_sel = old_sels[i];
// do not consider a caret move to be a selection change
selection_changed = ((! old_sel.Empty() || ! sel.Empty()) && ! (old_sel == sel));
}
old_sels[i] = sel;
}
if (selection_changed)
g_signal_emit_by_name(accessible, "text-selection-changed");
}
void ScintillaGTKAccessible::ChangeDocument(Document *oldDoc, Document *newDoc) {
if (!Enabled()) {
return;
}
if (oldDoc == newDoc) {
return;
}
if (oldDoc) {
int charLength = oldDoc->CountCharacters(0, oldDoc->Length());
g_signal_emit_by_name(accessible, "text-changed::delete", 0, charLength);
}
if (newDoc) {
PLATFORM_ASSERT(newDoc == sci->pdoc);
int charLength = newDoc->CountCharacters(0, newDoc->Length());
g_signal_emit_by_name(accessible, "text-changed::insert", 0, charLength);
if ((oldDoc ? oldDoc->IsReadOnly() : false) != newDoc->IsReadOnly()) {
NotifyReadOnly();
}
// update cursor and selection
old_pos = -1;
old_sels.clear();
UpdateCursor();
}
}
void ScintillaGTKAccessible::NotifyReadOnly() {
bool readonly = sci->pdoc->IsReadOnly();
atk_object_notify_state_change(ATK_OBJECT(accessible), ATK_STATE_EDITABLE, ! readonly);
#if ATK_CHECK_VERSION(2, 16, 0)
atk_object_notify_state_change(ATK_OBJECT(accessible), ATK_STATE_READ_ONLY, readonly);
#endif
}
void ScintillaGTKAccessible::SetAccessibility(bool enabled) {
// Called by ScintillaGTK when application has enabled or disabled accessibility
if (enabled)
sci->pdoc->AllocateLineCharacterIndex(LineCharacterIndexType::Utf32);
else
sci->pdoc->ReleaseLineCharacterIndex(LineCharacterIndexType::Utf32);
}
void ScintillaGTKAccessible::Notify(GtkWidget *, gint, NotificationData *nt) {
if (!Enabled())
return;
switch (nt->nmhdr.code) {
case Notification::Modified: {
if (FlagSet(nt->modificationType, ModificationFlags::InsertText)) {
int startChar = CharacterOffsetFromByteOffset(nt->position);
int lengthChar = sci->pdoc->CountCharacters(nt->position, nt->position + nt->length);
g_signal_emit_by_name(accessible, "text-changed::insert", startChar, lengthChar);
UpdateCursor();
}
if (FlagSet(nt->modificationType, ModificationFlags::BeforeDelete)) {
int startChar = CharacterOffsetFromByteOffset(nt->position);
int lengthChar = sci->pdoc->CountCharacters(nt->position, nt->position + nt->length);
g_signal_emit_by_name(accessible, "text-changed::delete", startChar, lengthChar);
}
if (FlagSet(nt->modificationType, ModificationFlags::DeleteText)) {
UpdateCursor();
}
if (FlagSet(nt->modificationType, ModificationFlags::ChangeStyle)) {
g_signal_emit_by_name(accessible, "text-attributes-changed");
}
} break;
case Notification::UpdateUI: {
if (FlagSet(nt->updated, Update::Selection)) {
UpdateCursor();
}
} break;
default:
break;
}
}
// ATK method wrappers
// wraps a call from the accessible object to the ScintillaGTKAccessible, and avoid leaking any exception
#define WRAPPER_METHOD_BODY(accessible, call, defret) \
try { \
ScintillaGTKAccessible *thisAccessible = FromAccessible(reinterpret_cast<GtkAccessible*>(accessible)); \
if (thisAccessible) { \
return thisAccessible->call; \
} else { \
return defret; \
} \
} catch (...) { \
return defret; \
}
// AtkText
gchar *ScintillaGTKAccessible::AtkTextIface::GetText(AtkText *text, int start_offset, int end_offset) {
WRAPPER_METHOD_BODY(text, GetText(start_offset, end_offset), nullptr);
}
gchar *ScintillaGTKAccessible::AtkTextIface::GetTextAfterOffset(AtkText *text, int offset, AtkTextBoundary boundary_type, int *start_offset, int *end_offset) {
WRAPPER_METHOD_BODY(text, GetTextAfterOffset(offset, boundary_type, start_offset, end_offset), nullptr)
}
gchar *ScintillaGTKAccessible::AtkTextIface::GetTextBeforeOffset(AtkText *text, int offset, AtkTextBoundary boundary_type, int *start_offset, int *end_offset) {
WRAPPER_METHOD_BODY(text, GetTextBeforeOffset(offset, boundary_type, start_offset, end_offset), nullptr)
}
gchar *ScintillaGTKAccessible::AtkTextIface::GetTextAtOffset(AtkText *text, gint offset, AtkTextBoundary boundary_type, gint *start_offset, gint *end_offset) {
WRAPPER_METHOD_BODY(text, GetTextAtOffset(offset, boundary_type, start_offset, end_offset), nullptr)
}
#if ATK_CHECK_VERSION(2, 10, 0)
gchar *ScintillaGTKAccessible::AtkTextIface::GetStringAtOffset(AtkText *text, gint offset, AtkTextGranularity granularity, gint *start_offset, gint *end_offset) {
WRAPPER_METHOD_BODY(text, GetStringAtOffset(offset, granularity, start_offset, end_offset), nullptr)
}
#endif
gunichar ScintillaGTKAccessible::AtkTextIface::GetCharacterAtOffset(AtkText *text, gint offset) {
WRAPPER_METHOD_BODY(text, GetCharacterAtOffset(offset), 0)
}
gint ScintillaGTKAccessible::AtkTextIface::GetCharacterCount(AtkText *text) {
WRAPPER_METHOD_BODY(text, GetCharacterCount(), 0)
}
gint ScintillaGTKAccessible::AtkTextIface::GetCaretOffset(AtkText *text) {
WRAPPER_METHOD_BODY(text, GetCaretOffset(), 0)
}
gboolean ScintillaGTKAccessible::AtkTextIface::SetCaretOffset(AtkText *text, gint offset) {
WRAPPER_METHOD_BODY(text, SetCaretOffset(offset), FALSE)
}
gint ScintillaGTKAccessible::AtkTextIface::GetOffsetAtPoint(AtkText *text, gint x, gint y, AtkCoordType coords) {
WRAPPER_METHOD_BODY(text, GetOffsetAtPoint(x, y, coords), -1)
}
void ScintillaGTKAccessible::AtkTextIface::GetCharacterExtents(AtkText *text, gint offset, gint *x, gint *y, gint *width, gint *height, AtkCoordType coords) {
WRAPPER_METHOD_BODY(text, GetCharacterExtents(offset, x, y, width, height, coords), )
}
AtkAttributeSet *ScintillaGTKAccessible::AtkTextIface::GetRunAttributes(AtkText *text, gint offset, gint *start_offset, gint *end_offset) {
WRAPPER_METHOD_BODY(text, GetRunAttributes(offset, start_offset, end_offset), nullptr)
}
AtkAttributeSet *ScintillaGTKAccessible::AtkTextIface::GetDefaultAttributes(AtkText *text) {
WRAPPER_METHOD_BODY(text, GetDefaultAttributes(), nullptr)
}
gint ScintillaGTKAccessible::AtkTextIface::GetNSelections(AtkText *text) {
WRAPPER_METHOD_BODY(text, GetNSelections(), 0)
}
gchar *ScintillaGTKAccessible::AtkTextIface::GetSelection(AtkText *text, gint selection_num, gint *start_pos, gint *end_pos) {
WRAPPER_METHOD_BODY(text, GetSelection(selection_num, start_pos, end_pos), nullptr)
}
gboolean ScintillaGTKAccessible::AtkTextIface::AddSelection(AtkText *text, gint start, gint end) {
WRAPPER_METHOD_BODY(text, AddSelection(start, end), FALSE)
}
gboolean ScintillaGTKAccessible::AtkTextIface::RemoveSelection(AtkText *text, gint selection_num) {
WRAPPER_METHOD_BODY(text, RemoveSelection(selection_num), FALSE)
}
gboolean ScintillaGTKAccessible::AtkTextIface::SetSelection(AtkText *text, gint selection_num, gint start, gint end) {
WRAPPER_METHOD_BODY(text, SetSelection(selection_num, start, end), FALSE)
}
// AtkEditableText
void ScintillaGTKAccessible::AtkEditableTextIface::SetTextContents(AtkEditableText *text, const gchar *contents) {
WRAPPER_METHOD_BODY(text, SetTextContents(contents), )
}
void ScintillaGTKAccessible::AtkEditableTextIface::InsertText(AtkEditableText *text, const gchar *contents, gint length, gint *position) {
WRAPPER_METHOD_BODY(text, InsertText(contents, length, position), )
}
void ScintillaGTKAccessible::AtkEditableTextIface::CopyText(AtkEditableText *text, gint start, gint end) {
WRAPPER_METHOD_BODY(text, CopyText(start, end), )
}
void ScintillaGTKAccessible::AtkEditableTextIface::CutText(AtkEditableText *text, gint start, gint end) {
WRAPPER_METHOD_BODY(text, CutText(start, end), )
}
void ScintillaGTKAccessible::AtkEditableTextIface::DeleteText(AtkEditableText *text, gint start, gint end) {
WRAPPER_METHOD_BODY(text, DeleteText(start, end), )
}
void ScintillaGTKAccessible::AtkEditableTextIface::PasteText(AtkEditableText *text, gint position) {
WRAPPER_METHOD_BODY(text, PasteText(position), )
}
// GObject glue
#if HAVE_GTK_FACTORY
static GType scintilla_object_accessible_factory_get_type(void);
#endif
static void scintilla_object_accessible_init(ScintillaObjectAccessible *accessible);
static void scintilla_object_accessible_class_init(ScintillaObjectAccessibleClass *klass);
static gpointer scintilla_object_accessible_parent_class = nullptr;
// @p parent_type is only required on GTK 3.2 to 3.6, and only on the first call
static GType scintilla_object_accessible_get_type(GType parent_type G_GNUC_UNUSED) {
static gsize type_id_result = 0;
if (g_once_init_enter(&type_id_result)) {
GTypeInfo tinfo = {
0, /* class size */
(GBaseInitFunc) nullptr, /* base init */
(GBaseFinalizeFunc) nullptr, /* base finalize */
(GClassInitFunc) scintilla_object_accessible_class_init, /* class init */
(GClassFinalizeFunc) nullptr, /* class finalize */
nullptr, /* class data */
0, /* instance size */
0, /* nb preallocs */
(GInstanceInitFunc) scintilla_object_accessible_init, /* instance init */
nullptr /* value table */
};
const GInterfaceInfo atk_text_info = {
(GInterfaceInitFunc) ScintillaGTKAccessible::AtkTextIface::init,
(GInterfaceFinalizeFunc) nullptr,
nullptr
};
const GInterfaceInfo atk_editable_text_info = {
(GInterfaceInitFunc) ScintillaGTKAccessible::AtkEditableTextIface::init,
(GInterfaceFinalizeFunc) nullptr,
nullptr
};
#if HAVE_GTK_A11Y_H
// good, we have gtk-a11y.h, we can use that
GType derived_atk_type = GTK_TYPE_CONTAINER_ACCESSIBLE;
tinfo.class_size = sizeof (GtkContainerAccessibleClass);
tinfo.instance_size = sizeof (GtkContainerAccessible);
#else // ! HAVE_GTK_A11Y_H
# if HAVE_GTK_FACTORY
// Figure out the size of the class and instance we are deriving from through the registry
GType derived_type = g_type_parent(SCINTILLA_TYPE_OBJECT);
AtkObjectFactory *factory = atk_registry_get_factory(atk_get_default_registry(), derived_type);
GType derived_atk_type = atk_object_factory_get_accessible_type(factory);
# else // ! HAVE_GTK_FACTORY
// We're kind of screwed and can't determine the parent (no registry, and no public type)
// Hack your way around by requiring the caller to give us our parent type. The caller
// might be able to trick its way into doing that, by e.g. instantiating the parent's
// accessible type and get its GType. It's ugly but we can't do better on GTK 3.2 to 3.6.
g_assert(parent_type != 0);
GType derived_atk_type = parent_type;
# endif // ! HAVE_GTK_FACTORY
GTypeQuery query;
g_type_query(derived_atk_type, &query);
tinfo.class_size = query.class_size;
tinfo.instance_size = query.instance_size;
#endif // ! HAVE_GTK_A11Y_H
GType type_id = g_type_register_static(derived_atk_type, "ScintillaObjectAccessible", &tinfo, (GTypeFlags) 0);
g_type_add_interface_static(type_id, ATK_TYPE_TEXT, &atk_text_info);
g_type_add_interface_static(type_id, ATK_TYPE_EDITABLE_TEXT, &atk_editable_text_info);
g_once_init_leave(&type_id_result, type_id);
}
return type_id_result;
}
static AtkObject *scintilla_object_accessible_new(GType parent_type, GObject *obj) {
g_return_val_if_fail(SCINTILLA_IS_OBJECT(obj), nullptr);
AtkObject *accessible = static_cast<AtkObject *>(g_object_new(scintilla_object_accessible_get_type(parent_type),
#if HAVE_WIDGET_SET_UNSET
"widget", obj,
#endif
nullptr));
atk_object_initialize(accessible, obj);
return accessible;
}
// implementation for gtk_widget_get_accessible().
// See the comment at the top of the file for details on the implementation
// @p widget the widget.
// @p cache pointer to store the AtkObject between repeated calls. Might or might not be filled.
// @p widget_parent_class pointer to the widget's parent class (to chain up method calls).
AtkObject *ScintillaGTKAccessible::WidgetGetAccessibleImpl(GtkWidget *widget, AtkObject **cache, gpointer widget_parent_class G_GNUC_UNUSED) {
if (*cache != nullptr) {
return *cache;
}
#if HAVE_GTK_A11Y_H // just instantiate the accessible
*cache = scintilla_object_accessible_new(0, G_OBJECT(widget));
#elif HAVE_GTK_FACTORY // register in the factory and let GTK instantiate
static gsize registered = 0;
if (g_once_init_enter(®istered)) {
// Figure out whether accessibility is enabled by looking at the type of the accessible
// object which would be created for the parent type of ScintillaObject.
GType derived_type = g_type_parent(SCINTILLA_TYPE_OBJECT);
AtkRegistry *registry = atk_get_default_registry();
AtkObjectFactory *factory = atk_registry_get_factory(registry, derived_type);
GType derived_atk_type = atk_object_factory_get_accessible_type(factory);
if (g_type_is_a(derived_atk_type, GTK_TYPE_ACCESSIBLE)) {
atk_registry_set_factory_type(registry, SCINTILLA_TYPE_OBJECT,
scintilla_object_accessible_factory_get_type());
}
g_once_init_leave(®istered, 1);
}
AtkObject *obj = GTK_WIDGET_CLASS(widget_parent_class)->get_accessible(widget);
*cache = static_cast<AtkObject*>(g_object_ref(obj));
#else // no public API, no factory, so guess from the parent and instantiate
static GType parent_atk_type = 0;
if (parent_atk_type == 0) {
AtkObject *parent_obj = GTK_WIDGET_CLASS(widget_parent_class)->get_accessible(widget);
if (parent_obj) {
parent_atk_type = G_OBJECT_TYPE(parent_obj);
// Figure out whether accessibility is enabled by looking at the type of the accessible
// object which would be created for the parent type of ScintillaObject.
if (g_type_is_a(parent_atk_type, GTK_TYPE_ACCESSIBLE)) {
*cache = scintilla_object_accessible_new(parent_atk_type, G_OBJECT(widget));
} else {
*cache = static_cast<AtkObject*>(g_object_ref(parent_obj));
}
}
}
#endif
return *cache;
}
static AtkStateSet *scintilla_object_accessible_ref_state_set(AtkObject *accessible) {
AtkStateSet *state_set = ATK_OBJECT_CLASS(scintilla_object_accessible_parent_class)->ref_state_set(accessible);
GtkWidget *widget = gtk_accessible_get_widget(GTK_ACCESSIBLE(accessible));
if (widget == nullptr) {
atk_state_set_add_state(state_set, ATK_STATE_DEFUNCT);
} else {
if (! scintilla_send_message(SCINTILLA_OBJECT(widget), static_cast<int>(Message::GetReadOnly), 0, 0))
atk_state_set_add_state(state_set, ATK_STATE_EDITABLE);
#if ATK_CHECK_VERSION(2, 16, 0)
else
atk_state_set_add_state(state_set, ATK_STATE_READ_ONLY);
#endif
atk_state_set_add_state(state_set, ATK_STATE_MULTI_LINE);
atk_state_set_add_state(state_set, ATK_STATE_MULTISELECTABLE);
atk_state_set_add_state(state_set, ATK_STATE_SELECTABLE_TEXT);
/*atk_state_set_add_state(state_set, ATK_STATE_SUPPORTS_AUTOCOMPLETION);*/
}
return state_set;
}
static void scintilla_object_accessible_widget_set(GtkAccessible *accessible) {
GtkWidget *widget = gtk_accessible_get_widget(accessible);
if (widget == nullptr)
return;
ScintillaObjectAccessiblePrivate *priv = SCINTILLA_OBJECT_ACCESSIBLE_GET_PRIVATE(accessible);
if (priv->pscin)
delete priv->pscin;
priv->pscin = new ScintillaGTKAccessible(accessible, widget);
}
#if HAVE_WIDGET_SET_UNSET
static void scintilla_object_accessible_widget_unset(GtkAccessible *accessible) {
GtkWidget *widget = gtk_accessible_get_widget(accessible);
if (widget == nullptr)
return;
ScintillaObjectAccessiblePrivate *priv = SCINTILLA_OBJECT_ACCESSIBLE_GET_PRIVATE(accessible);
delete priv->pscin;
priv->pscin = 0;
}
#endif
static void scintilla_object_accessible_initialize(AtkObject *obj, gpointer data) {
ATK_OBJECT_CLASS(scintilla_object_accessible_parent_class)->initialize(obj, data);
#if ! HAVE_WIDGET_SET_UNSET
scintilla_object_accessible_widget_set(GTK_ACCESSIBLE(obj));
#endif
obj->role = ATK_ROLE_TEXT;
}
static void scintilla_object_accessible_finalize(GObject *object) {
ScintillaObjectAccessiblePrivate *priv = SCINTILLA_OBJECT_ACCESSIBLE_GET_PRIVATE(object);
if (priv->pscin) {
delete priv->pscin;
priv->pscin = nullptr;
}
G_OBJECT_CLASS(scintilla_object_accessible_parent_class)->finalize(object);
}
static void scintilla_object_accessible_class_init(ScintillaObjectAccessibleClass *klass) {
GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
AtkObjectClass *object_class = ATK_OBJECT_CLASS(klass);
#if HAVE_WIDGET_SET_UNSET
GtkAccessibleClass *accessible_class = GTK_ACCESSIBLE_CLASS(klass);
accessible_class->widget_set = scintilla_object_accessible_widget_set;
accessible_class->widget_unset = scintilla_object_accessible_widget_unset;
#endif
object_class->ref_state_set = scintilla_object_accessible_ref_state_set;
object_class->initialize = scintilla_object_accessible_initialize;
gobject_class->finalize = scintilla_object_accessible_finalize;
scintilla_object_accessible_parent_class = g_type_class_peek_parent(klass);
g_type_class_add_private(klass, sizeof (ScintillaObjectAccessiblePrivate));
}
static void scintilla_object_accessible_init(ScintillaObjectAccessible *accessible) {
ScintillaObjectAccessiblePrivate *priv = SCINTILLA_OBJECT_ACCESSIBLE_GET_PRIVATE(accessible);
priv->pscin = nullptr;
}
#if HAVE_GTK_FACTORY
// Object factory
typedef AtkObjectFactory ScintillaObjectAccessibleFactory;
typedef AtkObjectFactoryClass ScintillaObjectAccessibleFactoryClass;
G_DEFINE_TYPE(ScintillaObjectAccessibleFactory, scintilla_object_accessible_factory, ATK_TYPE_OBJECT_FACTORY)
static void scintilla_object_accessible_factory_init(ScintillaObjectAccessibleFactory *) {
}
static GType scintilla_object_accessible_factory_get_accessible_type(void) {
return SCINTILLA_TYPE_OBJECT_ACCESSIBLE;
}
static AtkObject *scintilla_object_accessible_factory_create_accessible(GObject *obj) {
return scintilla_object_accessible_new(0, obj);
}
static void scintilla_object_accessible_factory_class_init(AtkObjectFactoryClass * klass) {
klass->create_accessible = scintilla_object_accessible_factory_create_accessible;
klass->get_accessible_type = scintilla_object_accessible_factory_get_accessible_type;
}
#endif
|