Kimono.KMessageBox.DetailedSorry C# (CSharp) Method

DetailedSorry() public static method

Displays a "Sorry" dialog with a "Details >>" button. name="parent" If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent. name="text" Message string. name="details" Detailed message string. name="caption" Message box title. The application name is added to the title. The default title is i18n("Sorry"). name="options" see Options Either your program messed up and asks for understanding or your user did something stupid. To be used for small problems like "Sorry, I can't find the file you specified." And then details can contain something like "foobar.txt was not found in any of the following directories: /usr/bin,/usr/local/bin,/usr/sbin" The default button is "&OK". Pressing "Esc" selects the OK-button. NOTE: The ok button will always have the i18n'ed text '&OK'.
public static DetailedSorry ( QWidget parent, string text, string details, string caption, uint options ) : void
parent Qyoto.QWidget
text string
details string
caption string
options uint
return void
        public static void DetailedSorry(QWidget parent, string text, string details, string caption, uint options)
        {
            staticInterceptor.Invoke("detailedSorry#$$$$", "detailedSorry(QWidget*, const QString&, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(string), details, typeof(string), caption, typeof(uint), options);
        }

Same methods

KMessageBox::DetailedSorry ( QWidget parent, string text, string details ) : void
KMessageBox::DetailedSorry ( QWidget parent, string text, string details, string caption ) : void