Changeset 3807 in vbox for trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
- Timestamp:
- Jul 24, 2007 11:17:40 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxProblemReporter.h
r3718 r3807 54 54 // helpers 55 55 56 int message ( 57 QWidget *parent, Type type, const QString &msg, 58 const QString &details = QString::null, 59 const char *autoConfirmId = 0, 60 int b1 = 0, int b2 = 0, int b3 = 0, 61 const char *name = 0 62 ); 63 64 int message ( 65 QWidget *parent, Type type, const QString &msg, 66 const char *autoConfirmId, 67 int b1 = 0, int b2 = 0, int b3 = 0, 68 const char *name = 0 69 ) { 56 int message (QWidget *parent, Type type, const QString &msg, 57 const QString &details = QString::null, 58 const char *autoConfirmId = NULL, 59 int b1 = 0, int b2 = 0, int b3 = 0, 60 const char *name = 0); 61 62 int message (QWidget *parent, Type type, const QString &msg, 63 const char *autoConfirmId, 64 int b1 = 0, int b2 = 0, int b3 = 0, 65 const char *name = 0) 66 { 70 67 return message (parent, type, msg, QString::null, autoConfirmId, 71 68 b1, b2, b3, name); 72 69 } 73 70 74 bool messageYesNo ( 75 QWidget *parent, Type type, const QString &msg, 76 const QString &details = QString::null, 77 const char *autoConfirmId = 0, 78 const char *name = 0 79 ); 80 81 bool messageYesNo ( 82 QWidget *parent, Type type, const QString &msg, 83 const char *autoConfirmId, 84 const char *name = 0 85 ) { 71 bool messageYesNo (QWidget *parent, Type type, const QString &msg, 72 const QString &details = QString::null, 73 const char *autoConfirmId = 0, 74 const char *name = 0); 75 76 bool messageYesNo (QWidget *parent, Type type, const QString &msg, 77 const char *autoConfirmId, 78 const char *name = 0) 79 { 86 80 return messageYesNo (parent, type, msg, QString::null, autoConfirmId, name); 87 81 } 88 82 89 bool showModalProgressDialog ( 90 CProgress &aProgress, const QString &aTitle, QWidget *aParent, 91 int aMinDuration = 2000 92 ); 83 bool showModalProgressDialog (CProgress &aProgress, const QString &aTitle, 84 QWidget *aParent, int aMinDuration = 2000); 93 85 94 86 QWidget *mainWindowShown(); … … 219 211 const QString &hostKey); 220 212 213 void remindAboutWrongColorDepth (ulong aRealBPP, ulong aWantedBPP); 214 221 215 void cannotRunInSelectorMode(); 222 216
Note:
See TracChangeset
for help on using the changeset viewer.