GithubHelp home page GithubHelp logo

Comments (4)

Mr-ZBin avatar Mr-ZBin commented on July 26, 2024 1

Hi matkhui,
Thank you very much. Now I use the first visible line number and the current line number and column number in the line to calculate the position in screen by fontMetrics(). But it's not precise when I zoom in or out.
Thank you very much for this reply. And your wonderful ExCo project helps me a lot because I'm a new user in python and pyqt.
Thanks,
Bin

from exco.

matkuki avatar matkuki commented on July 26, 2024

Hi @Mr-ZBin ,

Funny you brought this up, as I also had the idea to make a custom autocompletion popup.
I just check the source code of QScintilla and this seems to be a very convoluted thing, internally it uses many objects and converter functions to switch between POINT, Point and QPoint. But I couldn't get to the bottom of it yet.

I have posted a question on the mailing list and will poke around the source a bit more. Will report back when something comes up.

from exco.

matkuki avatar matkuki commented on July 26, 2024

I have just gotten a reply on the mailing list:

Use the low-level SendScintilla API:
https://www.riverbankcomputing.com/static/Docs/QScintilla/classQsciScintillaBase.html#a8820ab8d7563bd7ed24ce6384846079e
Then you can get the x, y with:
https://www.scintilla.org/ScintillaDoc.html#SCI_POINTXFROMPOSITION
https://www.scintilla.org/ScintillaDoc.html#SCI_POINTYFROMPOSITION

Basically use:

x = editor.SendScintilla(QsciScintilla.SCI_POINTXFROMPOSITION, editor.positionFromLineIndex(editor.getCursorPosition()))
y = editor.SendScintilla(QsciScintilla.SCI_POINTYFROMPOSITION, editor.positionFromLineIndex(editor.getCursorPosition()))

I will try it later.

from exco.

matkuki avatar matkuki commented on July 26, 2024

@Mr-ZBin
Tested it and it works, with a slight adjustment:

x = editor.SendScintilla(QsciScintilla.SCI_POINTXFROMPOSITION, 0, editor.positionFromLineIndex(*editor.getCursorPosition()))
y = editor.SendScintilla(QsciScintilla.SCI_POINTYFROMPOSITION, 0, editor.positionFromLineIndex(*editor.getCursorPosition()))

from exco.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.