Bug 426220 - QML View
Summary: QML View
Status: RESOLVED NOT A BUG
Alias: None
Product: frameworks-ktexteditor
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Other Other
: NOR wishlist
Target Milestone: ---
Assignee: KWrite Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-09-05 17:47 UTC by Ben
Modified: 2020-09-30 16:07 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ben 2020-09-05 17:47:21 UTC
I'm writing an application with QML and have a need for a texteditor component. Would it be possible, or reasonable to create a QML based front end to the existing texteditor component?

Has anyone tried this? Is there another way to get the editor component into my QML application?

Thank for any feedback!
Comment 1 Christoph Feck 2020-09-28 09:46:07 UTC
Please ask in a Qt forum if there is a way to embed widgets into QtQuick; then this ticket isn't specific to KTextEditor. If widgets cannot be embedded into QtQuick, it would require a rewrite of the editor component.
Comment 2 Nate Graham 2020-09-28 16:05:41 UTC
(In reply to Christoph Feck from comment #1)
> Please ask in a Qt forum if there is a way to embed widgets into QtQuick;
> then this ticket isn't specific to KTextEditor. If widgets cannot be
> embedded into QtQuick, it would require a rewrite of the editor component.
You can go the other way around and embed QtQuick views into widgets views, but you can't embed widgets into QtQuick views.
Comment 3 Dominik Haumann 2020-09-30 08:18:57 UTC
KTextEditor cannot be embedded into QML, it was never designed for QML and is entirely QWidget based.

You should use KSyntaxHighlighting instead, there QML bindings are into works, see:
- https://phabricator.kde.org/T11864
- https://invent.kde.org/hein/kquicksyntaxhighlighter/-/merge_requests/1
- https://github.com/schnitzeltony/ksyntax-highlighting-wrapper

I'll close this for now.
Comment 4 Nate Graham 2020-09-30 15:03:23 UTC
It's a shame. The KTextEditor view is really great and QML-based apps are the future. The demand for this is only going to rise, not fall. :)
Comment 5 Ben 2020-09-30 16:07:03 UTC
I did do some research before posting this feature request. What Nate and Dominik said about not being able to embed a widget in a qml application definitely appears to be true. I've also tried using KSyntaxHighlighter in a qml Text, but syntax highlighting is really not the most important part of a good text editor, there's so much more that KTextEditor offers.

As Nate also mentioned, QML is the future and work on the widgets framework has decreased dramatically. I think it makes sense to port the view logic into QML. I'm not sure however that I have the Qt knowledge to tackle a project like that.

That is why I opened a feature request to see what could be done to rewrite the UI related parts of KTextEditor into QML, while keeping as much of the original code as possible. I wonder if it's possible to offer a QmlView alternative.