Telegram Web Link
Qt online installer - Ubuntu 25.10
https://redd.it/1o4le4t
@qt_reddit
QodeAssist v0.7.0 Released - Tool Calling

Tools demo

The most interesting thing about the latest update is that I added tool/function calling support, along with several basic tools for immediate use. In future versions, I'll be expanding them to cover more use cases. This will also allow us to release more frequently.

If you are interested, you can find out more about the new version or project here: https://github.com/Palm1r/QodeAssist/releases/tag/v0.7.0

https://redd.it/1o4oegu
@qt_reddit
QWidges 3rd party projects

In a previous thread, I mentioned that QWidgets's upstream development is "stalled". I mentioned that some 3rd parties are needed. Here is a list of projects I use/follow. If anyone has cool projects to share - do this.

Code I found online:

1. Flat tab widget, with cool animations: https://github.com/timschneeb/FlatTabWidget
2. Cool text editor, based on KTextEditor's highlighting: https://github.com/Wing-summer/WingCodeEdit
3. Animated slider: https://github.com/Wing-summer/WingCodeEdit
4. Progress indicator: https://github.com/epasveer/QProgressIndicator
5. Window title: https://github.com/stdware/qwindowkit
6. Widgets on window titles: https://github.com/antonypro/QGoodWindow
7. Adwaita widgets style: https://github.com/Qt-Widgets/adwaita-qt-style-qstyle (unmaintained fork?)
8. Image viewer widget: https://github.com/palacaze/image-viewer
9. Hex viewer widget: https://github.com/Dax89/QHexView
10. API to get your application notified about updates: https://github.com/alex-spataru/QSimpleUpdater

My own code:

1. Click Me Load MoreWidget, progress line (not bar!) - https://github.com/diegoiast/qtedit4/blob/main/src/widgets/Click Me Load MoreWidget.hpp
2. QLineEdit with history (global history, shared between all editors): https://github.com/diegoiast/qtedit4/blob/main/src/widgets/HistoryLineEdit.h
3. SplitTabwidget, like QTabWidget, but can also split the tabs horizontally, and move tabs between splits: https://github.com/diegoiast/qtedit4/blob/main/src/widgets/SplitTabWidget.h
4. Command palette widget, like SublimeText/VSCode: https://github.com/diegoiast/command-palette-widget
5. Creating config from code (might fork this into anotehr sub project): https://github.com/diegoiast/qmdilib/blob/main/demos/demo3/main3.cpp
6. Using freedesktop icon themes in your app, https://github.com/diegoiast/qtedit4/blob/main/cmake/icons-breeze.cmake (again, might fork this into a 3rd party project to reduce friction).

What am I looking for:

1. A bred crumb widget, for displaying files.
2. A good text editor widget (working on one, WingCodeEdit looks nice), with spelling check (optional?)
3. A terminal widget with windows support, MIT, LGPL.

https://redd.it/1o5epdx
@qt_reddit
How do I render a "raw" OpenGL Texture onto a QML Element ?

Hey everyone,

Here is the context: I have a toy engine that manages its own context. I would like to create a binding for Qt by writing the engine's render buffer onto a QML Element (so I can create multiple views of the same scene for instance).

I already found how to create a custom OpenGL context for a QQuickWindow and share lists with the Engine's context but I'm not sure how to connect the dots from here.

I found QSGTexture but I don't really understand how to use it. QRhi seems quite interesting too but I don't really understand how to pass the base window's OpenGL context to the QQuickRhiItem

https://redd.it/1o6flkl
@qt_reddit
https://code.qt.io/ is not accessible

Is it only me or https://code.qt.io/ is not accessible?

https://redd.it/1o6ht3o
@qt_reddit
Custom QOpenGLContext = "Cannot make QOpenGLContext current in a different thread"

Using a custom created QOpenGLContext triggers a fatal error inside QSGRenderThread on QQuickWindow::exposeEvent here. Ignoring this causes no issue and I could just set AA_DontCheckOpenGLContextThreadAffinity but I don't think I should.

Here is the basic code to set the custom OpenGL context when creating the QQuickWindow

Window::Window()
: context(new QOpenGLContext(this))
{
setGraphicsApi(QSGRendererInterface::OpenGL);
Q
ASSERT(context->create());
setSurfaceType(QWindow::OpenGLSurface);
setGraphicsDevice(QQuickGraphicsDevice::fromOpenGLContext(
context.get()));
}

I feel like I'm missing something but I don't really know what, I've never played around with QOpenGLContext

https://redd.it/1o6nkh1
@qt_reddit
This media is not supported in your browser
VIEW IN TELEGRAM
My Qt Creator crashes as soon as I attempt to open the design function

https://redd.it/1o6o891
@qt_reddit
New Here Need Help

Hey I have to make a smart study tool. Where it going to make qwestions, mock exams, marks, show graph and curves of learning etc. Will QT be a good option to make these kind of polished looking app. Thanks In Advance.

https://redd.it/1o704wb
@qt_reddit
No Kits found | Ubuntu 2025

Hey everyone,

I’m on Ubuntu and I installed Qt using the official Qt online installer.
Qt Creator detects my compiler (GCC) and shows this under *Kits → Desktop Qt 6.9.3 (default)*.

However, whenever I try to create a new C++ project, I get this error:

>“No suitable kits found. Please add a kit in the options or via the SDK management tool.”

Here’s what I’ve checked so far:

* GCC is installed and recognized (`gcc --version` works fine)
* The kit shows **GCC x86 64bit in /bin/gcc**
* Still, I can’t select any kit when creating a new project

Does anyone know what I might be missing?
Do I need to manually link `qmake` or adjust the Qt installation path somewhere?

Any help would be appreciated 🙏

https://redd.it/1o7bx0g
@qt_reddit
How to disable QtCreator feedback form?

Subject says it all.

At first I was fine to answer this "satisfaction" query, but having to do it EVERY FUCKING TIME is just ridiculous.

https://redd.it/1o7co91
@qt_reddit
How do you make widgets? Not referring to QWidgets

https://preview.redd.it/ckz317m89gvf1.jpg?width=1920&format=pjpg&auto=webp&s=174ebd13356ca8510b344f6efabf4d3b2b972ae4

Is there any way to make widgets as in the picture given above? Or am i only able to mimic a widget by removing the window topbar and outline, make it have a fixed position and size?

https://redd.it/1o82dwr
@qt_reddit
2025/10/28 10:25:43
Back to Top
HTML Embed Code: