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
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
Reddit
From the QtFramework community on Reddit: QodeAssist v0.7.0 Released - Tool Calling
Explore this post and more from the QtFramework community
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
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
GitHub
GitHub - timschneeb/FlatTabWidget: Animated minimalist tab widget for Qt
Animated minimalist tab widget for Qt. Contribute to timschneeb/FlatTabWidget development by creating an account on GitHub.
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
I found
https://redd.it/1o6flkl
@qt_reddit
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 QQuickRhiItemhttps://redd.it/1o6flkl
@qt_reddit
Reddit
From the QtFramework community on Reddit
Explore this post and more from the QtFramework community
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
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
Here is the basic code to set the custom OpenGL context when creating the QQuickWindow
Window::Window()
: context(new QOpenGLContext(this))
{
setGraphicsApi(QSGRendererInterface::OpenGL);
QASSERT(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
https://redd.it/1o6nkh1
@qt_reddit
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);
QASSERT(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
QOpenGLContexthttps://redd.it/1o6nkh1
@qt_reddit
GitHub
qtbase/src/gui/kernel/qopenglcontext.cpp at f9b83106255aa97d0a3ffc105fb17676d2a72b78 · qt/qtbase
Qt Base (Core, Gui, Widgets, Network, ...). Contribute to qt/qtbase development by creating an account on GitHub.
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
https://redd.it/1o6o891
@qt_reddit
Tasket++ — simple Windows tool to automate user actions. Free and open source.
https://redd.it/1o6wcr3
@qt_reddit
https://redd.it/1o6wcr3
@qt_reddit
Reddit
From the QtFramework community on Reddit: Tasket++ — simple Windows tool to automate user actions. Free and open source.
Explore this post and more from the QtFramework community
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
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
Reddit
From the QtFramework community on Reddit
Explore this post and more from the QtFramework community
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
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
Reddit
From the QtFramework community on Reddit
Explore this post and more from the QtFramework community
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
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
Reddit
From the QtFramework community on Reddit
Explore this post and more from the QtFramework community
Qt Designer Studio 4.8 with big performance boost released
https://www.qt.io/blog/qt-design-studio-4.8-released shows considerable performance improvements.
https://redd.it/1o7f6nd
@qt_reddit
https://www.qt.io/blog/qt-design-studio-4.8-released shows considerable performance improvements.
https://redd.it/1o7f6nd
@qt_reddit
www.qt.io
Qt Design Studio 4.8 Released
Discover the latest features in Qt Design Studio 4.8.
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
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
