desktopdock or stardock in Qt [closed] - c++

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
Is there any opensource/sample application in qt/c++, just like desktopdock or objectdock..?

XQDE is an OSX-style dock written in Qt.

You could check out the demos and examples section of the documentation:
QT Demos
QT Examples
The demos are slightly larger than the examples, while the examples are focused on showing a specific feature - and good Qt programming. There's also the tutorial, here, which covers the entire development of two simple apps.

Related

Integrating (any) map framework in Qt 5.5 [closed]

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.

Qt and C++ game development for assignment [closed]

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've got the assignment to write a pacman game using qt creator and c++. I know that QT Quick is better suited for games but i've got no option. The only problem is i am a little bit lost because the documentation of qt is great but there is massive amount of it. Could you provide me some tutorials or links to the documentation where to start?
I would be grateful.
Try to give a look at the QGraphisView and the Animation framework examples, probably they are a good starting point.

Examples of small and middle opensource projects on GTK+ [closed]

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
Can you tell me where i can see a source of examples GTK+ projects (non gtkmm). It is desirable that be used Glade for design UI. I want to see how to organize program and get experience.
You've got plenty of projects in GTK+ in many languages on the GNOME development servers.

Where can I find a C++ csound tutorial? [closed]

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 have just discovered csound and installed its C++ bindings.
The API is documented here (after a usual installation on Linux):
/usr/share/doc/libcsound64-doc/html/index.html
However, what I am missing is a good tutorial to get me started with the API.
Here's an introduction to C API (pdf), which is practically the same as the C++ API. There are also a few examples in the Csound source code in the examples and frontends folders.

Good replacement for Qt [closed]

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 1 year ago.
Improve this question
Is there any replacement for Qt that can be ported on Windows and Linux or good for Linux that supports OpenGL? I have to write OpneGL C++ application and I want to try something better if exists.
IMHO, if you do c++ GUI applications portable across Windows/Linux/Mac, Qt is your best shot.
Other popular toolkits are wx and GTK.