Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Does anyone have any links to tutorials showing how to use QListView and how to populate it with items .. ? If I search google I can only find outdated tutorials which use classes which have been deprecated ..
I usually just read the qt documentation as it is very good and provides the necessary information to work with a specific class (it is one of the best documented frameworks in my opinion) try and read the documentation for list view http://doc.qt.io/qt-5/qlistview.html and also look at the examples provided with qt in the examples directory you should find more than one which uses qlistview.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I'm trying to see how a class is implemented in Qt C++, but not sure how to get there. Any short cuts? or how I can see how a class is implemented, for example. QString.
Two different ways:
Browse the sources locally
The easiest way it to install it from Qt online installer. For each version of Qt, you check the Sources component, which will automatically download it for you in your Qt folder
Pull the Git repo directly from https://code.qt.io/cgit/. You can refer to that guide to download the full source: https://wiki.qt.io/Get_the_Source
Browse online
Probably the easiest, and two places again
From Qt official repo, here again https://code.qt.io/cgit/
Or (my preference) from Woboq, as they provide great navigation tools (search, navigate to declaration, definition, uses,...) and syntax highlight: https://code.woboq.org/qt5/qtbase/src/corelib/tools/qstring.cpp.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I would like to implement any maps (OSM, Google maps...) in my Qt Widget application (only targeting Windows platforms).
All answers I got so far is really out-dated (answers from 2011-2013) and I am not able to google anything useful. So I wanted to ask which frameworks could you recommend me?
We are using the osgEarth SDK in our Qt applications. It supports OSM and basically every map type that is supported by GDAL.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to find Java API like documentation for MFC C++ classes. Where we can get clear information on headers associated,data members and methods for MFC Library. MSDN doesn't look helpful since it doesn't contain information on which header need to be in linked.
Can anyone help me on this.
It says the header under Requirements if you scroll down a bit, for example:
https://msdn.microsoft.com/en-us/library/za93adby.aspx
Posting this as an answer as well so you can accept and people can spend their time on other questions.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am not aware of a really good Django-App which provides Wiki functionality.
There is http://code.google.com/p/django-wikiapp/ , but it is not that extensive and no activity anymore.
Any pointers of how to integrate an already proven (and known) Wiki to Django?
Checkout https://github.com/django-wiki/django-wiki. I've installed it and so far it looks very promising.
One of these many packages may suit your needs: Djangopackages.com wiki grid
www.djangopackages.com is a great resource for looking for apps.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I want to add a toolbar and know which tool was clicked. I'd also like to be able to change the toolbar's buttons' bitmap after theyve been created MSDN is fairly breif on all of this. Thanks
If you like to learn by example then you may find this code useful. It's a Windows toolbar wrapper class I created some time ago. It's somewhat advanced though because it uses Custom Draw.
WindowsToolbar.h
WindowsToolbar.cpp
WindowsToolbarItem.h
WindowsToolbarItem.cpp
You might want to check out these tutorials.
Grz, Kris.
http://www.functionx.com/win32/