Good documentation for gtkmm 2.4 - c++

I've got a project that needs to use the gtkmm 2.4 API, however documentation for it has been really hard to find. The official gtkmm site has the following statement:
Versions for the older gtkmm 2 API are also available.
However I can't seem to find it anywhere. Anyone know of a place good place to get documentation?

See the following links:
gtkmm: gtkmm Reference Manual
Programming with gtkmm 2.24.2
Gtk+ API Documentation (both, GTK+ 2 and 3
Hth!

Related

Using OpenDDS with Qt6

Can someone guide me on how to use OpenDDS with Qt6? I need to make a Chatroom application on Qt with the help of OpenDDS and I can't find any learning material for that.
OpenDDS has a demo used to demonstrate interoperability with other DDS implementations that uses Qt that could serve as an example. It's Qt 5 though, we haven't updated it to Qt 6 yet. There's also some more information about OpenDDS and Qt listed here.

Stanford cs106b C++ library in XCode 8

I am right now trying to solve the exercises of the free cs106b class, but cannot succeed to setup the needed libraries. I am new to C++ and not that experienced in XCode. I tried to to directly copy the library files I found on [Github] into my XCode project. I tried now for hours to get this package working but it seems they have to be installed in a special way.
I would be glad if somebody could give me some references on how to install a C++ library in XCode, especially the library given by Stanford.
P.S. with the "old" class I was given an .pkg installer, which I installed but did not seem to change anything.
I cannot help much with the XCode IDE. I have personally completed the course myself; however I used QT creator. The CS106B or CS106X official website (version 2016) provides very good documentation about how someone can go about and get started. http://web.stanford.edu/class/cs106b//handouts/qt-creator.html
A point to note: I used the SEE CS106B videos (the online cs106B) to complete the 2016 CS106X course. Please have a look around for the assignment files, in the official cs106B/cs106X website. In case you cannot find it, let me know, I can send it to you. I hope this helps.

Pjsip2.2 PJSUA2 API for iOS

I've upgraded pjsip 2.2 with the new PJSUA2 API.
It's written in C++ and the documentation has given the use example for Java/Python applications as well. But I can't find any example for iOS application.
I'm not very familiar with using C++ in Objective-C. I was trying to replace the existing pjsua.h with pjsua2.hpp... It seems not even linked to the lib.
Any advice?

How to install external library in Xcode 4?

I am thinking of completing the free online course provided by Stanford on C++ and data abstractions. They have provided a C++ library with the necessary functionality required for the course.
I am trying to install the library which is called CS106LibrariesForXcode.pkg. I have done exactly what they have mentioned in the handout. You can find the handout here.
I am using X-Code 4.3.1. Nothing happens even after I install the CS106LibrariesForXcode.pkg. Is it because of the version of Xcode I am using? How do I get it work?
You need to install XCode 3.0 in order to use CS106LibrariesForXcode.pkg library.
XCode 4 have a very different UI and functionality compared to XCode 3. So it would be unwise to study XCode 3 only. But if you're going to study C++ using those tutorials you'd probably want to install XCode 3 and use it.

npruntime example plugin (c++) of NPAPI fails to run on mac OSX 10.5

I have compiled Mozilla NPAPI plugin example npruntime on Mac OSX 10.5.
It give me a libnprt.dylib
I am bundling this dylib with proper plist.
On loading the plugin, NP_GetMIMEDescription() is getting called (i am logging this), but its not going inside NP_GetEntryPoints().
How a part of code is getting loaded and a part not?
Can you suggest me of any other documentation or example code?
Any light on "How to make an NPAPI plugin for Mac"?
Advance thanks
-Parimal Das
Solving your problem with the npruntime sample is a bit hard with the details given. I suggest checking out WebKits examples from their repository. Mac-wise Mozillas samples are somewhat outdated.
To spare yourself from implementing it all, you can also take a look at:
QtBrowserPlugin
FireBreath (Cocoa support is work-in-progress though at the moment)
If you haven't found it already you might also find this NPAPI plugin introduction helpful.