summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
8af28fa)
Make the columns resize when dragging the columns in the header control intercepting the EVT_HEADER_RESIZING event
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59360
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void SetHasAttr( bool set ) { m_hasAttr = set; }
void SetAttr( const wxDataViewItemAttr &attr ) { m_attr = attr; }
void SetHasAttr( bool set ) { m_hasAttr = set; }
void SetAttr( const wxDataViewItemAttr &attr ) { m_attr = attr; }
- bool GetWantsAttr() { return m_wantsAttr; }
+ bool GetWantsAttr() const { return m_wantsAttr; }
// implementation
int CalculateAlignment() const;
// implementation
int CalculateAlignment() const;
wxSize GetSize() const;
// in-place editing
wxSize GetSize() const;
// in-place editing
- virtual bool HasEditorCtrl();
- virtual wxControl* CreateEditorCtrl( wxWindow *parent, wxRect labelRect, const wxVariant &value );
+ virtual bool HasEditorCtrl() const;
+ virtual wxControl* CreateEditorCtrl( wxWindow *parent, wxRect labelRect,
+ const wxVariant &value );
virtual bool GetValueFromEditorCtrl( wxControl* editor, wxVariant &value );
protected:
virtual bool GetValueFromEditorCtrl( wxControl* editor, wxVariant &value );
protected:
virtual wxSize GetSize() const;
virtual bool HasEditorCtrl() { return true; }
virtual wxSize GetSize() const;
virtual bool HasEditorCtrl() { return true; }
- virtual wxControl* CreateEditorCtrl( wxWindow *parent, wxRect labelRect, const wxVariant &value );
+ virtual wxControl* CreateEditorCtrl( wxWindow *parent, wxRect labelRect,
+ const wxVariant &value );
virtual bool GetValueFromEditorCtrl( wxControl* editor, wxVariant &value );
private:
virtual bool GetValueFromEditorCtrl( wxControl* editor, wxVariant &value );
private:
virtual bool Render( wxRect cell, wxDC *dc, int state );
virtual wxSize GetSize() const;
virtual bool Activate( wxRect cell,
virtual bool Render( wxRect cell, wxDC *dc, int state );
virtual wxSize GetSize() const;
virtual bool Activate( wxRect cell,
- wxDataViewModel *model, const wxDataViewItem & item, unsigned int col );
+ wxDataViewModel *model,
+ const wxDataViewItem& item,
+ unsigned int col );
private:
wxDateTime m_date;
private:
wxDateTime m_date;
void Init();
bool Create(wxWindow *parent, wxWindowID id,
void Init();
bool Create(wxWindow *parent, wxWindowID id,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize, long style = 0,
- const wxValidator& validator = wxDefaultValidator );
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize, long style = 0,
+ const wxValidator& validator = wxDefaultValidator );
virtual bool AssociateModel( wxDataViewModel *model );
virtual bool AssociateModel( wxDataViewModel *model );
virtual void EnsureVisible( const wxDataViewItem & item,
const wxDataViewColumn *column = NULL );
virtual void EnsureVisible( const wxDataViewItem & item,
const wxDataViewColumn *column = NULL );
- virtual void HitTest( const wxPoint & point, wxDataViewItem & item, wxDataViewColumn* &column ) const;
- virtual wxRect GetItemRect( const wxDataViewItem & item, const wxDataViewColumn *column = NULL ) const;
+ virtual void HitTest( const wxPoint & point, wxDataViewItem & item,
+ wxDataViewColumn* &column ) const;
+ virtual wxRect GetItemRect( const wxDataViewItem & item,
+ const wxDataViewColumn *column = NULL ) const;
virtual void Expand( const wxDataViewItem & item );
virtual void Collapse( const wxDataViewItem & item );
virtual void Expand( const wxDataViewItem & item );
virtual void Collapse( const wxDataViewItem & item );
static const int EXPANDER_OFFSET = 1;
#endif
static const int EXPANDER_OFFSET = 1;
#endif
-//Below is the compare stuff
-//For the generic implements, both the leaf nodes and the nodes are sorted for fast search when needed
-static wxDataViewModel * g_model;
+// Below is the compare stuff.
+// For the generic implementation, both the leaf nodes and the nodes are sorted for
+// fast search when needed
+static wxDataViewModel* g_model;
static int g_column = -2;
static bool g_asending = true;
static int g_column = -2;
static bool g_asending = true;
- void OnEndResize(wxHeaderCtrlEvent& event)
+ void OnResize(wxHeaderCtrlEvent& event)
{
wxDataViewCtrl * const owner = GetOwner();
{
wxDataViewCtrl * const owner = GetOwner();
EVT_HEADER_CLICK(wxID_ANY, wxDataViewHeaderWindow::OnClick)
EVT_HEADER_RIGHT_CLICK(wxID_ANY, wxDataViewHeaderWindow::OnRClick)
EVT_HEADER_CLICK(wxID_ANY, wxDataViewHeaderWindow::OnClick)
EVT_HEADER_RIGHT_CLICK(wxID_ANY, wxDataViewHeaderWindow::OnRClick)
- EVT_HEADER_END_RESIZE(wxID_ANY, wxDataViewHeaderWindow::OnEndResize)
+ EVT_HEADER_RESIZING(wxID_ANY, wxDataViewHeaderWindow::OnResize)
+ EVT_HEADER_END_RESIZE(wxID_ANY, wxDataViewHeaderWindow::OnResize)
EVT_HEADER_END_REORDER(wxID_ANY, wxDataViewHeaderWindow::OnEndReorder)
END_EVENT_TABLE()
EVT_HEADER_END_REORDER(wxID_ANY, wxDataViewHeaderWindow::OnEndReorder)
END_EVENT_TABLE()
//-----------------------------------------------------------------------------
// wxDataViewTreeNode
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxDataViewTreeNode
//-----------------------------------------------------------------------------
class wxDataViewTreeNode;
WX_DEFINE_ARRAY( wxDataViewTreeNode *, wxDataViewTreeNodes );
WX_DEFINE_ARRAY( void* , wxDataViewTreeLeaves);
class wxDataViewTreeNode;
WX_DEFINE_ARRAY( wxDataViewTreeNode *, wxDataViewTreeNodes );
WX_DEFINE_ARRAY( void* , wxDataViewTreeLeaves);
-int LINKAGEMODE wxGenericTreeModelNodeCmp( wxDataViewTreeNode ** node1, wxDataViewTreeNode ** node2);
+int LINKAGEMODE wxGenericTreeModelNodeCmp( wxDataViewTreeNode ** node1,
+ wxDataViewTreeNode ** node2);
int LINKAGEMODE wxGenericTreeModelItemCmp( void ** id1, void ** id2);
class wxDataViewTreeNode
int LINKAGEMODE wxGenericTreeModelItemCmp( void ** id1, void ** id2);
class wxDataViewTreeNode
-int LINKAGEMODE wxGenericTreeModelNodeCmp( wxDataViewTreeNode ** node1, wxDataViewTreeNode ** node2)
+int LINKAGEMODE wxGenericTreeModelNodeCmp( wxDataViewTreeNode ** node1,
+ wxDataViewTreeNode ** node2)
{
return g_model->Compare( (*node1)->GetItem(), (*node2)->GetItem(), g_column, g_asending );
}
{
return g_model->Compare( (*node1)->GetItem(), (*node2)->GetItem(), g_column, g_asending );
}
//-----------------------------------------------------------------------------
// wxDataViewMainWindow
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxDataViewMainWindow
//-----------------------------------------------------------------------------
int GetCountPerPage() const;
int GetEndOfLastCol() const;
unsigned int GetFirstVisibleRow() const;
int GetCountPerPage() const;
int GetEndOfLastCol() const;
unsigned int GetFirstVisibleRow() const;
- //I change this method to un const because in the tree view, the displaying number of the tree are changing along with the expanding/collapsing of the tree nodes
+
+ // I change this method to un const because in the tree view,
+ // the displaying number of the tree are changing along with the
+ // expanding/collapsing of the tree nodes
unsigned int GetLastVisibleRow();
unsigned int GetRowCount();
wxDataViewItem GetSelection() const;
wxDataViewSelection GetSelections(){ return m_selection; }
unsigned int GetLastVisibleRow();
unsigned int GetRowCount();
wxDataViewItem GetSelection() const;
wxDataViewSelection GetSelections(){ return m_selection; }
- void SetSelections( const wxDataViewSelection & sel ) { m_selection = sel; UpdateDisplay(); }
+ void SetSelections( const wxDataViewSelection & sel )
+ { m_selection = sel; UpdateDisplay(); }
void Select( const wxArrayInt& aSelections );
void SelectAllRows( bool on );
void SelectRow( unsigned int row, bool on );
void Select( const wxArrayInt& aSelections );
void SelectAllRows( bool on );
void SelectRow( unsigned int row, bool on );
int GetLineHeight( unsigned int row ) const; // m_lineHeight in fixed mode
int GetLineAt( unsigned int y ) const; // y / m_lineHeight in fixed mode
int GetLineHeight( unsigned int row ) const; // m_lineHeight in fixed mode
int GetLineAt( unsigned int y ) const; // y / m_lineHeight in fixed mode
- //Some useful functions for row and item mapping
+ // Some useful functions for row and item mapping
wxDataViewItem GetItemByRow( unsigned int row ) const;
int GetRowByItem( const wxDataViewItem & item ) const;
wxDataViewItem GetItemByRow( unsigned int row ) const;
int GetRowByItem( const wxDataViewItem & item ) const;
- //Methods for building the mapping tree
+ // Methods for building the mapping tree
void BuildTree( wxDataViewModel * model );
void DestroyTree();
void HitTest( const wxPoint & point, wxDataViewItem & item, wxDataViewColumn* &column );
void BuildTree( wxDataViewModel * model );
void DestroyTree();
void HitTest( const wxPoint & point, wxDataViewItem & item, wxDataViewColumn* &column );
private:
wxDataViewTreeNode * GetTreeNodeByRow( unsigned int row ) const;
private:
wxDataViewTreeNode * GetTreeNodeByRow( unsigned int row ) const;
- //We did not need this temporarily
- //wxDataViewTreeNode * GetTreeNodeByItem( const wxDataViewItem & item );
+ // We did not need this temporarily
+ // wxDataViewTreeNode * GetTreeNodeByItem( const wxDataViewItem & item );
// the pen used to draw the expander and the lines
wxPen m_penExpander;
// the pen used to draw the expander and the lines
wxPen m_penExpander;
- //This is the tree structure of the model
+ // This is the tree structure of the model
wxDataViewTreeNode * m_root;
int m_count;
wxDataViewTreeNode * m_root;
int m_count;
- //This is the tree node under the cursor
+
+ // This is the tree node under the cursor
wxDataViewTreeNode * m_underMouse;
wxDataViewTreeNode * m_underMouse;
private:
DECLARE_DYNAMIC_CLASS(wxDataViewMainWindow)
DECLARE_EVENT_TABLE()
private:
DECLARE_DYNAMIC_CLASS(wxDataViewMainWindow)
DECLARE_EVENT_TABLE()
-void wxDataViewCustomRenderer::RenderText( const wxString &text, int xoffset, wxRect cell, wxDC *dc, int state )
+void wxDataViewCustomRenderer::RenderText( const wxString &text, int xoffset,
+ wxRect cell, wxDC *dc, int state )
{
wxDataViewCtrl *view = GetOwner()->GetOwner();
wxColour col = (state & wxDATAVIEW_CELL_SELECTED) ?
wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT) :
view->GetForegroundColour();
dc->SetTextForeground(col);
{
wxDataViewCtrl *view = GetOwner()->GetOwner();
wxColour col = (state & wxDATAVIEW_CELL_SELECTED) ?
wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT) :
view->GetForegroundColour();
dc->SetTextForeground(col);
- dc->DrawText( text, cell.x + xoffset, cell.y + ((cell.height - dc->GetCharHeight()) / 2));
+ dc->DrawText( text,
+ cell.x + xoffset,
+ cell.y + ((cell.height - dc->GetCharHeight()) / 2));
}
// ---------------------------------------------------------
}
// ---------------------------------------------------------
-bool wxDataViewTextRenderer::HasEditorCtrl()
+bool wxDataViewTextRenderer::HasEditorCtrl() const
// wxDataViewMainWindow
//-----------------------------------------------------------------------------
// wxDataViewMainWindow
//-----------------------------------------------------------------------------
-//The tree building helper, declared firstly
-static void BuildTreeHelper( wxDataViewModel * model, wxDataViewItem & item, wxDataViewTreeNode * node);
+// The tree building helper, declared firstly
+static void BuildTreeHelper( wxDataViewModel * model, wxDataViewItem & item,
+ wxDataViewTreeNode * node);
int LINKAGEMODE wxDataViewSelectionCmp( unsigned int row1, unsigned int row2 )
{
int LINKAGEMODE wxDataViewSelectionCmp( unsigned int row1, unsigned int row2 )
{
m_penRule = wxPen(GetRuleColour());
m_penRule = wxPen(GetRuleColour());
- //Here I compose a pen can draw black lines, maybe there are something system colour to use
+ // compose a pen whichcan draw black lines
+ // TODO: maybe there is something system colour to use
m_penExpander = wxPen(wxColour(0,0,0));
m_penExpander = wxPen(wxColour(0,0,0));
- //Some new added code to deal with the tree structure
m_root = new wxDataViewTreeNode( NULL );
m_root->SetHasChildren(true);
m_root = new wxDataViewTreeNode( NULL );
m_root->SetHasChildren(true);
- //Make m_count = -1 will cause the class recaculate the real displaying number of rows.
+ // Make m_count = -1 will cause the class recaculate the real displaying number of rows.
m_count = -1;
m_underMouse = NULL;
UpdateDisplay();
m_count = -1;
m_underMouse = NULL;
UpdateDisplay();
-wxDragResult wxDataViewMainWindow::OnDragOver( wxDataFormat format, wxCoord x, wxCoord y, wxDragResult def )
+wxDragResult wxDataViewMainWindow::OnDragOver( wxDataFormat format, wxCoord x,
+ wxCoord y, wxDragResult def )
{
int xx = x;
int yy = y;
{
int xx = x;
int yy = y;
-wxDragResult wxDataViewMainWindow::OnData( wxDataFormat format, wxCoord x, wxCoord y, wxDragResult def )
+wxDragResult wxDataViewMainWindow::OnData( wxDataFormat format, wxCoord x, wxCoord y,
+ wxDragResult def )
{
int xx = x;
int yy = y;
{
int xx = x;
int yy = y;
{
wxDataViewTreeNode *node = GetTreeNodeByRow(row);
indent = GetOwner()->GetIndent() * node->GetIndentLevel();
{
wxDataViewTreeNode *node = GetTreeNodeByRow(row);
indent = GetOwner()->GetIndent() * node->GetIndentLevel();
- indent = indent + m_lineHeight; //try to use the m_lineHeight as the expander space
+ indent = indent + m_lineHeight;
+ // try to use the m_lineHeight as the expander space
if(!node->HasChildren())
delete node;
if(!node->HasChildren())
delete node;
item_rect.x = x + (width / 2) - (size.x / 2);
else if (align & wxALIGN_RIGHT)
item_rect.x = x + width - size.x;
item_rect.x = x + (width / 2) - (size.x / 2);
else if (align & wxALIGN_RIGHT)
item_rect.x = x + width - size.x;
- //else: wxALIGN_LEFT is the default
+ // else: wxALIGN_LEFT is the default
// vertical alignment:
item_rect.y = 0;
// vertical alignment:
item_rect.y = 0;
item_rect.y = (height / 2) - (size.y / 2);
else if (align & wxALIGN_BOTTOM)
item_rect.y = height - size.y;
item_rect.y = (height / 2) - (size.y / 2);
else if (align & wxALIGN_BOTTOM)
item_rect.y = height - size.y;
- //else: wxALIGN_TOP is the default
+ // else: wxALIGN_TOP is the default
// add padding
item_rect.x += PADDING_RIGHTLEFT;
item_rect.width = size.x - 2 * PADDING_RIGHTLEFT;
// add padding
item_rect.x += PADDING_RIGHTLEFT;
item_rect.width = size.x - 2 * PADDING_RIGHTLEFT;
- //dc.SetClippingRegion( item_rect );
+ // dc.SetClippingRegion( item_rect );
cell->Render( item_rect, &dc, 0 );
cell->Render( item_rect, &dc, 0 );
- //dc.DestroyClippingRegion();
+ // dc.DestroyClippingRegion();
dataitem = node->GetItem();
dataitem = node->GetItem();
- if ((i > 0) && model->IsContainer(dataitem) && !model->HasContainerColumns(dataitem))
+ if ((i > 0) && model->IsContainer(dataitem) &&
+ !model->HasContainerColumns(dataitem))
// update cell_rect
cell_rect.y = GetLineStart( item );
// update cell_rect
cell_rect.y = GetLineStart( item );
- cell_rect.height = GetLineHeight( item ); // -1 is for the horizontal rules (?)
+ cell_rect.height = GetLineHeight( item );
- //Draw the expander here.
+ // Draw the expander here.
int indent = 0;
if ((!IsVirtualList()) && (col == expander))
{
indent = node->GetIndentLevel();
int indent = 0;
if ((!IsVirtualList()) && (col == expander))
{
indent = node->GetIndentLevel();
- //Calculate the indent first
+ // Calculate the indent first
indent = cell_rect.x + GetOwner()->GetIndent() * indent;
int expander_width = m_lineHeight - 2*EXPANDER_MARGIN;
indent = cell_rect.x + GetOwner()->GetIndent() * indent;
int expander_width = m_lineHeight - 2*EXPANDER_MARGIN;
// change the cell_rect.x to the appropriate pos
// change the cell_rect.x to the appropriate pos
- int expander_x = indent + EXPANDER_MARGIN;
- int expander_y = cell_rect.y + EXPANDER_MARGIN + (GetLineHeight(item) / 2) - (expander_width/2) - EXPANDER_OFFSET;
- indent = indent + m_lineHeight; //try to use the m_lineHeight as the expander space
+ int expander_x = indent + EXPANDER_MARGIN;
+ int expander_y = cell_rect.y + EXPANDER_MARGIN + (GetLineHeight(item) / 2)
+ - (expander_width/2) - EXPANDER_OFFSET;
+
+ indent = indent + m_lineHeight;
+ // try to use the m_lineHeight as the expander space
+
dc.SetPen( m_penExpander );
dc.SetBrush( wxNullBrush );
if( node->HasChildren() )
dc.SetPen( m_penExpander );
dc.SetBrush( wxNullBrush );
if( node->HasChildren() )
flag |= wxCONTROL_CURRENT;
}
if( node->IsOpen() )
flag |= wxCONTROL_CURRENT;
}
if( node->IsOpen() )
- wxRendererNative::Get().DrawTreeItemButton( this, dc, rect, flag|wxCONTROL_EXPANDED );
+ wxRendererNative::Get().DrawTreeItemButton( this, dc, rect,
+ flag|wxCONTROL_EXPANDED );
else
wxRendererNative::Get().DrawTreeItemButton( this, dc, rect, flag);
}
else
wxRendererNative::Get().DrawTreeItemButton( this, dc, rect, flag);
}
- //force the expander column to left-center align
+
+ // force the expander column to left-center align
cell->SetAlignment( wxALIGN_CENTER_VERTICAL );
}
if (node && !node->HasChildren())
cell->SetAlignment( wxALIGN_CENTER_VERTICAL );
}
if (node && !node->HasChildren())
// cannot be bigger than allocated space
wxSize size = cell->GetSize();
// cannot be bigger than allocated space
wxSize size = cell->GetSize();
- // Because of the tree structure indent, here we should minus the width of the cell for drawing
+
+ // Because of the tree structure indent, here we should minus the width
+ // of the cell for drawing
size.x = wxMin( size.x + 2*PADDING_RIGHTLEFT, cell_rect.width - indent );
// size.y = wxMin( size.y, cell_rect.height );
size.y = cell_rect.height;
size.x = wxMin( size.x + 2*PADDING_RIGHTLEFT, cell_rect.width - indent );
// size.y = wxMin( size.y, cell_rect.height );
size.y = cell_rect.height;
item_rect.x = cell_rect.x + (cell_rect.width / 2) - (size.x / 2);
else if (align & wxALIGN_RIGHT)
item_rect.x = cell_rect.x + cell_rect.width - size.x;
item_rect.x = cell_rect.x + (cell_rect.width / 2) - (size.x / 2);
else if (align & wxALIGN_RIGHT)
item_rect.x = cell_rect.x + cell_rect.width - size.x;
- //else: wxALIGN_LEFT is the default
+ // else: wxALIGN_LEFT is the default
// vertical alignment:
item_rect.y = cell_rect.y;
// vertical alignment:
item_rect.y = cell_rect.y;
item_rect.y = cell_rect.y + (cell_rect.height / 2) - (size.y / 2);
else if (align & wxALIGN_BOTTOM)
item_rect.y = cell_rect.y + cell_rect.height - size.y;
item_rect.y = cell_rect.y + (cell_rect.height / 2) - (size.y / 2);
else if (align & wxALIGN_BOTTOM)
item_rect.y = cell_rect.y + cell_rect.height - size.y;
- //else: wxALIGN_TOP is the default
+ // else: wxALIGN_TOP is the default
// add padding
item_rect.x += PADDING_RIGHTLEFT;
item_rect.width = size.x - 2 * PADDING_RIGHTLEFT;
// add padding
item_rect.x += PADDING_RIGHTLEFT;
item_rect.width = size.x - 2 * PADDING_RIGHTLEFT;
- //Here we add the tree indent
+ // Here we add the tree indent
item_rect.x += indent;
int state = 0;
item_rect.x += indent;
int state = 0;
m_currentCol->GetRenderer()->StartEditing( item, labelRect );
}
m_currentCol->GetRenderer()->StartEditing( item, labelRect );
}
-//------------------------------------------------------------------
+//-----------------------------------------------------------------------------
// Helper class for do operation on the tree node
// Helper class for do operation on the tree node
-//------------------------------------------------------------------
+//-----------------------------------------------------------------------------
class DoJob
{
public:
DoJob() { }
virtual ~DoJob() { }
class DoJob
{
public:
DoJob() { }
virtual ~DoJob() { }
- //The return value control how the tree-walker tranverse the tree
+ // The return value control how the tree-walker tranverse the tree
// 0: Job done, stop tranverse and return
// 1: Ignore the current node's subtree and continue
// 2: Job not done, continue
// 0: Job done, stop tranverse and return
// 1: Ignore the current node's subtree and continue
// 2: Job not done, continue
wxDataViewTreeNode * node = FindNode(parent);
wxCHECK_MSG( node != NULL, false, "item not found" );
wxDataViewTreeNode * node = FindNode(parent);
wxCHECK_MSG( node != NULL, false, "item not found" );
- wxCHECK_MSG( node->GetChildren().Index( item.GetID() ) != wxNOT_FOUND, false, "item not found" );
+ wxCHECK_MSG( node->GetChildren().Index( item.GetID() ) != wxNOT_FOUND,
+ false, "item not found" );
int sub = -1;
node->GetChildren().Remove( item.GetID() );
int sub = -1;
node->GetChildren().Remove( item.GetID() );
+ // Manipolate selection
if( m_selection.GetCount() > 1 )
{
m_selection.Empty();
if( m_selection.GetCount() > 1 )
{
m_selection.Empty();
sub -= n->GetSubTreeCount();
::DestroyTreeHelper(n);
}
sub -= n->GetSubTreeCount();
::DestroyTreeHelper(n);
}
- //Make the row number invalid and get a new valid one when user call GetRowCount
+ // Make the row number invalid and get a new valid one when user call GetRowCount
m_count = -1;
node->ChangeSubTreeCount(sub);
m_count = -1;
node->ChangeSubTreeCount(sub);
- //Change the current row to the last row if the current exceed the max row number
+ // Change the current row to the last row if the current exceed the max row number
if( m_currentRow > GetRowCount() )
m_currentRow = m_count - 1;
if( m_currentRow > GetRowCount() )
m_currentRow = m_count - 1;
SortPrepare();
g_model->Resort();
SortPrepare();
g_model->Resort();
wxWindow *parent = GetParent();
wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, parent->GetId());
le.SetEventObject(parent);
wxWindow *parent = GetParent();
wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, parent->GetId());
le.SetEventObject(parent);
SortPrepare();
g_model->Resort();
SortPrepare();
g_model->Resort();
wxWindow *parent = GetParent();
wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, parent->GetId());
le.SetEventObject(parent);
wxWindow *parent = GetParent();
wxDataViewEvent le(wxEVT_COMMAND_DATAVIEW_ITEM_VALUE_CHANGED, parent->GetId());
le.SetEventObject(parent);
m_owner->CalcUnscrolledPosition( client_size.x, client_size.y,
&client_size.x, &client_size.y );
m_owner->CalcUnscrolledPosition( client_size.x, client_size.y,
&client_size.x, &client_size.y );
- //we should deal with the pixel here
+ // we should deal with the pixel here
unsigned int row = GetLineAt(client_size.y) - 1;
return wxMin( GetRowCount()-1, row );
unsigned int row = GetLineAt(client_size.y) - 1;
return wxMin( GetRowCount()-1, row );
class RowToItemJob: public DoJob
{
public:
class RowToItemJob: public DoJob
{
public:
- RowToItemJob( unsigned int row , int current ) { this->row = row; this->current = current;}
- virtual ~RowToItemJob() { }
+ RowToItemJob( unsigned int row , int current )
+ { this->row = row; this->current = current; }
+ virtual ~RowToItemJob() {}
virtual int operator() ( wxDataViewTreeNode * node )
{
virtual int operator() ( wxDataViewTreeNode * node )
{
- //If the current has no child node, we can find the desired item of the row number directly.
- //This if can speed up finding in some case, and will has a very good effect when it comes to list view
+ // If the current has no child node, we can find the desired item of the row
+ // number directly.
+ // This if can speed up finding in some case, and will has a very good effect
+ // when it comes to list view
if( node->GetNodes().GetCount() == 0)
{
int index = static_cast<int>(row) - current - 1;
if( node->GetNodes().GetCount() == 0)
{
int index = static_cast<int>(row) - current - 1;
- wxDataViewItem GetResult(){ return ret; }
+
+ wxDataViewItem GetResult() const
+ { return ret; }
+
private:
unsigned int row;
int current;
private:
unsigned int row;
int current;
- //If the current has no child node, we can find the desired item of the row number directly.
- //This if can speed up finding in some case, and will has a very good effect when it comes to list view
+
+ // If the current node has no children, we can find the desired item of the
+ // row number directly.
+ // This if can speed up finding in some case, and will have a very good
+ // effect for list views.
if( node->GetNodes().GetCount() == 0)
{
int index = static_cast<int>(row) - current - 1;
if( node->GetNodes().GetCount() == 0)
{
int index = static_cast<int>(row) - current - 1;
}
virtual int operator() ( void * n )
}
virtual int operator() ( void * n )
- wxDataViewTreeNode * GetResult(){ return ret; }
+
+ wxDataViewTreeNode * GetResult() const
+ { return ret; }
+
private:
unsigned int row;
int current;
private:
unsigned int row;
int current;
wxDataViewTreeNode * parent;
};
wxDataViewTreeNode * parent;
};
wxDataViewTreeNode * wxDataViewMainWindow::GetTreeNodeByRow(unsigned int row) const
{
wxASSERT( !IsVirtualList() );
wxDataViewTreeNode * wxDataViewMainWindow::GetTreeNodeByRow(unsigned int row) const
{
wxASSERT( !IsVirtualList() );
return job.GetResult();
}
return job.GetResult();
}
-wxDataViewEvent wxDataViewMainWindow::SendExpanderEvent( wxEventType type, const wxDataViewItem & item )
+wxDataViewEvent wxDataViewMainWindow::SendExpanderEvent( wxEventType type,
+ const wxDataViewItem & item )
{
wxWindow *parent = GetParent();
wxDataViewEvent le(type, parent->GetId());
{
wxWindow *parent = GetParent();
wxDataViewEvent le(type, parent->GetId());
bool wxDataViewMainWindow::IsExpanded( unsigned int row ) const
{
if (IsVirtualList())
bool wxDataViewMainWindow::IsExpanded( unsigned int row ) const
{
if (IsVirtualList())
wxDataViewTreeNode * node = GetTreeNodeByRow(row);
if (!node)
wxDataViewTreeNode * node = GetTreeNodeByRow(row);
if (!node)
if (!node->HasChildren())
{
if (!node->HasChildren())
{
- delete node;
- return false;
+ delete node;
+ return false;
void wxDataViewMainWindow::OnExpanding( unsigned int row )
{
if (IsVirtualList())
void wxDataViewMainWindow::OnExpanding( unsigned int row )
{
if (IsVirtualList())
wxDataViewTreeNode * node = GetTreeNodeByRow(row);
if( node != NULL )
wxDataViewTreeNode * node = GetTreeNodeByRow(row);
if( node != NULL )
- wxDataViewEvent e = SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING,node->GetItem());
- //Check if the user prevent expanding
- if( e.GetSkipped() )
+ wxDataViewEvent e =
+ SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDING, node->GetItem());
+
+ // Check if the user prevent expanding
+ if( e.GetSkipped() )
- node->ToggleOpen();
- //Here I build the children of current node
- if( node->GetChildrenNumber() == 0 )
- {
- SortPrepare();
- ::BuildTreeHelper(GetOwner()->GetModel(), node->GetItem(), node);
- }
- // By expanding the node all row indices that are currently in the selection list
- // and are greater than our node have become invalid. So we have to correct that now.
- const unsigned rowAdjustment = node->GetSubTreeCount();
- for(unsigned i=0; i<m_selection.size(); ++i)
- {
- const unsigned testRow = m_selection[i];
- // all rows above us are not affected, so skip them
- if(testRow <= row)
- continue;
+ // build the children of current node
+ if( node->GetChildrenNumber() == 0 )
+ {
+ SortPrepare();
+ ::BuildTreeHelper(GetOwner()->GetModel(), node->GetItem(), node);
+ }
- m_selection[i] += rowAdjustment;
- }
+ // By expanding the node all row indices that are currently in the selection list
+ // and are greater than our node have become invalid. So we have to correct that now.
+ const unsigned rowAdjustment = node->GetSubTreeCount();
+ for(unsigned i=0; i<m_selection.size(); ++i)
+ {
+ const unsigned testRow = m_selection[i];
+ // all rows above us are not affected, so skip them
+ if(testRow <= row)
+ continue;
+
+ m_selection[i] += rowAdjustment;
+ }
- if(m_currentRow > row)
- ChangeCurrentRow(m_currentRow + rowAdjustment);
+ if(m_currentRow > row)
+ ChangeCurrentRow(m_currentRow + rowAdjustment);
- m_count = -1;
- UpdateDisplay();
- //Send the expanded event
- SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED,node->GetItem());
+ m_count = -1;
+ UpdateDisplay();
+ // Send the expanded event
+ SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_EXPANDED,node->GetItem());
void wxDataViewMainWindow::OnCollapsing(unsigned int row)
{
if (IsVirtualList())
void wxDataViewMainWindow::OnCollapsing(unsigned int row)
{
if (IsVirtualList())
wxDataViewTreeNode * node = GetTreeNodeByRow(row);
if( node != NULL )
wxDataViewTreeNode * node = GetTreeNodeByRow(row);
if( node != NULL )
if( node->HasChildren() && node->IsOpen() )
{
if( node->HasChildren() && node->IsOpen() )
{
- wxDataViewEvent e = SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING,node->GetItem());
+ wxDataViewEvent e =
+ SendExpanderEvent(wxEVT_COMMAND_DATAVIEW_ITEM_COLLAPSING,node->GetItem());
if( e.GetSkipped() )
return;
if( e.GetSkipped() )
return;
if (!item.IsOk())
return m_root;
if (!item.IsOk())
return m_root;
- //Compose the a parent-chain of the finding item
+ // Compose the a parent-chain of the finding item
ItemList list;
list.DeleteContents( true );
wxDataViewItem it( item );
ItemList list;
list.DeleteContents( true );
wxDataViewItem it( item );
it = model->GetParent( it );
}
it = model->GetParent( it );
}
- //Find the item along the parent-chain.
- //This algorithm is designed to speed up the node-finding method
+ // Find the item along the parent-chain.
+ // This algorithm is designed to speed up the node-finding method
wxDataViewTreeNode * node = m_root;
for( ItemList::const_iterator iter = list.begin(); iter !=list.end(); iter++ )
{
wxDataViewTreeNode * node = m_root;
for( ItemList::const_iterator iter = list.begin(); iter !=list.end(); iter++ )
{
-void wxDataViewMainWindow::HitTest( const wxPoint & point, wxDataViewItem & item, wxDataViewColumn* &column )
+void wxDataViewMainWindow::HitTest( const wxPoint & point, wxDataViewItem & item,
+ wxDataViewColumn* &column )
{
wxDataViewColumn *col = NULL;
unsigned int cols = GetOwner()->GetColumnCount();
{
wxDataViewColumn *col = NULL;
unsigned int cols = GetOwner()->GetColumnCount();
item = GetItemByRow( GetLineAt( y ) );
}
item = GetItemByRow( GetLineAt( y ) );
}
-wxRect wxDataViewMainWindow::GetItemRect( const wxDataViewItem & item, const wxDataViewColumn* column )
+wxRect wxDataViewMainWindow::GetItemRect( const wxDataViewItem & item,
+ const wxDataViewColumn* column )
{
int row = GetRowByItem(item);
int y = GetLineStart( row );
{
int row = GetRowByItem(item);
int y = GetLineStart( row );
- wxDataViewIndexListModel *list_model = (wxDataViewIndexListModel*) GetOwner()->GetModel();
+ wxDataViewIndexListModel *list_model =
+ (wxDataViewIndexListModel*) GetOwner()->GetModel();
#ifndef __WXMAC__
return list_model->GetLastIndex() + 1;
#else
#ifndef __WXMAC__
return list_model->GetLastIndex() + 1;
#else
- //Maybe binary search will help to speed up this process
+ // Maybe binary search will help to speed up this process
virtual int operator() ( wxDataViewTreeNode * node)
{
ret ++;
virtual int operator() ( wxDataViewTreeNode * node)
{
ret ++;
return DoJob::OK;
return DoJob::CONT;
}
return DoJob::OK;
return DoJob::CONT;
}
- //the row number is begin from zero
- int GetResult() { return ret -1; }
+
+ // the row number is begin from zero
+ int GetResult() const
+ { return ret -1; }
private:
ItemList::const_iterator m_iter;
private:
ItemList::const_iterator m_iter;
if( !item.IsOk() )
return -1;
if( !item.IsOk() )
return -1;
- //Compose the a parent-chain of the finding item
+ // Compose the a parent-chain of the finding item
ItemList list;
wxDataViewItem * pItem;
list.DeleteContents( true );
ItemList list;
wxDataViewItem * pItem;
list.DeleteContents( true );
-static void BuildTreeHelper( wxDataViewModel * model, wxDataViewItem & item, wxDataViewTreeNode * node)
+static void BuildTreeHelper( wxDataViewModel * model, wxDataViewItem & item,
+ wxDataViewTreeNode * node)
{
if( !model->IsContainer( item ) )
return;
{
if( !model->IsContainer( item ) )
return;
m_root = new wxDataViewTreeNode( NULL );
m_root->SetHasChildren(true);
m_root = new wxDataViewTreeNode( NULL );
m_root->SetHasChildren(true);
- //First we define a invalid item to fetch the top-level elements
+ // First we define a invalid item to fetch the top-level elements
wxDataViewItem item;
SortPrepare();
BuildTreeHelper( model, item, m_root);
wxDataViewItem item;
SortPrepare();
BuildTreeHelper( model, item, m_root);
if( node->GetNodeNumber() != 0 )
{
int len = node->GetNodeNumber();
if( node->GetNodeNumber() != 0 )
{
int len = node->GetNodeNumber();
wxDataViewTreeNodes& nodes = node->GetNodes();
wxDataViewTreeNodes& nodes = node->GetNodes();
- for(; i < len; i ++ )
- {
+ for (int i = 0; i < len; i++)
DestroyTreeHelper(nodes[i]);
DestroyTreeHelper(nodes[i]);
{
if (!IsVirtualList())
{
{
if (!IsVirtualList())
{
- ::DestroyTreeHelper(m_root);
- m_count = 0;
- m_root = NULL;
+ ::DestroyTreeHelper(m_root);
+ m_count = 0;
+ m_root = NULL;
if ( m_currentRow < GetRowCount() - 1 )
OnArrowChar( m_currentRow + 1, event );
break;
if ( m_currentRow < GetRowCount() - 1 )
OnArrowChar( m_currentRow + 1, event );
break;
- //Add the process for tree expanding/collapsing
+ // Add the process for tree expanding/collapsing
case WXK_LEFT:
OnCollapsing(m_currentRow);
break;
case WXK_LEFT:
OnCollapsing(m_currentRow);
break;
- //Test whether the mouse is hovered on the tree item button
+ // Test whether the mouse is hovered on the tree item button
bool hoverOverExpander = false;
if ((!IsVirtualList()) && (GetOwner()->GetExpanderColumn() == col))
{
bool hoverOverExpander = false;
if ((!IsVirtualList()) && (GetOwner()->GetExpanderColumn() == col))
{
m_lineHeight, m_lineHeight);
if( rect.Contains(x, y) )
{
m_lineHeight, m_lineHeight);
if( rect.Contains(x, y) )
{
- //So the mouse is over the expander
+ // So the mouse is over the expander
hoverOverExpander = true;
if (m_underMouse && m_underMouse != node)
{
hoverOverExpander = true;
if (m_underMouse && m_underMouse != node)
{
- //wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
+ // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
RefreshRow(GetRowByItem(m_underMouse->GetItem()));
}
if (m_underMouse != node)
{
RefreshRow(GetRowByItem(m_underMouse->GetItem()));
}
if (m_underMouse != node)
{
- //wxLogMessage("Do the row: %d", current);
+ // wxLogMessage("Do the row: %d", current);
RefreshRow(current);
}
m_underMouse = node;
RefreshRow(current);
}
m_underMouse = node;
{
if (m_underMouse != NULL)
{
{
if (m_underMouse != NULL)
{
- //wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
+ // wxLogMessage("Undo the row: %d", GetRowByItem(m_underMouse->GetItem()));
RefreshRow(GetRowByItem(m_underMouse->GetItem()));
m_underMouse = NULL;
}
RefreshRow(GetRowByItem(m_underMouse->GetItem()));
m_underMouse = NULL;
}
if (event.LeftIsDown())
{
if (event.LeftIsDown())
{
- m_owner->CalcUnscrolledPosition( m_dragStart.x, m_dragStart.y, &m_dragStart.x, &m_dragStart.y );
+ m_owner->CalcUnscrolledPosition( m_dragStart.x, m_dragStart.y,
+ &m_dragStart.x, &m_dragStart.y );
unsigned int drag_item_row = GetLineAt( m_dragStart.y );
wxDataViewItem item = GetItemByRow( drag_item_row );
unsigned int drag_item_row = GetLineAt( m_dragStart.y );
wxDataViewItem item = GetItemByRow( drag_item_row );
wxRect cell_rect( xpos, GetLineStart( current ),
col->GetWidth(), GetLineHeight( current ) );
cell->Activate( cell_rect, model, item, col->GetModelColumn() );
wxRect cell_rect( xpos, GetLineStart( current ),
col->GetWidth(), GetLineHeight( current ) );
cell->Activate( cell_rect, model, item, col->GetModelColumn() );
SendSelectionChangedEvent( GetItemByRow(m_lineSelectSingleOnUp) );
}
SendSelectionChangedEvent( GetItemByRow(m_lineSelectSingleOnUp) );
}
- //If the user click the expander, we do not do editing even if the column with expander are editable
+ // If the user click the expander, we do not do editing even if the column
+ // with expander are editable
if (m_lastOnSame && !ignore_other_columns)
{
if ((col == m_currentCol) && (current == m_currentRow) &&
if (m_lastOnSame && !ignore_other_columns)
{
if ((col == m_currentCol) && (current == m_currentRow) &&
if((event.LeftDown() || simulateClick) && hoverOverExpander)
{
wxDataViewTreeNode* node = GetTreeNodeByRow(current);
if((event.LeftDown() || simulateClick) && hoverOverExpander)
{
wxDataViewTreeNode* node = GetTreeNodeByRow(current);
- // hoverOverExpander being true tells us that our node must be valid and have children.
+
+ // hoverOverExpander being true tells us that our node must be
+ // valid and have children.
// So we don't need any extra checks.
if( node->IsOpen() )
OnCollapsing(current);
// So we don't need any extra checks.
if( node->IsOpen() )
OnCollapsing(current);
model->GetValue( value, item, col->GetModelColumn() );
cell->SetValue( value );
wxRect cell_rect( xpos, GetLineStart( current ),
model->GetValue( value, item, col->GetModelColumn() );
cell->SetValue( value );
wxRect cell_rect( xpos, GetLineStart( current ),
- col->GetWidth(), GetLineHeight( current ) );
- /* ignore ret */ cell->LeftClick( event.GetPosition(), cell_rect, model, item, col->GetModelColumn());
+ col->GetWidth(), GetLineHeight( current ) );
+ /* ignore ret */ cell->LeftClick( event.GetPosition(), cell_rect,
+ model, item, col->GetModelColumn());
//-----------------------------------------------------------------------------
// wxDataViewCtrl
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxDataViewCtrl
//-----------------------------------------------------------------------------
WX_DEFINE_LIST(wxDataViewColumnList)
IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl, wxDataViewCtrlBase)
WX_DEFINE_LIST(wxDataViewColumnList)
IMPLEMENT_DYNAMIC_CLASS(wxDataViewCtrl, wxDataViewCtrlBase)
BEGIN_EVENT_TABLE(wxDataViewCtrl, wxDataViewCtrlBase)
EVT_SIZE(wxDataViewCtrl::OnSize)
END_EVENT_TABLE()
BEGIN_EVENT_TABLE(wxDataViewCtrl, wxDataViewCtrlBase)
EVT_SIZE(wxDataViewCtrl::OnSize)
END_EVENT_TABLE()
}
bool wxDataViewCtrl::Create(wxWindow *parent, wxWindowID id,
}
bool wxDataViewCtrl::Create(wxWindow *parent, wxWindowID id,
- const wxPoint& pos, const wxSize& size,
- long style, const wxValidator& validator )
+ const wxPoint& pos, const wxSize& size,
+ long style, const wxValidator& validator )
{
// if ( (style & wxBORDER_MASK) == 0)
// style |= wxBORDER_SUNKEN;
{
// if ( (style & wxBORDER_MASK) == 0)
// style |= wxBORDER_SUNKEN;
#ifdef __WXMSW__
WXLRESULT wxDataViewCtrl::MSWWindowProc(WXUINT nMsg,
#ifdef __WXMSW__
WXLRESULT wxDataViewCtrl::MSWWindowProc(WXUINT nMsg,
- WXWPARAM wParam,
- WXLPARAM lParam)
+ WXWPARAM wParam,
+ WXLPARAM lParam)
{
WXLRESULT rc = wxDataViewCtrlBase::MSWWindowProc(nMsg, wParam, lParam);
{
WXLRESULT rc = wxDataViewCtrlBase::MSWWindowProc(nMsg, wParam, lParam);
: GetColumn(m_sortingColumnIdx);
}
: GetColumn(m_sortingColumnIdx);
}
-//Selection code with wxDataViewItem as parameters
+// Selection code with wxDataViewItem as parameters
wxDataViewItem wxDataViewCtrl::GetSelection() const
{
return m_clientArea->GetSelection();
wxDataViewItem wxDataViewCtrl::GetSelection() const
{
return m_clientArea->GetSelection();
int row = m_clientArea->GetRowByItem( item );
if( row >= 0 )
{
int row = m_clientArea->GetRowByItem( item );
if( row >= 0 )
{
- //Unselect all rows before select another in the single select mode
+ // Unselect all rows before select another in the single select mode
if (m_clientArea->IsSingleSel())
m_clientArea->SelectAllRows(false);
m_clientArea->SelectRow(row, true);
if (m_clientArea->IsSingleSel())
m_clientArea->SelectAllRows(false);
m_clientArea->SelectRow(row, true);
-//Selection code with row number as parameter
+// Selection code with row number as parameter
int wxDataViewCtrl::GetSelections( wxArrayInt & sel ) const
{
sel.Empty();
int wxDataViewCtrl::GetSelections( wxArrayInt & sel ) const
{
sel.Empty();
-void wxDataViewCtrl::HitTest( const wxPoint & point, wxDataViewItem & item, wxDataViewColumn* &column ) const
+void wxDataViewCtrl::HitTest( const wxPoint & point, wxDataViewItem & item,
+ wxDataViewColumn* &column ) const
{
m_clientArea->HitTest(point, item, column);
}
{
m_clientArea->HitTest(point, item, column);
}
-wxRect wxDataViewCtrl::GetItemRect( const wxDataViewItem & item, const wxDataViewColumn* column ) const
+wxRect wxDataViewCtrl::GetItemRect( const wxDataViewItem & item,
+ const wxDataViewColumn* column ) const
{
return m_clientArea->GetItemRect(item, column);
}
{
return m_clientArea->GetItemRect(item, column);
}
#endif
// !wxUSE_GENERICDATAVIEWCTRL
#endif
// !wxUSE_GENERICDATAVIEWCTRL