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
  • My First Qt C++ Application "Clipboard Manager"

    Moved Unsolved
    2
    4 Votes
    2 Posts
    1k Views
    K
    @khaled-alam Hi and welcome to devnet forum Thanks for sharing the details of your project. I have moved it to the showcase where the post seems to fit better.
  • Daggy - Data Aggregation Utilty based on Qt framework

    Unsolved
    3
    3 Votes
    3 Posts
    911 Views
    M
    Added screencast with short demo about daggy -https://youtu.be/tweXV0dvSbc
  • 0 Votes
    1 Posts
    571 Views
    No one has replied
  • Node Editor in Python Tutorial Series

    Unsolved
    1
    5 Votes
    1 Posts
    876 Views
    No one has replied
  • QDOMLite - Light weight DOM/XML

    3
    2 Votes
    3 Posts
    1k Views
    V
    File has now been updated (still same link). QRegExp has been replaced with QRegularExpression. The fromString function now has some clever look-ahead and passes smaller substrings when recursing. Performance has been improved considerably, up to 100 times for really large files. Have fun!
  • Android CAD 3D Geometry Modelling App launched

    Unsolved
    2
    0 Votes
    2 Posts
    675 Views
    yellowlemontree2014Y
    Please use the link below to redirect to google play store. https://play.google.com/store/apps/details?id=com.simuGeometryModelling.app https://play.google.com/store/apps/details?id=com.conway.deploy https://play.google.com/store/apps/details?id=com.cube3d.rotate https://play.google.com/store/apps/details?id=com.scribble.app The most beautiful aspect of these apps is they all are made by Qt and OpenGL 3D. If anyone is interested you can ask me any questions you have.
  • General Purpose Data Serializer

    Unsolved serialization gpds xml
    7
    6 Votes
    7 Posts
    2k Views
    Joel BodenmannJ
    We've added support for the first Qt types: QString and qreal. You can now do this: class Color : public Gpds::Serialize { public: QString name; int red; int green; int blue; virtual Gpds::Container toContainer() const override { Gpds::Container c; c.setComment("a color object"); c.addAttribute("format", "rgb"); c.addAttribute("name", name); c.addValue("red", red).addAttribute("depth", "32"); c.addValue("green", green).addAttribute("depth", "32"); c.addValue("blue", blue).addAttribute("depth", "32"); return c; } virtual void fromContainer(const Gpds::Container& c) override { // Retrieve format const QString& formatString = c.getAttribute("format").value_or("n/a"); assert( formatString == "rgb" ); name = c.getAttribute("name").value_or("n/a"); red = c.getValue<int>("red"); green = c.getValue<int>("green"); blue = c.getValue<int>("blue"); } }; Which will result in the following XML: <color format="rgb" name="Black"> <blue depth="32">0</blue> <green depth="32">0</green> <red depth="32">0</red> </color> There's also a Qt specific demo/example in the repo. Isn't the world wonderful? There's still a lot of stuff left to do tho.
  • Simple TLS/SSL supported SMTP client for Qt5

    Locked
    32
    3 Votes
    32 Posts
    45k Views
    aha_1980A
    @opengpu would you please stop spamming every e-mail related thread? you have a concrete question, so ask it. provide example code so others understand your problem. Regards
  • Nice graphics app with Qt android OpenGL

    Unsolved
    6
    0 Votes
    6 Posts
    2k Views
    yellowlemontree2014Y
    Android playstore links: https://play.google.com/store/apps/details?id=com.conway.deploy https://play.google.com/store/apps/details?id=com.cube3d.rotate https://play.google.com/store/apps/details?id=com.scribble.app After launching these 3 Android Simulation Apps, by Simulation-Apps, we are planning to launch a new 3D Geometry Modelling App for Android users. It is still dependant on the response we get from the previous 3 apps. Out of this 3, the first two are free, third one is again a Geometry Modelling App but 2D which has a price. More details will come later. Please check out these three apps. And don't forget to give your feedback. Thank you.
  • Here are two android simulated games - check out in play store

    Moved Unsolved
    7
    1 Votes
    7 Posts
    2k Views
    yellowlemontree2014Y
    The price tag is modified to be free-app in play store for android users. Please check it out. New good two free-apps launched on google play store check out please. A new set of simulated games launched in google play store for android users. Please get your copy today from this link below. They're about Famous scientist Mr Conway's simulation Conway's game of life and one for a rotating cube with one touch rolling reverse. This simulated apps are made with cutting edge technical tools and made to be perfect with almost no bugs, the detailed description are written in Play store. Please grab your copy from the link below. Conway's game of life https://lnkd.in/fZb27xw Rotating cube https://lnkd.in/fNPMFWh
  • CMake Script to generate Q_IMPORT_PLUGIN to link against static Qt

    3
    1 Votes
    3 Posts
    1k Views
    O
    This is already what I use to generate _qml_plugin_import.cpp so I only import required plugin. I have to admit that the other one _plugin_import.cpp generation il a little bit more brute Force and may break in the future
  • CAD tool with Qt OpenGL - Check Video you tube

    Unsolved
    4
    1 Votes
    4 Posts
    769 Views
    No one has replied
  • Multi-environ Manager(PyMake v7.5.5)

    1
    1 Votes
    1 Posts
    555 Views
    No one has replied
  • Free protocol Net485 for network RS485.

    Moved Solved
    4
    2 Votes
    4 Posts
    3k Views
    T
    HI, I am starting with CHIP FTDI FT232R, which allows the electrical conversion between RS485 and RS232, (+ A, -B, GND) <-> USB-COM, in principle it reads 8 bit, without problems, since the converter, set autobound, parity, stop bit, etc. Then I will comment if I can in Master mode, read and write RS485 datagrams through the RS232 endpoint.
  • Qt daemon

    service daemon
    7
    4 Votes
    7 Posts
    11k Views
    Konstantin FominK
    Konstantin! I am not very strong in English. I would like to talk about your library. Can we chat somewhere else? Facebook? or somewhere else?
  • Qt/QML Live Coding for Everyone

    live-coding qml c++ python
    1
    3 Votes
    1 Posts
    601 Views
    No one has replied
  • Building an Open-Source Evernote Alternative: January 2019 Update

    3
    1 Votes
    3 Posts
    1k Views
    strahlexS
    Nice, the desktop client reminds me slightly of Joplin. Just wondering, have you tried Qt WASM for the web app?
  • QNoise

    5
    8 Votes
    5 Posts
    3k Views
    kshegunovK
    @J.Hilk said in QNoise: Me in partikular or in general ? I meant in general. Interesting, thanks for the info.
  • Building a Simple Algorithmic Trading Model with Qt and Boost

    8
    0 Votes
    8 Posts
    3k Views
    VRoninV
    @wqking said in Building a Simple Algorithmic Trading Model with Qt and Boost: What did you use Boost for? Looks like it was used for boost::circular_buffer. There might be an argument to use boost also to get better numeric precision or to handle statistical distributions
  • How i can showcase an app built with QT-QML for android platform ?

    Solved
    4
    0 Votes
    4 Posts
    1k Views
    K
    @divaindie If you mean showcasing within the "Qt world", AFAIK there is only this forum and here under showcase. However, this is merely a user driven forum. Therefore the audience might be limited. Otherwise for show-casing you could contact the people of https://www.qt.io/ , but I am not aware that they are showcasing more activities already seen on the page. You could publish your work with google playstore.