|
static FXuint FX::FXHandedMsgBox::informational |
( |
FXWindow * |
window, |
|
|
const FXString & |
caption, |
|
|
const FXString & |
text, |
|
|
FXuint |
opts = DECOR_ALL|HANDEDMSGBOX_DEFOKBUTTON , |
|
|
FXint |
x = 0 , |
|
|
FXint |
y = 0 , |
|
|
FXint |
w = 200 , |
|
|
FXint |
h = 150 , |
|
|
FXint |
pl = DEFAULT_PAD , |
|
|
FXint |
pr = DEFAULT_PAD , |
|
|
FXint |
pt = DEFAULT_PAD , |
|
|
FXint |
pb = DEFAULT_PAD , |
|
|
FXint |
hs = DEFAULT_SPACING , |
|
|
FXint |
vs = DEFAULT_SPACING | |
|
) |
| | [inline, static] |
Issues an informational message box.
Definition at line 125 of file FXHandedMsgBox.h. 00126 {
00127 return FXHandedMsgBox(window, caption, text, informationalIcon(), opts, x,y,w,h, pl,pr,pt,pb, hs,vs).execute();
00128 }
|