Skip to content

Brainstorm

Stuck? Some ideas just need to be dumped on someone before they can materialize.
451 Topics 3.2k Posts
  • Combined splitterhandle for subwindows

    2
    0 Votes
    2 Posts
    1k Views
    T
    If you want to do this in Qt, then I would do it in a way that enables you to use the existing widgets. If you don't you are bound to put boring videos up on youtube resizing empty areas in a window:-) So I would go for custom splitter. But then I completely fail to see the point of this video:-)
  • [Solved] How to merging media files with Qt?

    4
    0 Votes
    4 Posts
    3k Views
    H
    Be very careful, joining two or more videos as raw files not always works, not all video/audio formats accept a new data stream after it ends, and this method will not work with different formats. The best way of achieving this, is transcoding the files with, for instance, "FFmpeg":http://ffmpeg.org/pipermail/ffmpeg-user/2012-February/004983.html, you can run FFmpeg through "QProcess":http://qt-project.org/doc/qt-4.8/QProcess.html.
  • QDesktopService should be in QtCore ?

    12
    0 Votes
    12 Posts
    7k Views
    sierdzioS
    Check out Qt5, there is a module called "QtSystems" it can provide info you want and is not in QtGui/ QtWidgets ;)
  • 0 Votes
    3 Posts
    2k Views
    K
    You may want to have a look on to "QWTMathMLDocument":http://qwt.sourceforge.net/class_qwt_math_m_l_document.html
  • Qt-Creator send data over internet

    19
    0 Votes
    19 Posts
    9k Views
    A
    Best solution: download new version. "news section has been removed from Qt Creator 2.5.0"
  • 0 Votes
    3 Posts
    2k Views
    U
    Thank you very much, that seems to be the problem
  • Protection of QML code

    16
    0 Votes
    16 Posts
    16k Views
    M
    It would be great to see this added as a suggestion on http://bugreports.qt-project.org -- that should give it a better chance of being looked at, scheduled, etc. Regards, Michael
  • QList<T&> QHash::values or mutable Objects reference list

    3
    0 Votes
    3 Posts
    3k Views
    U
    That's what I wanted to do at first, but minimizing the memory leaks, so I think we'll have to use pointers and been really carefull with that. Thank you very much!
  • QMidi class

    10
    0 Votes
    10 Posts
    15k Views
    F
    NM, found it -- the define... @ MACOSX_CORE @ ...wasn't being passed along verbatim, probably some extra underscores (or fewer, whatever) in the process of passing it from the project file to the code. I #defined it in the actual source file, and it compiled with only a few warnings (unused parameters to functions), which I fixed.
  • QML Themeing

    19
    0 Votes
    19 Posts
    20k Views
    D
    I've written an update about our research: http://codecereal.blogspot.com.br/2012/05/qml-themingstyling-update.html
  • "CORESHARED_EXPORT" in QML Designer Core

    2
    0 Votes
    2 Posts
    2k Views
    T
    For historical reasons the whole core of the qml designer was a separate lib. At some point we changed this. But there is nothing stopping us from exporting these symbols again. If other plugins want to access or extend the model we can change this.
  • Menu Project

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Database Plugin for Qt Designer

    2
    0 Votes
    2 Posts
    3k Views
    M
    Very good !!! If there is a group working on this, I would like to join. I think using QSqlRelationalModel -> QDataWidgetMapper -> UI is a good approach.
  • SSH Support in QT 4.5.3

    3
    0 Votes
    3 Posts
    4k Views
    S
    Disregard the last reply
  • Accessing Outlook mails

    3
    0 Votes
    3 Posts
    2k Views
    T
    Thanks Lukas.
  • QGraphicsItem resizeable

    3
    0 Votes
    3 Posts
    2k Views
    M
    Submitted this suggestion as a feature request: https://bugreports.qt-project.org/browse/QTBUG-24726 Thank you Eddy !
  • C++, C# and Mono

    5
    0 Votes
    5 Posts
    7k Views
    F
    Think enterprise. C# is still the top language in StackOverflow. Mono is generally more popular server side and mobile. qt support is poor, and you only really have gtk for portability which makes this news interesting. Mono is on as many platforms as qt, including Native Client.
  • QML Property Bindings vs: States

    3
    0 Votes
    3 Posts
    3k Views
    F
    Hi Zap Thanks for the answer - sorry it has taken a few days for me to get back, have been changing projects in my day job. Basically you have confirmed my own thinking on this issue, but I did not want to preempt the discussion in any way. I also liked the point that using states "puts all the logic in one place". In the case of my app the state is simple "on / off", so adding a state might be a little overkill (just a whiff of cargo cult programming ...), but were the number of states to increase, the case for using states rather than "bindings with logic" would become all the more compelling. Grüsse Chris
  • The Data - how to?

    3
    0 Votes
    3 Posts
    2k Views
    D
    For me, my opinion is that the database gives you much more easily when then use that data. Perhaps it is that I feel confident in mysql and then we can do things with, but it all depends on what you do at the end, like said Andre in the previous post.
  • Detect & get web page change on the fly?

    2
    0 Votes
    2 Posts
    3k Views
    P
    hi, If it's done by the firefox plugin it is mostly done by JavaScript. You could try to do the same by running evaluateJavaScript(..) for every QWebFrame and it's subframes. (m_webView->page()->mainFrame()->evaluateJavaScript() ) or at the other hand you may try to use QNetworkAccessManager to get the reply before it's provided to QWebPage and change it there. Hope it helped. AP