Skip to content

Brainstorm

Stuck? Some ideas just need to be dumped on someone before they can materialize.
456 Topics 3.2k Posts
  • 0 Votes
    1 Posts
    679 Views
    No one has replied
  • BioQt

    4
    0 Votes
    4 Posts
    2k Views
    ?
    Sounds interesting. Basically the task would be to reimplement BioPython as a C library, convince the BioPython people to use your C library as backend, provide a Qt/C++ wrapper for the C library and a Qt/QML wrapper for the Qt/C++ wrapper. That would be cool!
  • Generate Android UI protoype, using c++ with Qt

    c++ user interface android qt 5.4.0
    7
    0 Votes
    7 Posts
    3k Views
    J
    @sierdzio Sorry my bad, i mean i want to programmatically generate Android UI prototype
  • Crucial Data saving and Data Integrity in Qt

    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi, You probably should consider a database to store your values using e.g. sqlite
  • Doing the SQL task in another thread

    1
    0 Votes
    1 Posts
    813 Views
    No one has replied
  • A SQL composite key with 3 members?

    3
    0 Votes
    3 Posts
    2k Views
    batman.890825B
    Come to think this solution has an issue, if I'm not careful I might end it having the same paycheck in both tables. Moreover, someone may use this to corrupt the logical structure making a check to appear either as cancelled and delivered. I could use a row-level trigger on each INSERT to solve this but I rather find out a more suitable solution.
  • Looking for a good SQL DSL

    3
    0 Votes
    3 Posts
    2k Views
    A
    This looks really good! Thank you very much!
  • Help me decide which ORDBMS should I use

    8
    0 Votes
    8 Posts
    3k Views
    batman.890825B
    I'm grateful with your approval.
  • [SOLVED] QFileSystemModel without mouse/keybaord

    6
    0 Votes
    6 Posts
    2k Views
    SGaistS
    They have some and you have the QItemSelectionModel class that might help
  • Need help on program structure

    5
    0 Votes
    5 Posts
    2k Views
    SGaistS
    Indeed, an interface is also a possibility
  • Future of Qt3D C++ API

    8
    0 Votes
    8 Posts
    8k Views
    K
    Nice. I will try to clone it and see what the state is. Thanks. Hmmm. Seems like QGraphicsEmbedScene was dropped... I'm using 5.3.2, sadly still without QOpenGLWidget...
  • [Solved] Bunnyhole? Building Qt 5.3.2 for arm920t on Ubuntu 14.04...

    14
    0 Votes
    14 Posts
    8k Views
    SGaistS
    Remote GDB ? Can be tricky indeed. When starting your application are your giving it the input module it should load as parameter ?
  • TreeModelView with (Realtime) Options

    5
    0 Votes
    5 Posts
    2k Views
    T
    Thanks for the input.
  • Qt-API for Speech recognition

    21
    0 Votes
    21 Posts
    22k Views
    P
    https://github.com/dconroy/PiTranslate/blob/master/text-to-translate.py It works pretty good, but it's python. I think it can't be so hard to program this in c...
  • How to write and read a QList with binary files

    16
    0 Votes
    16 Posts
    9k Views
    M
    When you want to write/read a QList using operator>>()/operator<<(), as the doc says, the type of the QList must also implement the SAME operator. Which means that except Qt's included types (quint, QString, QByteArray, ...), you need to provide such an operator for your type. I see you have provided one, and you're pointing out a problem when using it on another QList (line 8: list->register). Is there a stream operator defined for the type of element in list->register ?
  • Qt Help Project from Windows to Linux

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • EventHandling

    13
    0 Votes
    13 Posts
    5k Views
    SGaistS
    What does a run through the debugger tells you ?
  • Databases and Encryption - single field or whole database?

    3
    0 Votes
    3 Posts
    2k Views
    A
    I fully agree with SGaist, at this point I suggest you to search for sqlite-cipher that is made with crypto in mind!
  • Error: Qt to be configured with -opengl

    5
    0 Votes
    5 Posts
    3k Views
    N
    Hello, Thanks for your valuable reply . so you mean to say the specifics of wandboard doesnt allow the open gl (sample code framebuffer2) can't be run at all. if I wanna make it run for wandboard. what do I need to change in the setup so that the framebuffer2 code can run Thanks Nilesh Kokane
  • QByteArray read only 4 Byte from Arduino

    12
    0 Votes
    12 Posts
    7k Views
    jensen82J
    I recommend to use the RS232-Protocol and use STX and EOT to define data packets.