Excuse my ignorance here but I know neither C++ nor GTK+.
Which String type is used when setting Strings in GTK+ widgets?
In .NET, Strings passed to a control are obviously .NET System.String. In Cocoa, Strings passed to a control are NSString. But I understand C++ does not have a standardized String type (but indeed several, depending on the library used).
So how are Strings passed to GTK+ widgets?
(I am thinking C Strings, but I want to know for sure.)