Skip to content

India

A forum for members from India
199 Topics 1.0k Posts
  • 0 Votes
    4 Posts
    2k Views
    p3c0P

    Hi,

    AFAIK, there's no direct function which can detect it.
    There's a simple way, use the "currentCellChanged":http://qt-project.org/doc/qt-5.0/qtwidgets/qtablewidget.html#currentCellChanged signal and check if the focus is currently at the last item.
    For e.g
    @
    void MainWindow::on_tableWidget_currentCellChanged(int currentRow, int currentColumn, int previousRow, int previousColumn)
    {
    qDebug() << currentRow << currentColumn;
    if(currentRow==ui->tableWidget->rowCount()-1 && currentColumn==ui->tableWidget->columnCount()-1)
    qDebug() << "End of table reached";
    }
    @

    For this you need to connect currentCellChanged signal to the slot on_tableWidget_currentCellChanged(int currentRow, int currentColumn, int previousRow, int previousColumn)

  • 0 Votes
    3 Posts
    3k Views
    S

    SGalst: Thanks for your reply.

  • Reg: Qt application at start-up in Linux

    16
    0 Votes
    16 Posts
    11k Views
    V

    Hi,
    After booting the OS requests for login and password... is there a way to do autologin ???
    i cannot use keyboard in my embedded device...

  • Qt Enterprise license

    2
    0 Votes
    2 Posts
    2k Views
    sierdzioS

    Most of Qt functionality (and I really mean most: probably 98% or so) is identical in the Open Source version of Qt. So you can easily use that for evaluation purposes (or sign up at Digia for a trial license), and then buy the license if your use case requires it and you are happy with the product. Or even do it if you simply want to help Qt grow bigger :)

  • 0 Votes
    2 Posts
    2k Views
    IamSumitI

    Hello ..
    There is a link of Qt Developer Days 2012 It will provide you some information..
    http://devdays.kdab.com/wp-content/uploads/2012/QtGoogleAPIs.pdf

    Happy New Year in Advance.. :)

  • 0 Votes
    2 Posts
    1k Views
    IamSumitI

    Hii.....
    Watch this tutorial : – http://www.youtube.com/watch?v=iKtCXUHsV70
    I hope it will help you.
    Happy New Year in Advance.... (: - :)

  • Internationalization of strings

    1
    0 Votes
    1 Posts
    917 Views
    No one has replied
  • 0 Votes
    4 Posts
    2k Views
    R

    Thanks for reply..

  • Need an Help on Qt Mysql on Linux

    6
    0 Votes
    6 Posts
    2k Views
    B

    Hi ,
    As i told earlier,there is a problem on GUI that gets struck when database is not opened due to network problem or access problem.So,
    I need some suggestions or part of code for my requirement on multithreading. Basically my need is like thread 1 will fetch an data from database and handle that to another thread where it does updating the GUI fields. so thread 2 is exposed to user events from gui.

    suggestions would be highly appreciated and eagerly waiting for your replies..Thanks in advance

  • 0 Votes
    3 Posts
    2k Views
    M

    "Yarock":http://qt-apps.org/content/show.php/yarock?content=129372&PHPSESSID=829a68e3c9968f200e43b571240ae69c

    check this

  • QStringlist - strings missing in long list

    3
    0 Votes
    3 Posts
    2k Views
    SGaistS

    Hi,

    It's been solved "here":http://qt-project.org/forums/viewthread/34275/

  • Unable to deploy project in RPi

    1
    0 Votes
    1 Posts
    797 Views
    No one has replied
  • QtQuick1.0 vs QtQuick2.0 ?

    10
    0 Votes
    10 Posts
    11k Views
    sierdzioS

    This is getting off-topic. You can add a QObject to the rootContext (as rootContextProperty), and then use Q_INVOKABLE methods, properties and slots from that object in all your QML files, including to assign the colour. You may loose the benefit of bindings this way, though. I do strongly recommend reading the documentation, as JKSH has suggested.

  • Provide Qt 5.1 digitally

    2
    0 Votes
    2 Posts
    1k Views
    JKSHJ

    Hi,

    I'm not sure if you'll get a different answer from http://qt-project.org/forums/viewthread/33733/ by asking in the same forum.

    Try subscribing to http://lists.qt-project.org/mailman/listinfo/interest and asking there. Some Digia staff are active there.

  • Unable to view icons in QPopUp Menu

    2
    0 Votes
    2 Posts
    2k Views
    B

    May be "this":http://qt-project.org/forums/viewthread/28684/ thread will be informative.

  • 0 Votes
    2 Posts
    3k Views
    R

    Hi...
    I am searching for full source code for facebook qt.I have downloaded the source code from the below link:

    https://gitorious.org/qfacebook

    but during compilation i am geting error "qjson.pro not found". I have searched for qjson.pro in qjson directory its empty.I think I am not geting the complete source code.
    can anyone suggest any link from where i can download the full code for facebook qt source.

    Thanks
    rraj

  • 0 Votes
    3 Posts
    2k Views
    C

    You can send me JD and other details on manish@claysol.com for QT resource, training and support.

  • To send HTML format Mail using QTCPSocket

    4
    0 Votes
    4 Posts
    3k Views
    L

    [quote author="$ATHEES" date="1378357142"]I had placed the header Part correctly

    OK THANKS..

    [/quote]

    You are welcome. Please edit the title and add prefix [SOLVED].

  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • Loading ui at runtime

    19
    0 Votes
    19 Posts
    11k Views
    SGaistS

    Then can you post your pro file and a minimal code example that reproduce the problem ?