Examples of small and middle opensource projects on GTK+ [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 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.

Related

libwebsockets vs. WebSockets++ [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'm going to make a realtime multiplayer game using the WebSocket technology. However, I am unsure which server implementation I should use. I've found two mature (enough) libraries that suit my needs. libwebsockets and WebSockets++.
Did anyone try them out? Can someone point out the main differences between these two libraries?
You can have a look at QWebSockets, which is written in Qt and works both for clients and 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.

desktopdock or stardock in 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 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.

XML-RPC library for C++ [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 5 years ago.
Improve this question
What libraries are available for writing xml-rpc clients in native C++ or C?
You might want to check out either xmlrpc-c or xmlrpc++.
I found a list of xml-rpc implementations in many different languages. Hopefully this list will be useful to others.