Skip to content

Showcase

Working on a cute app? Have some awesome widgets to share? Want to show off your blingalicious styles? This is your arena!
439 Topics 1.7k Posts
  • Qt5.15.17 compiled source code for openSSL Version 3

    Unsolved 10 days ago
    1 Votes
    1 Posts
    91 Views
    No one has replied
  • A simple game launcher using Qt Widgets.

    Unsolved 18 days ago
    1 Votes
    1 Posts
    98 Views
    No one has replied
  • 0 Votes
    2 Posts
    122 Views
    Moved to https://forum.qt.io/category/8/showcase
  • 0 Votes
    2 Posts
    271 Views
    @michaelcarlos said in Best Way to Optimize a Qt Quick Application for Smooth Performance?: Are there any profiling tools that are Qt-specific and will allow me to identify bottlenecks? The QML profiler built into Creator (Analyze -> QML Profiler) has worked for me in the past.
  • QR code creator and scanner for desktop and wasm

    Unsolved 17 Sept 2023, 15:37
    0 Votes
    8 Posts
    1k Views
    @Dougf9 Thanks for your interest. The last time I checked the library compiled for Windows in the GitHub runners. 1- If you want to compile the library after you download the source code from github, go inside the project root folder and do cmake --workflow --preset default-develop. Or use a IDE with CMake Presets support. 2- You can also download the releases for Windows here. how do I tell my Qt project where it is -> To consume the project target as explained here Add this to your CMake/Qt project include(FetchContent) FetchContent_Declare( EstervQrCode GIT_REPOSITORY https://github.com/EddyTheCo/Esterv.Utils.QrCode.git GIT_TAG v2.0.0 FIND_PACKAGE_ARGS 2.0 COMPONENTS QrDec QrGen QtQrDec QtQrGen CONFIG ) FetchContent_MakeAvailable(EstervQrCode) target_link_libraries(YOUR_PROJECT_TARGET PRIVATE Esterv::QrGen Esterv::QtQrGen Esterv::QrDec Esterv::QtQrDec) This will try to find the library on your system using find_package. If it is not found, it will download the source from Git Hub and compile the library when you build your project. So you do not need to manually download the library or compile it. The library can be found by find_package in the build directory from step 1 or from the place you installed the releases in step 2. Then you can use the QML types or the C++ API that in somehow is explained here I appreciate any feedback from Windows developers.
  • 0 Votes
    3 Posts
    346 Views
    Thanks, I was on the wrong forum obviously.
  • Commutative diagrams (PyQt5 desktop widgets)

    Unsolved 11 Jan 2025, 01:24
    0 Votes
    2 Posts
    228 Views
    https://youtu.be/EZ9AGBufoDg?si=kE2ImmlZGnE8EZ2k
  • 0 Votes
    7 Posts
    1k Views
    Version 0.1.6 released. 🚀 New Feature Bookmark with page content search! Improvement Moved to QQuickWidget instead of QQuickView Fix bug: QML loader cache Updated to QT 6.8.1 Browser Icon updated
  • Solar System 3D

    Moved Unsolved 3 Jan 2025, 08:54
    1 Votes
    2 Posts
    2k Views
    Moved to Showcase subforum
  • Duckdb driver

    Moved Unsolved 11 Dec 2024, 22:06
    2 Votes
    4 Posts
    493 Views
    @piervalli Moved
  • Diagram / Schematic components library

    Unsolved qschematic 19 Jun 2019, 13:27
    7 Votes
    4 Posts
    3k Views
    @svanimisetti I never created any python bindings but I assume that this would be fairly easy to do. Presumably you would easily find some official documentation, guide, tutorial and examples on this topic. I'll gladly answer any QSchematic specific question I can.
  • Qt5.15.16 compiled source code for openSSL Version 3

    Unsolved 22 Nov 2024, 10:15
    0 Votes
    3 Posts
    375 Views
    Thanks! @SGaist Copying and pasting without thinking didn't turn out well.
  • This topic is deleted!

    29 Oct 2024, 07:32
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • 10 Votes
    12 Posts
    3k Views
    @Pl45m4 Thank you very much for your reply. I will try this case.
  • This topic is deleted!

    Unsolved 15 Oct 2024, 00:46
    0 Votes
    1 Posts
    13 Views
    No one has replied
  • 0 Votes
    1 Posts
    252 Views
    No one has replied
  • Qt5.15.15 compiled source code for openSSL Version 3

    Unsolved 8 Sept 2024, 20:53
    0 Votes
    1 Posts
    263 Views
    No one has replied
  • Change windows Orientation using C++ code

    Moved Unsolved 26 Aug 2024, 15:28
    0 Votes
    2 Posts
    490 Views
    @keksi-venksi Hi, nice, maybe you want to move this topic to the Showcase category as it is not a question or an issue, but already a solution you want to share. https://forum.qt.io/category/8/showcase (Or you wait until some @moderators might move it)
  • 1 Votes
    3 Posts
    745 Views
    @qxorm said in QxOrm 1.5.0 and QxEntityEditor 1.2.8 released (Qt ORM/ODM): Hello, QxOrm library 1.5.0 and QxEntityEditor application 1.2.8 just released. QxOrm library 1.5.0 changes log : Fix qx::dao::fetch_by_id_with_relation() when a table alias is used (table alias is now used in the WHERE part instead of table name) Fix qx::IxDataMember::getType() method when used in a multi-thread environment New method qx::IxSqlRelation::linkRelationKeyTo() for MongoDB database to simulate lazy loading for relationships (GitHub #107) Fix qx::QxSqlDatabase and multi-thread issue when the OS assigns an old and destroyed thread identifier to a new one (GitHub #42) + add method qx::QxSqlDatabase::removeDatabaseByThread() to call at the end of a thread execution Fix qx::QxSimpleCrypt class with Qt version >= 5.10 and error "Attempted to overwrite a QRandomGenerator to system() or global()" Fix database not opened using async queries (GitHub #109) QxEntityEditor application 1.2.8 changes log : New export plugin 'QxEESourceControlExport' : export a *.qxee QxEntityEditor project file to a list of JSON files which can be easily check-in in a source control repository (Git, Perforce, CVS, etc...) New import plugin 'QxEESourceControlImport' : import a list of JSON files (generated using 'QxEESourceControlExport' export plugin) inside a *.qxee QxEntityEditor project file These 2 new plugins allow a team development to work simultaneously on a same *.qxee QxEntityEditor project file A typical workflow could be (with 2 developers named dev A and dev B) : dev A and dev B work on a same *.qxee QxEntityEditor project file dev A create/modify/change some entities in QxEntityEditor application dev B create/modify/change other entities in QxEntityEditor application dev A and dev B export the *.qxee project file using the new 'QxEESourceControlExport' export plugin Once exported, dev A and dev B check-in the JSON files inside the source control manager (Git, Perforce, CVS, etc...) on their own branch dev A and dev B integrate from their own branch to the DEV (or MAIN or MASTER) branch (if there are some conflicts to resolve, it should be easy because JSON files are easy to read and understand) dev A and dev B can now get latest JSON files from the DEV (or MAIN or MASTER) branch : these JSON files contain both modifications from dev A and dev B dev A and dev B can import these JSON files inside QxEntityEditor application using the new 'QxEESourceControlImport' import plugin These 2 new plugins can be executed using command line (like all other QxEntityEditor plugins), here are 2 examples : Export : QxEntityEditor --no_gui --project="C:\Temp\qxBlog.qxee" --plugin=QxEESourceControlExport --QxEESourceControlExport_path="C:\Temp\source_control" Import : QxEntityEditor --no_gui --project="C:\Temp\qxBlog.qxee" --plugin=QxEESourceControlImport --QxEESourceControlImport_path="C:\Temp\source_control\qxBlog.qxee.export.json" The recent updates for QxOrm library and QxEntityEditor application bring several important improvements: QxOrm Library 1.5.0 includes fixes for issues like table alias handling in queries, multi-threading problems, and database async queries. New features include a method for simulating lazy loading in MongoDB and improvements to handle thread identifiers and cryptographic functions. QxEntityEditor 1.2.8 introduces new plugins for source control integration. The QxEESourceControlExport and QxEESourceControlImport plugins facilitate team development by allowing multiple developers to export and import .qxee project files as JSON, which can be easily managed in source control systems like Git or CVS. These plugins support a streamlined workflow for simultaneous project modifications and conflict resolution. For more details and to use these new features, refer to the QxOrm and QxEntityEditor documentation or the GitHub repository.
  • Review for my svg icon library

    svg icon 27 Jul 2024, 15:32
    0 Votes
    11 Posts
    1k Views
    @SimonSchroeder I doubt this library can help here. Can you please provide a minimal, compilable example in a bug report? I can take a look on it. Sounds similar to https://bugreports.qt.io/browse/QTBUG-122403 which needs a QIcon instead a QPixmap to make scaling work for your situation.