File size: 32,048 Bytes
985c397 | 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 | /***************************************************************************
* Copyright (c) 2007 Werner Mayer <wmayer[at]users.sourceforge.net> *
* *
* This file is part of the FreeCAD CAx development system. *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Library General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this library; see the file COPYING.LIB. If not, *
* write to the Free Software Foundation, Inc., 59 Temple Place, *
* Suite 330, Boston, MA 02111-1307, USA *
* *
***************************************************************************/
#include <limits>
#include <QApplication>
#include <QKeyEvent>
#include <QLabel>
#include <QPlainTextEdit>
#include <QRegularExpression>
#include <QRegularExpressionMatch>
#include <QTextCursor>
#include <QToolTip>
#include <App/Property.h>
#include <App/PropertyContainer.h>
#include <App/PropertyContainerPy.h>
#include <App/Document.h>
#include <App/DocumentObject.h>
#include <App/DocumentPy.h>
#include <App/DocumentObjectPy.h>
#include <Base/Console.h>
#include <Base/Interpreter.h>
#include <Base/PyObjectBase.h>
#include <Gui/BitmapFactory.h>
#include <Gui/DocumentPy.h>
#include "CallTips.h"
Q_DECLARE_METATYPE(Gui::CallTip) //< allows use of QVariant
namespace Gui
{
/**
* template class Temporary.
* Allows variable changes limited to a scope.
*/
template<typename TYPE>
class Temporary
{
public:
Temporary(TYPE& var, const TYPE tmpVal)
: _var(var)
, _saveVal(var)
{
var = tmpVal;
}
~Temporary()
{
_var = _saveVal;
}
private:
TYPE& _var;
TYPE _saveVal;
};
} /* namespace Gui */
using namespace Gui;
CallTipsList::CallTipsList(QPlainTextEdit* parent)
: QListWidget(parent)
, textEdit(parent)
, cursorPos(0)
, validObject(true)
, doCallCompletion(false)
{
// make the user assume that the widget is active
QPalette pal = parent->palette();
pal.setColor(
QPalette::Inactive,
QPalette::Highlight,
pal.color(QPalette::Active, QPalette::Highlight)
);
pal.setColor(
QPalette::Inactive,
QPalette::HighlightedText,
pal.color(QPalette::Active, QPalette::HighlightedText)
);
parent->setPalette(pal);
connect(this, &QListWidget::itemActivated, this, &CallTipsList::callTipItemActivated);
hideKeys.append(Qt::Key_Space);
hideKeys.append(Qt::Key_Exclam);
hideKeys.append(Qt::Key_QuoteDbl);
hideKeys.append(Qt::Key_NumberSign);
hideKeys.append(Qt::Key_Dollar);
hideKeys.append(Qt::Key_Percent);
hideKeys.append(Qt::Key_Ampersand);
hideKeys.append(Qt::Key_Apostrophe);
hideKeys.append(Qt::Key_Asterisk);
hideKeys.append(Qt::Key_Plus);
hideKeys.append(Qt::Key_Comma);
hideKeys.append(Qt::Key_Minus);
hideKeys.append(Qt::Key_Period);
hideKeys.append(Qt::Key_Slash);
hideKeys.append(Qt::Key_Colon);
hideKeys.append(Qt::Key_Semicolon);
hideKeys.append(Qt::Key_Less);
hideKeys.append(Qt::Key_Equal);
hideKeys.append(Qt::Key_Greater);
hideKeys.append(Qt::Key_Question);
hideKeys.append(Qt::Key_At);
hideKeys.append(Qt::Key_Backslash);
compKeys.append(Qt::Key_ParenLeft);
compKeys.append(Qt::Key_ParenRight);
compKeys.append(Qt::Key_BracketLeft);
compKeys.append(Qt::Key_BracketRight);
compKeys.append(Qt::Key_BraceLeft);
compKeys.append(Qt::Key_BraceRight);
}
CallTipsList::~CallTipsList() = default;
void CallTipsList::keyboardSearch(const QString& wordPrefix)
{
// first search for the item that matches perfectly
for (int i = 0; i < count(); ++i) {
QString text = item(i)->text();
if (text.startsWith(wordPrefix)) {
setCurrentRow(i);
return;
}
}
// now do a case insensitive comparison
for (int i = 0; i < count(); ++i) {
QString text = item(i)->text();
if (text.startsWith(wordPrefix, Qt::CaseInsensitive)) {
setCurrentRow(i);
return;
}
}
if (currentItem()) {
currentItem()->setSelected(false);
}
}
void CallTipsList::validateCursor()
{
QTextCursor cursor = textEdit->textCursor();
int currentPos = cursor.position();
if (currentPos < this->cursorPos) {
hide();
}
else {
cursor.setPosition(this->cursorPos);
cursor.movePosition(QTextCursor::EndOfWord, QTextCursor::KeepAnchor);
QString word = cursor.selectedText();
if (!word.isEmpty()) {
// the following text might be an operator, brackets, ...
const QChar underscore = QLatin1Char('_');
const QChar ch = word.at(0);
if (!ch.isLetterOrNumber() && ch != underscore) {
word.clear();
}
}
if (currentPos > this->cursorPos + word.length()) {
hide();
}
else if (!word.isEmpty()) {
// If the word is empty we should not allow one to do a search,
// otherwise we may select the next item which is not okay in this
// context. This might happen if e.g. Shift is pressed.
keyboardSearch(word);
}
}
}
QString CallTipsList::extractContext(const QString& line) const
{
int len = line.size();
int index = len - 1;
for (int i = 0; i < len; i++) {
int pos = len - 1 - i;
const char ch = line.at(pos).toLatin1();
if ((ch >= 48 && ch <= 57) || // Numbers
(ch >= 65 && ch <= 90) || // Uppercase letters
(ch >= 97 && ch <= 122) || // Lowercase letters
(ch == '.') || (ch == '_') || // dot or underscore
(ch == ' ') || (ch == '\t')) { // whitespace (between dot and text)
index = pos;
}
else {
break;
}
}
return line.mid(index);
}
QMap<QString, CallTip> CallTipsList::extractTips(const QString& context) const
{
Base::PyGILStateLocker lock;
QMap<QString, CallTip> tips;
if (context.isEmpty()) {
return tips;
}
try {
PyErr_Clear();
Py::Module module("__main__");
if (module.ptr() == nullptr) {
return tips;
}
Py::Dict dict = module.getDict();
// this is used to filter out input of the form "1."
QStringList items = context.split(QLatin1Char('.'));
QString modname = items.front();
items.pop_front();
if (!dict.hasKey(std::string(modname.toLatin1()))) {
return tips; // unknown object
}
// Don't use hasattr & getattr because if a property is bound to a method this will be
// executed twice.
PyObject* code = Py_CompileString(
static_cast<const char*>(context.toLatin1()),
"<CallTipsList>",
Py_eval_input
);
if (!code) {
PyErr_Clear();
return tips;
}
PyObject* eval = nullptr;
if (PyCode_Check(code)) {
eval = PyEval_EvalCode(code, dict.ptr(), dict.ptr());
}
Py_DECREF(code);
if (!eval) {
PyErr_Clear();
return tips;
}
Py::Object obj(eval, true);
// Checks whether the type is a subclass of PyObjectBase because to get the doc string
// of a member we must get it by its type instead of its instance otherwise we get the
// wrong string, namely that of the type of the member.
// Note: 3rd party libraries may use their own type object classes so that we cannot
// reliably use Py::Type. To be on the safe side we should use Py::Object to assign
// the used type object to.
// Py::Object type = obj.type();
Py::Object type(PyObject_Type(obj.ptr()), true);
Py::Object inst = obj; // the object instance
PyObject* typeobj = Base::getTypeAsObject(&Base::PyObjectBase::Type);
PyObject* typedoc = Base::getTypeAsObject(&App::DocumentObjectPy::Type);
PyObject* basetype = Base::getTypeAsObject(&PyBaseObject_Type);
if (PyObject_IsSubclass(type.ptr(), typedoc) == 1) {
// From the template Python object we don't query its type object because there we keep
// a list of additional methods that we won't see otherwise. But to get the correct doc
// strings we query the type's dict in the class itself.
// To see if we have a template Python object we check for the existence of
// '__fc_template__' See also: FeaturePythonPyT
if (!obj.hasAttr("__fc_template__")) {
obj = type;
}
}
else if (PyObject_IsSubclass(type.ptr(), typeobj) == 1) {
obj = type;
}
else if (PyObject_IsInstance(obj.ptr(), basetype) == 1) {
// New style class which can be a module, type, list, tuple, int, float, ...
// Make sure it's not a type object
PyObject* typetype = Base::getTypeAsObject(&PyType_Type);
if (PyObject_IsInstance(obj.ptr(), typetype) != 1) {
// For wrapped objects with PySide2 use the object, not its type
// as otherwise attributes added at runtime won't be listed (e.g. MainWindowPy)
QString typestr(QLatin1String(Py_TYPE(obj.ptr())->tp_name));
// this should be now a user-defined Python class
// http://stackoverflow.com/questions/12233103/in-python-at-runtime-determine-if-an-object-is-a-class-old-and-new-type-instan
if (!typestr.startsWith(QLatin1String("PySide"))
&& Py_TYPE(obj.ptr())->tp_flags & Py_TPFLAGS_HEAPTYPE) {
obj = type;
}
}
}
// If we have an instance of PyObjectBase then determine whether it's valid or not
if (PyObject_IsInstance(inst.ptr(), typeobj) == 1) {
auto baseobj = static_cast<Base::PyObjectBase*>(inst.ptr());
validObject = baseobj->isValid();
}
else {
// PyObject_IsInstance might set an exception
PyErr_Clear();
}
Py::List list(obj.dir());
// If we derive from PropertyContainerPy we can search for the properties in the
// C++ twin class.
PyObject* proptypeobj = Base::getTypeAsObject(&App::PropertyContainerPy::Type);
if (PyObject_IsSubclass(type.ptr(), proptypeobj) == 1) {
// These are the attributes of the instance itself which are NOT accessible by
// its type object
extractTipsFromProperties(inst, tips);
}
// If we derive from App::DocumentPy we have direct access to the objects by their internal
// names. So, we add these names to the list, too.
PyObject* appdoctypeobj = Base::getTypeAsObject(&App::DocumentPy::Type);
if (PyObject_IsSubclass(type.ptr(), appdoctypeobj) == 1) {
auto docpy = static_cast<App::DocumentPy*>(inst.ptr());
auto document = docpy->getDocumentPtr();
// Make sure that the C++ object is alive
if (document) {
std::vector<App::DocumentObject*> objects = document->getObjects();
Py::List list;
for (const auto& object : objects) {
list.append(Py::String(object->getNameInDocument()));
}
extractTipsFromObject(inst, list, tips);
}
}
// If we derive from Gui::DocumentPy we have direct access to the objects by their internal
// names. So, we add these names to the list, too.
PyObject* guidoctypeobj = Base::getTypeAsObject(&Gui::DocumentPy::Type);
if (PyObject_IsSubclass(type.ptr(), guidoctypeobj) == 1) {
auto docpy = static_cast<Gui::DocumentPy*>(inst.ptr());
if (docpy->getDocumentPtr()) {
App::Document* document = docpy->getDocumentPtr()->getDocument();
// Make sure that the C++ object is alive
if (document) {
std::vector<App::DocumentObject*> objects = document->getObjects();
Py::List list;
for (const auto& object : objects) {
list.append(Py::String(object->getNameInDocument()));
}
extractTipsFromObject(inst, list, tips);
}
}
}
// These are the attributes from the type object
extractTipsFromObject(obj, list, tips);
}
catch (Py::Exception& e) {
// Just clear the Python exception
e.clear();
}
return tips;
}
bool shibokenMayCrash(void)
{
// Shiboken 6.4.8 to 6.7.3 crash if we try to read their object
// attributes without a current stack frame.
// FreeCAD issue: https://github.com/FreeCAD/FreeCAD/issues/14101
// Qt issue: https://bugreports.qt.io/browse/PYSIDE-2796
Py::Module shiboken("shiboken6");
Py::Tuple version(shiboken.getAttr("__version_info__"));
int major = Py::Long(version.getItem(0));
int minor = Py::Long(version.getItem(1));
int patch = Py::Long(version.getItem(2));
bool brokenVersion = (major == 6 && minor >= 4 && minor < 8);
bool fixedVersion = (major == 6 && minor == 7 && patch > 2);
return brokenVersion && !fixedVersion;
}
Py::Object CallTipsList::getAttrWorkaround(Py::Object& obj, Py::String& name) const
{
QString typestr(QLatin1String(Py_TYPE(obj.ptr())->tp_name));
bool hasWorkingGetAttr = !(typestr == QLatin1String("Shiboken.ObjectType") && shibokenMayCrash());
if (hasWorkingGetAttr) {
return obj.getAttr(name.as_string());
}
Py::Dict globals;
Py::Dict locals;
locals.setItem("obj", obj);
locals.setItem("attr", name);
Py::Object bouncer(Py_CompileString("getattr(obj, attr)", "<CallTipsList>", Py_eval_input));
Py::Object attr(PyEval_EvalCode(bouncer.ptr(), globals.ptr(), locals.ptr()));
return attr;
}
void CallTipsList::extractTipsFromObject(Py::Object& obj, Py::List& list, QMap<QString, CallTip>& tips) const
{
for (Py::List::iterator it = list.begin(); it != list.end(); ++it) {
try {
Py::String attrname(*it);
std::string name(attrname.as_string());
Py::Object attr = getAttrWorkaround(obj, attrname);
if (!attr.ptr()) {
Base::Console().log("Python attribute '%s' returns null!\n", name.c_str());
continue;
}
CallTip tip;
QString str = QString::fromLatin1(name.c_str());
tip.name = str;
if (attr.isCallable()) {
PyObject* basetype = Base::getTypeAsObject(&PyBaseObject_Type);
if (PyObject_IsSubclass(attr.ptr(), basetype) == 1) {
tip.type = CallTip::Class;
}
else {
PyErr_Clear(); // PyObject_IsSubclass might set an exception
tip.type = CallTip::Method;
}
}
else if (PyModule_Check(attr.ptr())) {
tip.type = CallTip::Module;
}
else {
tip.type = CallTip::Member;
}
if (str == QLatin1String("__doc__") && attr.isString()) {
Py::Object help = attr;
if (help.isString()) {
Py::String doc(help);
QString longdoc = QString::fromUtf8(doc.as_string().c_str());
int pos = longdoc.indexOf(QLatin1Char('\n'));
pos = qMin(pos, 70);
if (pos < 0) {
pos = qMin(longdoc.length(), 70);
}
tip.description = stripWhiteSpace(longdoc);
tip.parameter = longdoc.left(pos);
}
}
else if (attr.hasAttr("__doc__")) {
Py::Object help = attr.getAttr("__doc__");
if (help.isString()) {
Py::String doc(help);
QString longdoc = QString::fromUtf8(doc.as_string().c_str());
int pos = longdoc.indexOf(QLatin1Char('\n'));
pos = qMin(pos, 70);
if (pos < 0) {
pos = qMin(longdoc.length(), 70);
}
tip.description = stripWhiteSpace(longdoc);
tip.parameter = longdoc.left(pos);
}
}
// Do not override existing items
QMap<QString, CallTip>::iterator pos = tips.find(str);
if (pos == tips.end()) {
tips[str] = tip;
}
}
catch (Py::Exception& e) {
// Just clear the Python exception
e.clear();
}
}
}
void CallTipsList::extractTipsFromProperties(Py::Object& obj, QMap<QString, CallTip>& tips) const
{
auto cont = static_cast<App::PropertyContainerPy*>(obj.ptr());
App::PropertyContainer* container = cont->getPropertyContainerPtr();
// Make sure that the C++ object is alive
if (!container) {
return;
}
std::map<std::string, App::Property*> Map;
container->getPropertyMap(Map);
for (const auto& It : Map) {
CallTip tip;
QString str = QString::fromLatin1(It.first.c_str());
tip.name = str;
tip.type = CallTip::Property;
QString longdoc = QString::fromUtf8(container->getPropertyDocumentation(It.second));
// a point, mesh or shape property
if (It.second->isDerivedFrom(Base::Type::fromName("App::PropertyComplexGeoData"))) {
Py::Object data(It.second->getPyObject(), true);
if (data.hasAttr("__doc__")) {
Py::Object help = data.getAttr("__doc__");
if (help.isString()) {
Py::String doc(help);
longdoc = QString::fromUtf8(doc.as_string().c_str());
}
}
}
if (!longdoc.isEmpty()) {
int pos = longdoc.indexOf(QLatin1Char('\n'));
pos = qMin(pos, 70);
if (pos < 0) {
pos = qMin(longdoc.length(), 70);
}
tip.description = stripWhiteSpace(longdoc);
tip.parameter = longdoc.left(pos);
}
tips[str] = tip;
}
}
void CallTipsList::showTips(const QString& line)
{
// search only once
static QPixmap type_module_icon = BitmapFactory().pixmap("ClassBrowser/type_module.svg");
static QPixmap type_class_icon = BitmapFactory().pixmap("ClassBrowser/type_class.svg");
static QPixmap method_icon = BitmapFactory().pixmap("ClassBrowser/method.svg");
static QPixmap member_icon = BitmapFactory().pixmap("ClassBrowser/member.svg");
static QPixmap property_icon = BitmapFactory().pixmap("ClassBrowser/property.svg");
// object is in error state
static QPixmap forbidden_icon(
Gui::BitmapFactory().pixmapFromSvg("forbidden", property_icon.size() / 4)
);
static QPixmap forbidden_type_module_icon
= BitmapFactory().merge(type_module_icon, forbidden_icon, BitmapFactoryInst::BottomLeft);
static QPixmap forbidden_type_class_icon
= BitmapFactory().merge(type_class_icon, forbidden_icon, BitmapFactoryInst::BottomLeft);
static QPixmap forbidden_method_icon
= BitmapFactory().merge(method_icon, forbidden_icon, BitmapFactoryInst::BottomLeft);
static QPixmap forbidden_member_icon
= BitmapFactory().merge(member_icon, forbidden_icon, BitmapFactoryInst::BottomLeft);
static QPixmap forbidden_property_icon
= BitmapFactory().merge(property_icon, forbidden_icon, BitmapFactoryInst::BottomLeft);
this->validObject = true;
QString context = extractContext(line);
context = context.simplified();
QMap<QString, CallTip> tips = extractTips(context);
clear();
for (QMap<QString, CallTip>::Iterator it = tips.begin(); it != tips.end(); ++it) {
addItem(it.key());
QListWidgetItem* item = this->item(this->count() - 1);
item->setData(Qt::ToolTipRole, QVariant(it.value().description));
item->setData(Qt::UserRole, QVariant::fromValue(it.value())); //< store full CallTip data
switch (it.value().type) {
case CallTip::Module: {
item->setIcon((this->validObject ? type_module_icon : forbidden_type_module_icon));
} break;
case CallTip::Class: {
item->setIcon((this->validObject ? type_class_icon : forbidden_type_class_icon));
} break;
case CallTip::Method: {
item->setIcon((this->validObject ? method_icon : forbidden_method_icon));
} break;
case CallTip::Member: {
item->setIcon((this->validObject ? member_icon : forbidden_member_icon));
} break;
case CallTip::Property: {
item->setIcon((this->validObject ? property_icon : forbidden_property_icon));
} break;
default:
break;
}
}
if (count() == 0) {
return; // nothing found
}
// get the minimum width and height of the box
int h = 0;
int w = 0;
for (int i = 0; i < count(); ++i) {
QRect r = visualItemRect(item(i));
w = qMax(w, r.width());
h += r.height();
}
// Add an offset
w += 2 * frameWidth();
h += 2 * frameWidth();
// get the start position of the word prefix
QTextCursor cursor = textEdit->textCursor();
this->cursorPos = cursor.position();
QRect rect = textEdit->cursorRect(cursor);
int posX = rect.x();
int posY = rect.y();
int boxH = h;
// Decide whether to show downstairs or upstairs
if (posY > textEdit->viewport()->height() / 2) {
h = qMin(qMin(h, posY), 250);
if (h < boxH) {
w += textEdit->style()->pixelMetric(QStyle::PM_ScrollBarExtent);
}
setGeometry(posX, posY - h, w, h);
}
else {
h = qMin(qMin(h, textEdit->viewport()->height() - fontMetrics().height() - posY), 250);
if (h < boxH) {
w += textEdit->style()->pixelMetric(QStyle::PM_ScrollBarExtent);
}
setGeometry(posX, posY + fontMetrics().height(), w, h);
}
setCurrentRow(0);
show();
}
void CallTipsList::showEvent(QShowEvent* e)
{
QListWidget::showEvent(e);
// install this object to filter timer events for the tooltip label
qApp->installEventFilter(this);
}
void CallTipsList::hideEvent(QHideEvent* e)
{
QListWidget::hideEvent(e);
qApp->removeEventFilter(this);
}
/**
* Get all incoming events of the text edit and redirect some of them, like key up and
* down, mouse press events, ... to the widget itself.
*/
bool CallTipsList::eventFilter(QObject* watched, QEvent* event)
{
// This is a trick to avoid to hide the tooltip window after the defined time span
// of 10 seconds. We just filter out all timer events to keep the label visible.
if (watched->inherits("QLabel")) {
auto label = qobject_cast<QLabel*>(watched);
// Ignore the timer events to prevent from being closed
if (label->windowFlags() & Qt::ToolTip && event->type() == QEvent::Timer) {
return true;
}
}
if (isVisible() && watched == textEdit->viewport()) {
if (event->type() == QEvent::MouseButtonPress) {
hide();
}
}
else if (isVisible() && watched == textEdit) {
if (event->type() == QEvent::KeyPress) {
auto ke = static_cast<QKeyEvent*>(event);
if (ke->key() == Qt::Key_Up || ke->key() == Qt::Key_Down) {
keyPressEvent(ke);
return true;
}
else if (ke->key() == Qt::Key_PageUp || ke->key() == Qt::Key_PageDown) {
keyPressEvent(ke);
return true;
}
else if (ke->key() == Qt::Key_Escape) {
hide();
return true;
}
else if ((ke->key() == Qt::Key_Minus) && (ke->modifiers() & Qt::ShiftModifier)) {
// do nothing here, but this check is needed to ignore underscore
// which in Qt 4.8 gives Key_Minus instead of Key_Underscore
}
else if (this->hideKeys.indexOf(ke->key()) > -1) {
Q_EMIT itemActivated(currentItem());
return false;
}
else if (ke->key() == Qt::Key_Return || ke->key() == Qt::Key_Enter) {
Q_EMIT itemActivated(currentItem());
return true;
}
else if (ke->key() == Qt::Key_Tab) {
// enable call completion for activating items
Temporary<bool> tmp(this->doCallCompletion, true); //< previous state restored on
// scope exit
Q_EMIT itemActivated(currentItem());
return true;
}
else if (this->compKeys.indexOf(ke->key()) > -1) {
Q_EMIT itemActivated(currentItem());
return false;
}
else if (ke->key() == Qt::Key_Shift || ke->key() == Qt::Key_Control
|| ke->key() == Qt::Key_Meta || ke->key() == Qt::Key_Alt
|| ke->key() == Qt::Key_AltGr) {
// filter these meta keys to avoid to call keyboardSearch()
return true;
}
}
else if (event->type() == QEvent::KeyRelease) {
auto ke = static_cast<QKeyEvent*>(event);
if (ke->key() == Qt::Key_Up || ke->key() == Qt::Key_Down || ke->key() == Qt::Key_PageUp
|| ke->key() == Qt::Key_PageDown) {
QList<QListWidgetItem*> items = selectedItems();
if (!items.isEmpty()) {
QPoint p(width(), 0);
QString text = items.front()->toolTip();
if (!text.isEmpty()) {
QToolTip::showText(mapToGlobal(p), text);
}
else {
QToolTip::showText(p, QString());
}
}
return true;
}
}
else if (event->type() == QEvent::FocusOut) {
if (!hasFocus()) {
hide();
}
}
}
return QListWidget::eventFilter(watched, event);
}
void CallTipsList::callTipItemActivated(QListWidgetItem* item)
{
hide();
if (!item->isSelected()) {
return;
}
QString text = item->text();
QTextCursor cursor = textEdit->textCursor();
cursor.setPosition(this->cursorPos);
cursor.movePosition(QTextCursor::EndOfWord, QTextCursor::KeepAnchor);
QString sel = cursor.selectedText();
if (!sel.isEmpty()) {
// in case the cursor moved too far on the right side
const QChar underscore = QLatin1Char('_');
const QChar ch = sel.at(sel.size() - 1);
if (!ch.isLetterOrNumber() && ch != underscore) {
cursor.movePosition(QTextCursor::Left, QTextCursor::KeepAnchor);
}
}
cursor.insertText(text);
// get CallTip from item's UserRole-data
auto callTip = item->data(Qt::UserRole).value<CallTip>();
// if call completion enabled and we've something callable (method or class constructor) ...
if (this->doCallCompletion
&& (callTip.type == CallTip::Method || callTip.type == CallTip::Class)) {
cursor.insertText(QLatin1String("()")); //< just append parenthesis to identifier even inserted.
/**
* Try to find out if call needs arguments.
* For this we search the description for appropriate hints ...
*/
QRegularExpression argumentMatcher(
QRegularExpression::escape(callTip.name) + QLatin1String(R"(\s*\(\s*\w+.*\))")
);
argumentMatcher.setPatternOptions(
QRegularExpression::InvertedGreedinessOption
); //< set regex non-greedy!
if (argumentMatcher.match(callTip.description).hasMatch()) {
// if arguments are needed, we just move the cursor one left, to between the parentheses.
cursor.movePosition(QTextCursor::Left, QTextCursor::MoveAnchor, 1);
textEdit->setTextCursor(cursor);
}
}
textEdit->ensureCursorVisible();
QRect rect = textEdit->cursorRect(cursor);
int posX = rect.x();
int posY = rect.y();
QPoint p(posX, posY);
p = textEdit->mapToGlobal(p);
QToolTip::showText(p, callTip.parameter);
}
QString CallTipsList::stripWhiteSpace(const QString& str) const
{
QString stripped = str;
QStringList lines = str.split(QLatin1String("\n"));
int minspace = std::numeric_limits<int>::max();
int line = 0;
for (QStringList::iterator it = lines.begin(); it != lines.end(); ++it, ++line) {
if (it->size() > 0 && line > 0) {
int space = 0;
for (int i = 0; i < it->size(); i++) {
if ((*it)[i] == QLatin1Char('\t')) {
space++;
}
else {
break;
}
}
if (it->size() > space) {
minspace = std::min<int>(minspace, space);
}
}
}
// remove all leading tabs from each line
if (minspace > 0 && minspace < std::numeric_limits<int>::max()) {
int line = 0;
QStringList strippedlines;
for (QStringList::iterator it = lines.begin(); it != lines.end(); ++it, ++line) {
if (line == 0 && !it->isEmpty()) {
strippedlines << *it;
}
else if (it->size() > 0 && line > 0) {
strippedlines << it->mid(minspace);
}
}
stripped = strippedlines.join(QLatin1String("\n"));
}
return stripped;
}
#include "moc_CallTips.cpp"
|