vote up 3 vote down star

I am wondering why Qt uses Q before every class name rather than putting everything in a namespace. Is there any particular reason, such as making the names easy to search for, or is it just about brand names?

flag

1  
I know it's nitpicky, but "Rational" should be "Rationale". – Matthew Talbert Aug 28 at 10:53
1  
just lurking. Personally, as a non-native English speaker, I enjoy being corrected. I strongly prefer being corrected than to keep using a mistaken word or phrase without knowing. – Stefano Borini Aug 28 at 11:47
@Matthew Talbert I too agree with Stefano you are welcome Matthew – yesraaj Aug 28 at 13:05
I find it much less annoying than having to type "Qt::" before everything. And if you say "Oh, just use the namespace" then it clashes with a lot of my custom/derived classes. – Mark Aug 31 at 2:12

6 Answers

vote up 4 vote down

I believe it is historical. Namespaces were introduced into C++ around 1995. Qt development started in 1991 so namespaces could not be used, obviously.

link|flag
vote up 3 vote down

It may be a portability issue. Namespaces weren't / aren't supported by every compiler, so the naming convention helps to cut down on naming clashes.

link|flag
1  
by default the code generated from Qt Designer uses ui:: namespace ...I suspect that may not be the problem – yesraaj Aug 28 at 15:00
Yep, and Qt does have a Qt namespace. It just doesn't contain the classes, only some enums. – mmutz Aug 31 at 6:31
vote up 2 vote down

The documentation for Qt refers to namespaces, although I didn't check the code to see if they are truly c++ namespaces or a hack with public declarations inside a class. I would guess that the rest is trying to avoid causing everybody to need to rename everything, although they could provide a migration path if they wanted to, like so:

namespace Qt
{
class Object { ... };
}

#ifndef NO_OLD_DECLS
typedef Qt::Object QObject;
#endif
link|flag
vote up 2 vote down

Qt is very conservative on the C++ language features it uses. No namespaces, exceptions or RTTI. See also this article detailing why templates are not used in signal/slot handling.

link|flag
Although I agree that Qt is conservative, your link to no templates is specific to the signal/slot mechanism. Qt definitely uses templates in a lot of their code. The exceptions and RTTI stuff is due to being used on embedded devices, I would wager. Many embedded apps avoid those for the overhead they add. – cjhuitt Aug 28 at 14:58
That's a good point, and correct. Will amend answer! – Paul Dixon Aug 28 at 15:29
vote up 0 vote down

Seeing as there's not a single C++ compiler left that doesn't implement namespaces, nowadays there's only one reason: Branding :)

link|flag
no current compiler maybe. but there's plenty of people still using older compilers who won't / can't upgrade to the latest version. I'm not saying it's a good situation, but sometimes you're just stuck with using a crappy old compiler, for any number of technical / non-technical reasons. – Glen Aug 28 at 12:36
Even if everyone used new compilers that do support namespaces correctly (and I disagree with your statement BTW - there are still current compilers that do not support all the nuances of namespaces correctly), there's still a lot of Qt code out that that uses the current naming convention. Do you expect everyone to change all their Qt code to a new naming convention just to use namespaces? – Thomi Aug 28 at 13:52
@Glen, Thomi: Qt does use namespaces nowadays (since 4.0), so any compiler left without at least basic support is­ no longer supported by Qt anyway (cannot be supported). – mmutz Aug 31 at 6:29
vote up 0 vote down

Qt uses a Q prefix as part of their coding style. It usually serves the purpose of making it easier to read the code and spot what is what.

An identifier that:

  • is prefixed with "Q" and suffixed with "Private" is a private class used for implementation details and is not part of the API (e.g. QPainterPrivate)
  • is prefixed with "Q" and not suffixed with "Private" is a public class (e.g. QWidget)
  • is prefixed with "q" (lowercase) is a public global function (e.g. qRgb)

Adopting a coding style and using it uniformly makes it much easier for other people to understand code they didn't write.

Ref.: Qt Coding Style

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.