Added new wxPropertyGrid property validation failure flags wxPG_VFB_SHOW_MESSAGEBOX and wxPG_VFB_SHOW_MESSAGE_ON_STATUSBAR, which allow defining the default message display behavior more accurately
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64805 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -389,10 +389,31 @@ wxPG_VFB_BEEP = 0x02,
|
||||
*/
|
||||
wxPG_VFB_MARK_CELL = 0x04,
|
||||
|
||||
/** Display customizable text message explaining the situation.
|
||||
/**
|
||||
Display a text message explaining the situation.
|
||||
|
||||
To customize the way the message is displayed, you need to
|
||||
reimplement wxPropertyGrid::DoShowPropertyError() in a
|
||||
derived class. Default behavior is to display the text on
|
||||
the top-level frame's status bar, if present, and otherwise
|
||||
using wxMessageBox.
|
||||
*/
|
||||
wxPG_VFB_SHOW_MESSAGE = 0x08,
|
||||
|
||||
/**
|
||||
Similar to wxPG_VFB_SHOW_MESSAGE, except always displays the
|
||||
message using wxMessageBox.
|
||||
*/
|
||||
wxPG_VFB_SHOW_MESSAGEBOX = 0x10,
|
||||
|
||||
/**
|
||||
Similar to wxPG_VFB_SHOW_MESSAGE, except always displays the
|
||||
message on the status bar (when present - you can reimplement
|
||||
wxPropertyGrid::GetStatusBar() in a derived class to specify
|
||||
this yourself).
|
||||
*/
|
||||
wxPG_VFB_SHOW_MESSAGE_ON_STATUSBAR = 0x20,
|
||||
|
||||
/** Defaults. */
|
||||
wxPG_VFB_DEFAULT = wxPG_VFB_STAY_IN_PROPERTY|wxPG_VFB_BEEP,
|
||||
|
||||
|
Reference in New Issue
Block a user