I Think its worthwhile learning the native windowing layer on each platform you are targetting.
As such:
- Cocoa
Cocoa is the native Mac OS X windowing layer. Its an Objective-C api, but its not hard to learn, and its easy to interop with either C or C++.
- Win32 API
The Windows API is a C API that implements the windows native widget set.
- GTK+
The Unix/Linux world is more complicated as its possible to have apps written against completely different widget set implementations. You need to choose the widget set used by your target environments default desktop: If you are targeting Ubuntu then GTK+ (2) is the API to target to access the Unity desktops "native" widget set.
I don't personally like QT as they've invented their own meta compiler, making QT code (ironically) hard to port to non QT environments. QT does however present an abstraction of the native Widget set where possible.
wxWidgets is a convenient wrapper API to use as it already wraps the Win32Api, Cocoa api and GTK+ on the relevant platforms. I avoided using it however as Wx is based on Microsoft MFC - a somewhat dated Document/View C++ framework and I wanted to understand the underlying platforms.
- Edited with some corrections wrt QT.