“Don’t Show This Again”
Is there a standard or even a 3rd party way of displaying a simple dialog that has a check box that says “Don’t Show This Again”, and saves it off to check later?
7 replies
You can have a bool store it in some file (some custom made settings file for your application) or use the QSettings [doc.qt.nokia.com] class to store it (and any other settings for application)
QErrorMessage [doc.trolltech.com] might be what you want, although the “dont’t show again” info is not saved permanently (by means of QSettings).
You can use QStyle::standardIcon() [doc.trolltech.com]
with one of these values for the StandardPixmap standardIcon parameter:
To save the settings you could have a look at QSettings [doc.qt.nokia.com] for platform-independent application settings.
You must log in to post a reply. Not a member yet? Register here!




