Qt Equivalent of NSTokenField
Is there an equivalent class/method for use in Qt that resembles Cocoa's NSToke开发者_开发知识库nField?
Dan;
Not really. Here's the Qt widget gallery:
http://doc.trolltech.com/4.6/gallery.html
You might be able to achieve a similar effect with a QTextEdit
and a QSyntaxHighlighter
, but it's not the same as an NSTokenField.
精彩评论