Skip to content

Qt in Education

Are you a student or a teacher using Qt Educational Licenses? Here you can discuss about the educational use of Qt, share your learning projects, and network with others.

257 Topics 1.2k Posts

QtWS: Super Early Bird Tickets Available!

  • 0 Votes
    10 Posts
    14k Views
    JKSHJ

    Hi, and welcome to the Qt Dev Net!

    [quote author="LaRainette" date="1398106709"]nothing that has been released publicly can be patented[/quote]Correct. But patents and copyrights are "not the same thing":http://www.uspto.gov/trademarks/basics/definitions.jsp. In this case, we're talking about a book which has been published -- it receives a copyright, not a patent.
    .
    [quote author="LaRainette" date="1398106709"]without a proper copyright notice, publishing something publicly is equivalent to entering the public domain AFAIK.[/quote]No, copyright is "automatic":http://www.ipo.gov.uk/c-auto.htm.

    [quote author="LaRainette" date="1398106709"]The author probably still owns some sort of copyright but... publishing something publicly is equivalent to entering the public domain AFAIK.[/quote]Note that "public domain" means "no copyright".

  • Suggestion to improve tutorial

    7
    0 Votes
    7 Posts
    2k Views
    JKSHJ

    @Steven: Thank you! Your patch has been approved :D

    @Alex: This is the beauty of an open-source project like Qt :) Everyone has the power to fix an issue they find.

  • Qt 4.8 / Qt 5.2 what should I learn

    2
    0 Votes
    2 Posts
    2k Views
    SGaistS

    Hi and welcome to devnet,

    What is available for Qt 4 is mostly valid for Qt 5 or with some minor adaptation, so you can safely learn the ropes with Qt 4 material.

    If you are starting now, you should rather go with Qt 5

  • Advance Study materials

    9
    0 Votes
    9 Posts
    3k Views
    EddyE

    The next step is reading the Qt source code I guess...

  • Qt & mysql[solved]

    3
    0 Votes
    3 Posts
    2k Views
    Y

    thank you IamSumit

  • Qt problem to include opencv library

    5
    0 Votes
    5 Posts
    5k Views
    A

    In you project file you put
    @
    INCLUDEPATH += E:\opencv\build\include
    @

    And in you sources you use
    @
    #include <cxcore.h>
    @

    You should change either INCLUDEPATH
    @
    INCLUDEPATH += E:\opencv\build\include\opencv
    @

    or #include directive
    @
    #include <opencv/cxcore.h>
    @

  • LineEdit

    6
    0 Votes
    6 Posts
    3k Views
    Y

    thank you Clochydd
    thank you koahnig

  • Widgets and icone

    2
    0 Votes
    2 Posts
    1k Views
    C

    Hello,
    you can use @push.Button->setIconSize(const QSize & size)@

  • Find contours error in qt

    2
    0 Votes
    2 Posts
    2k Views
    SGaistS

    Hi and welcome to devnet,

    Has silly has it may sound, you need to fix the code using OpenCV.

    The problem is not Qt related. Qt just tells you that OpenCV has thrown an exception and you didn't catch it anywhere.

  • DevDays 2013 videos anyone?

    16
    0 Votes
    16 Posts
    6k Views
    V

    released!!!

  • [CLOSED]Event handling from C++ to QML

    4
    0 Votes
    4 Posts
    3k Views
    O

    Sorry, i didn't see that it's a thread from more than 1 month ago. I hope that i could still help you and/or someone else who didn't understand how to invoke QML methods.

  • A book on Qt5?

    43
    0 Votes
    43 Posts
    57k Views
    C

    Yeah, OK. I'll give it a new go with the porting guide in place.
    Wasn't aware of that and I had a bad day (car broke down, refrigerator stopped working, things like that) so I was quite annoyed generally.

    The books probably has a slightly higher value than estimated earlier... ;-)

  • Books for QtMobile

    4
    0 Votes
    4 Posts
    2k Views
    J

    For Android here's another good link for setup "http://www.kdab.com/qt-on-android-episode-2/":http://www.kdab.com/qt-on-android-episode-2/

  • 0 Votes
    2 Posts
    3k Views
    SGaistS

    Hi and welcome to devnet,

    You should have a look at QListWidget::selectedItems and QListWidget::insertItems

  • 0 Votes
    1 Posts
    979 Views
    No one has replied
  • Isn't there any PDF about Qt 5?

    4
    0 Votes
    4 Posts
    14k Views
    Q

    if you are interested in QtQuick, "here":http://qmlbook.org/ is a good online book.

  • Question about Class and Pointers to them.

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

    2
    0 Votes
    2 Posts
    2k Views
    IamSumitI

    Hello norrbotten68,

    Book is right , but you skipped following instructions..
    "All the widgets look fine now, except the text label, which shows &Cell Location. Click Edit|Edit Buddies to enter a special mode that allows you to set buddies. Next, click the label and drag the red arrow line to the line editor, then release. The label should now appear as Cell Location, as shown in Figure , and have the line editor as its buddy. Click Edit|Edit Widgets to leave buddy mode."

  • Can i get Qt5.1 in digital format?

    6
    0 Votes
    6 Posts
    2k Views
    SGaistS

    Be patient with Digia, they might take time to answer. Depending on where you live you could try to ask on a more local sub-forum to see if anybody could burn and send you a DVD containing the needed packages.

  • QSQLite

    2
    0 Votes
    2 Posts
    1k Views
    p3c0P

    Check this "sqlbrowser":http://qt-project.org/doc/qt-4.8/demos-sqlbrowser.html. It also uses in memory database and a QSqlTableModel and QTableView for displaying the data. (Refer browser.cpp)