Skip to content

The Lounge

Chilling out? Want to discuss Abraham Lincoln? Well, in the Lounge you can discuss literally anything.
1.0k Topics 8.8k Posts
  • The Internet of Things

    2
    0 Votes
    2 Posts
    1k Views
    A
    that is good one.
  • Tutes for newbies on compiling C/C++ code and tools.

    2
    0 Votes
    2 Posts
    1k Views
    sierdzioS
    One way would be to make this post sticky. I'm not a moderator, so I can't do that, but ask someone who has the rights.
  • Questions about software design for a specific problem

    3
    0 Votes
    3 Posts
    2k Views
    U
    @isaacenrique - you seem to be going ahead of yourself. One could answer all your questions and hardly benefit you, or you could invest more time learning and practicing programming and answer those questions yourself. Just to give you a quick example of what I mean: bq. I want buttons instead of executing actions when pressed, rather, change the state of the widget. Is changing the state of a widget not an action on itself? On a side note, you could simply draw to a pixmap and then you can put that pixmap wherever you wish, in a label, in a widget, in a graphics view or even in a quick view. A note of caution: as big as it is, do not expect for Qt to provide everything you can think of out of the box, there are a lot of aspects in which Qt doesn't work as expected or desired, there is no way but to work around that. I've already lost the count of functionality I had to implement on my own after it turns out what Qt does doesn't fit my scenario and cannot be changed to do so easily enough.
  • [SOLVED].rc files in Qt Projects

    5
    0 Votes
    5 Posts
    3k Views
    I
    Ok, Thanks you.
  • My chrome extension for QtDevNet

    136
    0 Votes
    136 Posts
    159k Views
    O
    Yes i have installed it and it is working fine so far, also it is very usefull too. It is a little bit slow but i don't think that this is a plugin-issue.
  • Performance difference (Qt4 vs Qt5)

    18
    0 Votes
    18 Posts
    28k Views
    JKSHJ
    Thank you for your report!
  • Submitting Qt Tutorials

    5
    0 Votes
    5 Posts
    2k Views
    M
    !https://lh5.googleusercontent.com/-K_iN7by7hME/UvKTH2PqjbI/AAAAAAAAGgQ/3rlDHOSeMkI/w616-h636-no/snapshot15.png(ima)!
  • Happy New Year!

    2
    0 Votes
    2 Posts
    1k Views
    F
    OH NO YOU DIDN'T!!!! :)
  • Another Mad Scientist arrives in our lab :)

    7
    1 Votes
    7 Posts
    2k Views
    S
    Congratulation raven-worx ! A well deserved one , welcome the the Mad Scientist community ! :)
  • Is there any way to attract attention to my bug report on Qt?

    4
    0 Votes
    4 Posts
    2k Views
    SGaistS
    Your link points to a reply not a post. No support ? That's what Digia provides, you can become a customer of their services, or hire a professional to fix the bug (e.g. KDAB, ICS) I don't understand what you mean by "no guarantee of functionality" You can also ask on the interest mailing to see wether someone else already encountered the problem.
  • What happened to the glorious Qt documentation?

    19
    0 Votes
    19 Posts
    7k Views
    JKSHJ
    Thanks guys; I'm glad you find it useful :) @SGaist: No plans for a Safari version, but I've released the source code (it's very small). Details at the "official announcement":http://qt-project.org/forums/viewthread/36199/.
  • MutliThread application and cuncurrent data access

    2
    0 Votes
    2 Posts
    1k Views
    JKSHJ
    Hi, I recommend reading http://doc-snapshot.qt-project.org/qt5-stable/threads-synchronizing.html If the data is guarantee to not change while it's being read, this is fine. See the description for QReadWriteLock in the link above. You will probably get data corruption. Data corruption can cause crashes, or it can fail silently -- this depends on your code. Note: In these situations, crashes are good because they tell you that something is wrong. If your app DOESN'T crash, then you won't know if your data is destroyed.
  • Wireless Sync Android Devices

    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, Does it use it Qt ?
  • Why no Windows Phone port of Qt?

    25
    0 Votes
    25 Posts
    18k Views
    T
    @JKSH I think Windows Phone is here to stay, so Qt on Windows Phone will be nice.
  • [SOLVED] Rank points vanishing?

    8
    0 Votes
    8 Posts
    3k Views
    L
    [quote author="panosk" date="1385644639"]Oh, I see. IMHO, the rank page should mention that explicitly because it's not clear now. Thanks for clearing things up.[/quote] I totally agree with you. This part of description of points & ranks should be more user-friendly :)
  • Where to find QtDevDays videos?

    4
    0 Votes
    4 Posts
    2k Views
    A
    Thanks! Apparently, google is not doing a good job promoting it's own content.
  • Format of QR Code in Qt Dev Days name tags

    1
    0 Votes
    1 Posts
    930 Views
    No one has replied
  • Welcome Wireshark!

    2
    0 Votes
    2 Posts
    2k Views
    SGaistS
    Good news and interesting article ! Next step: a plugin for Creator to help debug QNetwork based application :)
  • [SOLVED] Recommended development devices for porting Qt app to Android

    6
    0 Votes
    6 Posts
    3k Views
    Y
    I went for a 2012 Nexus 7 from ebay in the end. Cheap(ish) - and form factor half way in between phone and large tablet. Installation process very smooth - Qt/C++ and Qt Creator are my favourite environment for developing on mobile devices :O) I can now start to try and understand the quirks of OpenGL & Qt on Android! 8-)
  • Linked list versus Vector

    10
    0 Votes
    10 Posts
    7k Views
    K
    At Qt Dev Days 2013, there was a talk called 'Apps on Speed' where Millian Wolff from KDAB, showed some performance numbers of QVector vs QList. The conclusion was: always use a QVector, unless you want to insert something in the beginning or in the middle of a list.