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!
446 Topics 1.8k Posts
  • Minimal Tic Tac Toe game made with QML

    3
    2 Votes
    3 Posts
    2k Views
    J.HilkJ
    I can confirm it runs splendidly on macOS, but I could not get it to run on IOS. Thats because QtAdMobs references GoogleApis, I beelieve. [image: c8326155-e7b2-4f04-9830-aee61c68bd64.png]
  • Create your own project templates for Qt Creator

    3
    8 Votes
    3 Posts
    6k Views
    aha_1980A
    +1 It would be perfect, if this was in fact a wizard included in QtCreator :)
  • qbs-autoproject

    1
    2 Votes
    1 Posts
    848 Views
    No one has replied
  • Build a cross-platform deep learning app by Qt5 and opencv3.3

    2
    2 Votes
    2 Posts
    2k Views
    musimbateM
    Good stuff.
  • Workflow - Project organizer

    11
    0 Votes
    11 Posts
    4k Views
    T
    Sure, and I thank you very much :) I compiled the code with Qt 5.9.1 and 5.10 and gcc from MinGW 5.3.0 32bit, now I'll try to download gcc 7.2.0. Maybe the one from MinGW is not up to date
  • 3 Votes
    6 Posts
    4k Views
    the_T
    thanks for the quick fix :)
  • An interesting look at Flood Fill Algorithm implemented in C++ vs QML Javascript

    Unsolved
    2
    0 Votes
    2 Posts
    2k Views
    ?
    @TenKOhms said in An interesting look at Flood Fill Algorithm implemented in C++ vs QML Javascript: ven with the added code to save the image and then read the image, the algorithm implemented in c++ was much, much quicker Yep, never use JavaScript for anything but very simple GUI logic.
  • Lanto - An Intuitive Batch Photo Resizer available in Mac App Store

    4
    2 Votes
    4 Posts
    2k Views
    BjornWB
    Looks amazing, good job ^_^
  • Multiplayer Drawing Game I Made Using Qt/QML [NSFW]

    Unsolved
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Real Fast Fourier Transform (FFT) in Qt

    25
    1 Votes
    25 Posts
    42k Views
    R
    can i have your email? because i want to ask you about coding FFT in qt creator,thanks a lot
  • QtMpi module

    1
    6 Votes
    1 Posts
    868 Views
    No one has replied
  • QImageScraper, a simple app to scrape images from Google, Bing and Yahoo

    4
    0 Votes
    4 Posts
    3k Views
    thamT
    Update to version 1.4 What changed Fix broken Google image search due to some minor change from Google Support proxy Add top and bottom buttons to scroll web page Back to the top of Gallery page rather than back to the first page of the search engine, this could avoid the need of reset search settings again and again I planned to support Tor proxy in ver_1.4, but someone say this is abusing Tor, so I give up on this idea(it is almost done).
  • Qbs Automatic Projects

    2
    1 Votes
    2 Posts
    1k Views
    SGaistS
    Hi, Interesting and thorough analysis. I'd recommend bringing this to the Qbs mailing list. Your find there Qbs developers/maintainers. This forum is more user oriented.
  • Accordion Widget for Qt5

    Unsolved qt5 accordion cmake c++11
    4
    2 Votes
    4 Posts
    9k Views
    S
    This is great!, but is there any implementation in Python, not C++? Or, how can I port it in Python, pyqt5? Thanks in advance for your help. Cheers,
  • [project] QML Creative Controls : a set of controls for creative coding

    2
    4 Votes
    2 Posts
    1k Views
    SGaistS
    Hi, Looks nice ! Thanks for sharing :)
  • Project: Quick Future - Using QFuture in QML

    Moved
    5
    2 Votes
    5 Posts
    4k Views
    benlauB
    Quick Future v1.0.3 has been released. This version supports a custom type converter for making a QML friendly data structure from QFuture<YourCustomType>. Calling an async function and obtain the result from QML on a C++ class is much easier now. New Features Custom Converter function QuickFuture::registerType() now supports to assign a custom converter for making a QML friendly data structure (e.g QVariantMap) from the custom type. The value could be obtained by using Future.result() class Actor : public QObject { Q_OBJECT public: class Reply { public: int code; QString message; }; QFuture<Reply> read(QString source); } static void init() { QuickFuture::registerType<Actor::Reply>([](Actor::Reply reply) -> QVariant { // Optional converter function. QVariantMap map; map["code"] = reply.code; map["message"] = reply.message; return map; }); } Q_COREAPP_STARTUP_FUNCTION(init) var future = Actor.read(source); .... console.log(Future.result(future)); // Print { code: 0, message: ""} if the reply is empty
  • FastQt : A bioinformatics tools

    2
    7 Votes
    2 Posts
    1k Views
    SGaistS
    Looks interesting ! Thanks for sharing !
  • Raspberry Pi control arduino atmega2560

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Rendering to a monochrome OLED display with QML

    3
    1 Votes
    3 Posts
    2k Views
    strahlexS
    @SGaist Thanks!
  • chm2qch: Converter CHM -> QCH

    2
    3 Votes
    2 Posts
    2k Views
    SGaistS
    Hi, Thanks for sharing ! :)