|
static FXuint FX::FXHandedMsgBox::question |
( |
FXWindow * |
window, |
|
|
const FXString & |
caption, |
|
|
const FXString & |
text, |
|
|
FXuint |
opts = DECOR_ALL|HANDEDMSGBOX_DEFOKBUTTON|HANDEDMSGBOX_OKCANCELBUTTONS|HANDEDMSGBOX_USEYESNO , |
|
|
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 a question message box.
Definition at line 115 of file FXHandedMsgBox.h. 00116 {
00117 return FXHandedMsgBox(window, caption, text, questionIcon(), opts, x,y,w,h, pl,pr,pt,pb, hs,vs).execute();
00118 }
|