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
|
// This module implements the QsciCommandSet class.
//
// Copyright (c) 2015 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of QScintilla.
//
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file. Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
//
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license. For more information contact
// info@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#include "Qsci/qscicommandset.h"
#include <QSettings>
#include "Qsci/qscicommand.h"
#include "Qsci/qsciscintilla.h"
#include "Qsci/qsciscintillabase.h"
// Starting with QScintilla v2.7 the standard OS/X keyboard shortcuts are used
// where possible. In order to restore the behaviour of earlier versions then
// #define DONT_USE_OSX_KEYS here or add it to the qmake project (.pro) file.
#if defined(Q_OS_MAC) && !defined(DONT_USE_OSX_KEYS)
#define USING_OSX_KEYS
#else
#undef USING_OSX_KEYS
#endif
// The ctor.
QsciCommandSet::QsciCommandSet(QsciScintilla *qs) : qsci(qs)
{
struct sci_cmd {
QsciCommand::Command cmd;
int key;
int altkey;
const char *desc;
};
static struct sci_cmd cmd_table[] = {
{
QsciCommand::LineDown,
Qt::Key_Down,
#if defined(USING_OSX_KEYS)
Qt::Key_N | Qt::META,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Move down one line")
},
{
QsciCommand::LineDownExtend,
Qt::Key_Down | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_N | Qt::META | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Extend selection down one line")
},
{
QsciCommand::LineDownRectExtend,
Qt::Key_Down | Qt::ALT | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_N | Qt::META | Qt::ALT | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection down one line")
},
{
QsciCommand::LineScrollDown,
Qt::Key_Down | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Scroll view down one line")
},
{
QsciCommand::LineUp,
Qt::Key_Up,
#if defined(USING_OSX_KEYS)
Qt::Key_P | Qt::META,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Move up one line")
},
{
QsciCommand::LineUpExtend,
Qt::Key_Up | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_P | Qt::META | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Extend selection up one line")
},
{
QsciCommand::LineUpRectExtend,
Qt::Key_Up | Qt::ALT | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_P | Qt::META | Qt::ALT | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection up one line")
},
{
QsciCommand::LineScrollUp,
Qt::Key_Up | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Scroll view up one line")
},
{
QsciCommand::ScrollToStart,
#if defined(USING_OSX_KEYS)
Qt::Key_Home,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Scroll to start of document")
},
{
QsciCommand::ScrollToEnd,
#if defined(USING_OSX_KEYS)
Qt::Key_End,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Scroll to end of document")
},
{
QsciCommand::VerticalCentreCaret,
#if defined(USING_OSX_KEYS)
Qt::Key_L | Qt::META,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Scroll vertically to centre current line")
},
{
QsciCommand::ParaDown,
Qt::Key_BracketRight | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move down one paragraph")
},
{
QsciCommand::ParaDownExtend,
Qt::Key_BracketRight | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection down one paragraph")
},
{
QsciCommand::ParaUp,
Qt::Key_BracketLeft | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move up one paragraph")
},
{
QsciCommand::ParaUpExtend,
Qt::Key_BracketLeft | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection up one paragraph")
},
{
QsciCommand::CharLeft,
Qt::Key_Left,
#if defined(USING_OSX_KEYS)
Qt::Key_B | Qt::META,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Move left one character")
},
{
QsciCommand::CharLeftExtend,
Qt::Key_Left | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_B | Qt::META | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection left one character")
},
{
QsciCommand::CharLeftRectExtend,
Qt::Key_Left | Qt::ALT | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_B | Qt::META | Qt::ALT | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection left one character")
},
{
QsciCommand::CharRight,
Qt::Key_Right,
#if defined(USING_OSX_KEYS)
Qt::Key_F | Qt::META,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Move right one character")
},
{
QsciCommand::CharRightExtend,
Qt::Key_Right | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_F | Qt::META | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection right one character")
},
{
QsciCommand::CharRightRectExtend,
Qt::Key_Right | Qt::ALT | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_F | Qt::META | Qt::ALT | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection right one character")
},
{
QsciCommand::WordLeft,
#if defined(USING_OSX_KEYS)
Qt::Key_Left | Qt::ALT,
#else
Qt::Key_Left | Qt::CTRL,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move left one word")
},
{
QsciCommand::WordLeftExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_Left | Qt::ALT | Qt::SHIFT,
#else
Qt::Key_Left | Qt::CTRL | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Extend selection left one word")
},
{
QsciCommand::WordRight,
#if defined(USING_OSX_KEYS)
0,
#else
Qt::Key_Right | Qt::CTRL,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move right one word")
},
{
QsciCommand::WordRightExtend,
Qt::Key_Right | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Extend selection right one word")
},
{
QsciCommand::WordLeftEnd,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to end of previous word")
},
{
QsciCommand::WordLeftEndExtend,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to end of previous word")
},
{
QsciCommand::WordRightEnd,
#if defined(USING_OSX_KEYS)
Qt::Key_Right | Qt::ALT,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to end of next word")
},
{
QsciCommand::WordRightEndExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_Right | Qt::ALT | Qt::SHIFT,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to end of next word")
},
{
QsciCommand::WordPartLeft,
Qt::Key_Slash | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move left one word part")
},
{
QsciCommand::WordPartLeftExtend,
Qt::Key_Slash | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection left one word part")
},
{
QsciCommand::WordPartRight,
Qt::Key_Backslash | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move right one word part")
},
{
QsciCommand::WordPartRightExtend,
Qt::Key_Backslash | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection right one word part")
},
{
QsciCommand::Home,
#if defined(USING_OSX_KEYS)
Qt::Key_A | Qt::META,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to start of document line")
},
{
QsciCommand::HomeExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_A | Qt::META | Qt::SHIFT,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to start of document line")
},
{
QsciCommand::HomeRectExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_A | Qt::META | Qt::ALT | Qt::SHIFT,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection to start of document line")
},
{
QsciCommand::HomeDisplay,
#if defined(USING_OSX_KEYS)
Qt::Key_Left | Qt::CTRL,
#else
Qt::Key_Home | Qt::ALT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to start of display line")
},
{
QsciCommand::HomeDisplayExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_Left | Qt::CTRL | Qt::SHIFT,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to start of display line")
},
{
QsciCommand::HomeWrap,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Move to start of display or document line")
},
{
QsciCommand::HomeWrapExtend,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to start of display or document line")
},
{
QsciCommand::VCHome,
#if defined(USING_OSX_KEYS)
0,
#else
Qt::Key_Home,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Move to first visible character in document line")
},
{
QsciCommand::VCHomeExtend,
#if defined(USING_OSX_KEYS)
0,
#else
Qt::Key_Home | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to first visible character in document line")
},
{
QsciCommand::VCHomeRectExtend,
#if defined(USING_OSX_KEYS)
0,
#else
Qt::Key_Home | Qt::ALT | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection to first visible character in document line")
},
{
QsciCommand::VCHomeWrap,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Move to first visible character of display in document line")
},
{
QsciCommand::VCHomeWrapExtend,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to first visible character in display or document line")
},
{
QsciCommand::LineEnd,
#if defined(USING_OSX_KEYS)
Qt::Key_E | Qt::META,
#else
Qt::Key_End,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to end of document line")
},
{
QsciCommand::LineEndExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_E | Qt::META | Qt::SHIFT,
#else
Qt::Key_End | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to end of document line")
},
{
QsciCommand::LineEndRectExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_E | Qt::META | Qt::ALT | Qt::SHIFT,
#else
Qt::Key_End | Qt::ALT | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection to end of document line")
},
{
QsciCommand::LineEndDisplay,
#if defined(USING_OSX_KEYS)
Qt::Key_Right | Qt::CTRL,
#else
Qt::Key_End | Qt::ALT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to end of display line")
},
{
QsciCommand::LineEndDisplayExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_Right | Qt::CTRL | Qt::SHIFT,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to end of display line")
},
{
QsciCommand::LineEndWrap,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Move to end of display or document line")
},
{
QsciCommand::LineEndWrapExtend,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to end of display or document line")
},
{
QsciCommand::DocumentStart,
#if defined(USING_OSX_KEYS)
Qt::Key_Up | Qt::CTRL,
#else
Qt::Key_Home | Qt::CTRL,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to start of document")
},
{
QsciCommand::DocumentStartExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_Up | Qt::CTRL | Qt::SHIFT,
#else
Qt::Key_Home | Qt::CTRL | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to start of document")
},
{
QsciCommand::DocumentEnd,
#if defined(USING_OSX_KEYS)
Qt::Key_Down | Qt::CTRL,
#else
Qt::Key_End | Qt::CTRL,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move to end of document")
},
{
QsciCommand::DocumentEndExtend,
#if defined(USING_OSX_KEYS)
Qt::Key_Down | Qt::CTRL | Qt::SHIFT,
#else
Qt::Key_End | Qt::CTRL | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend selection to end of document")
},
{
QsciCommand::PageUp,
Qt::Key_PageUp,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move up one page")
},
{
QsciCommand::PageUpExtend,
Qt::Key_PageUp | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Extend selection up one page")
},
{
QsciCommand::PageUpRectExtend,
Qt::Key_PageUp | Qt::ALT | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection up one page")
},
{
QsciCommand::PageDown,
Qt::Key_PageDown,
#if defined(USING_OSX_KEYS)
Qt::Key_V | Qt::META,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Move down one page")
},
{
QsciCommand::PageDownExtend,
Qt::Key_PageDown | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_V | Qt::META | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Extend selection down one page")
},
{
QsciCommand::PageDownRectExtend,
Qt::Key_PageDown | Qt::ALT | Qt::SHIFT,
#if defined(USING_OSX_KEYS)
Qt::Key_V | Qt::META | Qt::ALT | Qt::SHIFT,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand",
"Extend rectangular selection down one page")
},
{
QsciCommand::StutteredPageUp,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Stuttered move up one page")
},
{
QsciCommand::StutteredPageUpExtend,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Stuttered extend selection up one page")
},
{
QsciCommand::StutteredPageDown,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Stuttered move down one page")
},
{
QsciCommand::StutteredPageDownExtend,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Stuttered extend selection down one page")
},
{
QsciCommand::Delete,
Qt::Key_Delete,
#if defined(USING_OSX_KEYS)
Qt::Key_D | Qt::META,
#else
0,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Delete current character")
},
{
QsciCommand::DeleteBack,
Qt::Key_Backspace,
#if defined(USING_OSX_KEYS)
Qt::Key_H | Qt::META,
#else
Qt::Key_Backspace | Qt::SHIFT,
#endif
QT_TRANSLATE_NOOP("QsciCommand", "Delete previous character")
},
{
QsciCommand::DeleteBackNotLine,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Delete previous character if not at start of line")
},
{
QsciCommand::DeleteWordLeft,
Qt::Key_Backspace | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Delete word to left")
},
{
QsciCommand::DeleteWordRight,
Qt::Key_Delete | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Delete word to right")
},
{
QsciCommand::DeleteWordRightEnd,
#if defined(USING_OSX_KEYS)
Qt::Key_Delete | Qt::ALT,
#else
0,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Delete right to end of next word")
},
{
QsciCommand::DeleteLineLeft,
Qt::Key_Backspace | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Delete line to left")
},
{
QsciCommand::DeleteLineRight,
#if defined(USING_OSX_KEYS)
Qt::Key_K | Qt::META,
#else
Qt::Key_Delete | Qt::CTRL | Qt::SHIFT,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Delete line to right")
},
{
QsciCommand::LineDelete,
Qt::Key_L | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Delete current line")
},
{
QsciCommand::LineCut,
Qt::Key_L | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Cut current line")
},
{
QsciCommand::LineCopy,
Qt::Key_T | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Copy current line")
},
{
QsciCommand::LineTranspose,
Qt::Key_T | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Transpose current and previous lines")
},
{
QsciCommand::LineDuplicate,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Duplicate the current line")
},
{
QsciCommand::SelectAll,
Qt::Key_A | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Select all")
},
{
QsciCommand::MoveSelectedLinesUp,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Move selected lines up one line")
},
{
QsciCommand::MoveSelectedLinesDown,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand",
"Move selected lines down one line")
},
{
QsciCommand::SelectionDuplicate,
Qt::Key_D | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Duplicate selection")
},
{
QsciCommand::SelectionLowerCase,
Qt::Key_U | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Convert selection to lower case")
},
{
QsciCommand::SelectionUpperCase,
Qt::Key_U | Qt::CTRL | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Convert selection to upper case")
},
{
QsciCommand::SelectionCut,
Qt::Key_X | Qt::CTRL,
Qt::Key_Delete | Qt::SHIFT,
QT_TRANSLATE_NOOP("QsciCommand", "Cut selection")
},
{
QsciCommand::SelectionCopy,
Qt::Key_C | Qt::CTRL,
Qt::Key_Insert | Qt::CTRL,
QT_TRANSLATE_NOOP("QsciCommand", "Copy selection")
},
{
QsciCommand::Paste,
Qt::Key_V | Qt::CTRL,
Qt::Key_Insert | Qt::SHIFT,
QT_TRANSLATE_NOOP("QsciCommand", "Paste")
},
{
QsciCommand::EditToggleOvertype,
Qt::Key_Insert,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Toggle insert/overtype")
},
{
QsciCommand::Newline,
Qt::Key_Return,
Qt::Key_Return | Qt::SHIFT,
QT_TRANSLATE_NOOP("QsciCommand", "Insert newline")
},
{
QsciCommand::Formfeed,
0,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Formfeed")
},
{
QsciCommand::Tab,
Qt::Key_Tab,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Indent one level")
},
{
QsciCommand::Backtab,
Qt::Key_Tab | Qt::SHIFT,
0,
QT_TRANSLATE_NOOP("QsciCommand", "De-indent one level")
},
{
QsciCommand::Cancel,
Qt::Key_Escape,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Cancel")
},
{
QsciCommand::Undo,
Qt::Key_Z | Qt::CTRL,
Qt::Key_Backspace | Qt::ALT,
QT_TRANSLATE_NOOP("QsciCommand", "Undo last command")
},
{
QsciCommand::Redo,
#if defined(USING_OSX_KEYS)
Qt::Key_Z | Qt::CTRL | Qt::SHIFT,
#else
Qt::Key_Y | Qt::CTRL,
#endif
0,
QT_TRANSLATE_NOOP("QsciCommand", "Redo last command")
},
{
QsciCommand::ZoomIn,
Qt::Key_Plus | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Zoom in")
},
{
QsciCommand::ZoomOut,
Qt::Key_Minus | Qt::CTRL,
0,
QT_TRANSLATE_NOOP("QsciCommand", "Zoom out")
},
};
// Clear the default map.
qsci->SendScintilla(QsciScintillaBase::SCI_CLEARALLCMDKEYS);
// By default control characters don't do anything (rather than insert the
// control character into the text).
for (int k = 'A'; k <= 'Z'; ++k)
qsci->SendScintilla(QsciScintillaBase::SCI_ASSIGNCMDKEY,
k + (QsciScintillaBase::SCMOD_CTRL << 16),
QsciScintillaBase::SCI_NULL);
for (int i = 0; i < sizeof (cmd_table) / sizeof (cmd_table[0]); ++i)
cmds.append(
new QsciCommand(qsci, cmd_table[i].cmd, cmd_table[i].key,
cmd_table[i].altkey, cmd_table[i].desc));
}
// The dtor.
QsciCommandSet::~QsciCommandSet()
{
for (int i = 0; i < cmds.count(); ++i)
delete cmds.at(i);
}
// Read the command set from settings.
bool QsciCommandSet::readSettings(QSettings &qs, const char *prefix)
{
bool rc = true;
QString skey;
for (int i = 0; i < cmds.count(); ++i)
{
QsciCommand *cmd = cmds.at(i);
skey.sprintf("%s/keymap/c%d/", prefix,
static_cast<int>(cmd->command()));
int key;
bool ok;
// Read the key.
ok = qs.contains(skey + "key");
key = qs.value(skey + "key", 0).toInt();
if (ok)
cmd->setKey(key);
else
rc = false;
// Read the alternate key.
ok = qs.contains(skey + "alt");
key = qs.value(skey + "alt", 0).toInt();
if (ok)
cmd->setAlternateKey(key);
else
rc = false;
}
return rc;
}
// Write the command set to settings.
bool QsciCommandSet::writeSettings(QSettings &qs, const char *prefix)
{
bool rc = true;
QString skey;
for (int i = 0; i < cmds.count(); ++i)
{
QsciCommand *cmd = cmds.at(i);
skey.sprintf("%s/keymap/c%d/", prefix,
static_cast<int>(cmd->command()));
// Write the key.
qs.setValue(skey + "key", cmd->key());
// Write the alternate key.
qs.setValue(skey + "alt", cmd->key());
}
return rc;
}
// Clear the key bindings.
void QsciCommandSet::clearKeys()
{
for (int i = 0; i < cmds.count(); ++i)
cmds.at(i)->setKey(0);
}
// Clear the alternate key bindings.
void QsciCommandSet::clearAlternateKeys()
{
for (int i = 0; i < cmds.count(); ++i)
cmds.at(i)->setAlternateKey(0);
}
// Find the command bound to a key.
QsciCommand *QsciCommandSet::boundTo(int key) const
{
for (int i = 0; i < cmds.count(); ++i)
{
QsciCommand *cmd = cmds.at(i);
if (cmd->key() == key || cmd->alternateKey() == key)
return cmd;
}
return 0;
}
// Find a command.
QsciCommand *QsciCommandSet::find(QsciCommand::Command command) const
{
for (int i = 0; i < cmds.count(); ++i)
{
QsciCommand *cmd = cmds.at(i);
if (cmd->command() == command)
return cmd;
}
// This should never happen.
return 0;
}
|