More interface fixes for Phoenix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73029 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2177,15 +2177,26 @@ public:
|
|||||||
virtual bool HasEditorCtrl() const;
|
virtual bool HasEditorCtrl() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Override this to react to a left click.
|
Override this to react to a left click. This method will only be
|
||||||
This method will only be called in @c wxDATAVIEW_CELL_ACTIVATABLE mode.
|
called in @c wxDATAVIEW_CELL_ACTIVATABLE mode. This method is
|
||||||
|
deprecated, please use ActivateCell instead.
|
||||||
*/
|
*/
|
||||||
virtual bool LeftClick( const wxPoint& cursor,
|
virtual bool LeftClick( wxPoint cursor,
|
||||||
const wxRect& cell,
|
wxRect cell,
|
||||||
wxDataViewModel * model,
|
wxDataViewModel * model,
|
||||||
const wxDataViewItem & item,
|
const wxDataViewItem & item,
|
||||||
unsigned int col );
|
unsigned int col );
|
||||||
|
|
||||||
|
/**
|
||||||
|
Override this to react to the activation of a cell. This method is
|
||||||
|
deprecated, please use ActivateCell instead.
|
||||||
|
*/
|
||||||
|
virtual bool Activate(wxRect cell,
|
||||||
|
wxDataViewModel * model,
|
||||||
|
const wxDataViewItem & item,
|
||||||
|
unsigned int col);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Override this to render the cell.
|
Override this to render the cell.
|
||||||
Before this is called, wxDataViewRenderer::SetValue was called
|
Before this is called, wxDataViewRenderer::SetValue was called
|
||||||
|
@@ -67,8 +67,7 @@ public:
|
|||||||
wxRichMessageDialog(wxWindow* parent,
|
wxRichMessageDialog(wxWindow* parent,
|
||||||
const wxString& message,
|
const wxString& message,
|
||||||
const wxString& caption = wxMessageBoxCaptionStr,
|
const wxString& caption = wxMessageBoxCaptionStr,
|
||||||
long style = wxOK | wxCENTRE,
|
long style = wxOK | wxCENTRE);
|
||||||
const wxPoint& pos = wxDefaultPosition);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Shows a checkbox with a given label or hides it.
|
Shows a checkbox with a given label or hides it.
|
||||||
|
Reference in New Issue
Block a user