git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@346
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
long GetParent( long item ) const;
long GetRootItem() const;
long GetSelection() const;
long GetParent( long item ) const;
long GetRootItem() const;
long GetSelection() const;
- bool SelectItem( long item ) const;
+ bool SelectItem( long item );
bool ItemHasChildren( long item ) const;
void SetIndent( int indent );
int GetIndent() const;
bool ItemHasChildren( long item ) const;
void SetIndent( int indent );
int GetIndent() const;
void SetImageList(wxImageList *imageList, int which = wxIMAGE_LIST_NORMAL);
private:
void SetImageList(wxImageList *imageList, int which = wxIMAGE_LIST_NORMAL);
private:
+ // set the selection to the specified item generating appropriate event(s) if
+ // not disabled
+ void SelectItem(wxGenericTreeItem *item, bool bDoEvents = TRUE);
+
wxGenericTreeItem *m_anchor;
wxGenericTreeItem *m_current;
bool m_hasFocus;
wxGenericTreeItem *m_anchor;
wxGenericTreeItem *m_current;
bool m_hasFocus;
// Purpose:
// Author: Robert Roebling
// Created: 01/02/97
// Purpose:
// Author: Robert Roebling
// Created: 01/02/97
// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/treectrl.h"
#include "wx/settings.h"
#include "wx/treectrl.h"
#include "wx/settings.h"
//-----------------------------------------------------------------------------
// wxTreeItem
//-----------------------------------------------------------------------------
// wxTreeItem
CalculatePositions();
if (!p->HasChildren()) p->m_hasChildren = TRUE;
CalculatePositions();
if (!p->HasChildren()) p->m_hasChildren = TRUE;
int ch = 0;
GetClientSize( NULL, &ch );
int ch = 0;
GetClientSize( NULL, &ch );
if (p)
{
CalculatePositions();
if (p)
{
CalculatePositions();
if (!p->HasChildren()) p->m_hasChildren = TRUE;
int ch = 0;
if (!p->HasChildren()) p->m_hasChildren = TRUE;
int ch = 0;
i->SendCollapse( this );
break;
}
i->SendCollapse( this );
break;
}
{
wxGenericTreeItem *pItem = FindItem( item );
wxCHECK_RET( pItem != NULL, "wxTreeCtrl::DeleteItem: no such pItem." );
{
wxGenericTreeItem *pItem = FindItem( item );
wxCHECK_RET( pItem != NULL, "wxTreeCtrl::DeleteItem: no such pItem." );
pItem->m_parent->m_children.DeleteObject(pItem);
pItem->m_parent->m_children.DeleteObject(pItem);
{
wxGenericTreeItem *pItem = FindItem( item );
wxCHECK_RET( pItem != NULL, "wxTreeCtrl::DeleteChildren: no such pItem." );
{
wxGenericTreeItem *pItem = FindItem( item );
wxCHECK_RET( pItem != NULL, "wxTreeCtrl::DeleteChildren: no such pItem." );
pItem->m_children.Clear();
pItem->m_children.Clear();
long wxTreeCtrl::GetSelection() const
{
long wxTreeCtrl::GetSelection() const
{
+ return m_current ? m_current->GetItemId() : -1;
-bool wxTreeCtrl::SelectItem( long WXUNUSED(item) ) const
+bool wxTreeCtrl::SelectItem(long itemId)
+ wxGenericTreeItem *pItem = FindItem(itemId);
+ if ( !pItem ) {
+ wxLogDebug("Can't select an item %d which doesn't exist.", itemId);
+
+ return FALSE;
+ }
+
+ SelectItem(pItem, FALSE /* no events */);
+
+ return TRUE;
+void wxTreeCtrl::SelectItem(wxGenericTreeItem *item, bool bDoEvents)
+{
+ if (m_current != item)
+ {
+ if (m_current)
+ {
+ m_current->SetHilight( FALSE );
+ RefreshLine( m_current );
+ };
+ m_current = item;
+ m_current->SetHilight( TRUE );
+ RefreshLine( m_current );
+
+ if ( bDoEvents )
+ m_current->SendSelected( this );
+ }
+}
+
bool wxTreeCtrl::ItemHasChildren( long item ) const
{
wxGenericTreeItem *i = FindItem( item );
bool wxTreeCtrl::ItemHasChildren( long item ) const
{
wxGenericTreeItem *i = FindItem( item );
void wxTreeCtrl::PaintLevel( wxGenericTreeItem *item, wxPaintDC &dc, int level, int &y )
{
int horizX = level*m_indent;
void wxTreeCtrl::PaintLevel( wxGenericTreeItem *item, wxPaintDC &dc, int level, int &y )
{
int horizX = level*m_indent;
item->m_x = horizX+33;
item->m_y = y-m_lineHeight/3;
item->m_height = m_lineHeight;
item->m_x = horizX+33;
item->m_y = y-m_lineHeight/3;
item->m_height = m_lineHeight;
item->SetCross( horizX+15, y );
int oldY = y;
item->SetCross( horizX+15, y );
int oldY = y;
if (IsExposed( 0, item->m_y-2, 10000, m_lineHeight+4 ))
{
int startX = horizX;
int endX = horizX + 10;
if (!item->HasChildren()) endX += 20;
if (IsExposed( 0, item->m_y-2, 10000, m_lineHeight+4 ))
{
int startX = horizX;
int endX = horizX + 10;
if (!item->HasChildren()) endX += 20;
- dc.DrawLine( startX, y, endX, y );
+ dc.DrawLine( startX, y, endX, y );
if (item->HasChildren())
{
if (item->HasChildren())
{
long tw, th;
dc.GetTextExtent( item->m_text, &tw, &th );
if (m_hasFocus)
long tw, th;
dc.GetTextExtent( item->m_text, &tw, &th );
if (m_hasFocus)
dc.SetPen( *wxBLACK_PEN );
dc.DrawRectangle( item->m_x-2, item->m_y-2, tw+4, th+4 );
dc.SetPen( *wxBLACK_PEN );
dc.DrawRectangle( item->m_x-2, item->m_y-2, tw+4, th+4 );
- }
- else
- {
- dc.SetPen( *wxTRANSPARENT_PEN );
+ }
+ else
+ {
+ dc.SetPen( *wxTRANSPARENT_PEN );
dc.DrawRectangle( item->m_x-2, item->m_y-2, tw+4, th+4 );
dc.DrawRectangle( item->m_x-2, item->m_y-2, tw+4, th+4 );
dc.DrawText( item->m_text, item->m_x, item->m_y );
dc.SetPen( *wxBLACK_PEN );
dc.SetTextForeground( *wxBLACK );
dc.DrawText( item->m_text, item->m_x, item->m_y );
dc.SetPen( *wxBLACK_PEN );
dc.SetTextForeground( *wxBLACK );
- dc.SetBrush( *wxWHITE_BRUSH );
+ dc.SetBrush( *wxWHITE_BRUSH );
- dc.SetPen( *wxTRANSPARENT_PEN );
+ dc.SetPen( *wxTRANSPARENT_PEN );
long tw, th;
dc.GetTextExtent( item->m_text, &tw, &th );
dc.DrawRectangle( item->m_x-2, item->m_y-2, tw+4, th+4 );
long tw, th;
dc.GetTextExtent( item->m_text, &tw, &th );
dc.DrawRectangle( item->m_x-2, item->m_y-2, tw+4, th+4 );
if (item->NumberOfVisibleChildren() == 0) return;
if (item->NumberOfVisibleChildren() == 0) return;
wxNode *node = item->m_children.First();
while (node)
{
wxNode *node = item->m_children.First();
while (node)
{
y += m_lineHeight;
semiOldY = y;
y += m_lineHeight;
semiOldY = y;
PaintLevel( child, dc, level+1, y );
PaintLevel( child, dc, level+1, y );
if ((flag != wxTREE_HITTEST_ONITEMBUTTON) &&
(flag != wxTREE_HITTEST_ONITEMLABEL)) return;
if ((flag != wxTREE_HITTEST_ONITEMBUTTON) &&
(flag != wxTREE_HITTEST_ONITEMLABEL)) return;
- if (m_current != item)
- {
- if (m_current)
- {
- m_current->SetHilight( FALSE );
- RefreshLine( m_current );
- };
- m_current = item;
- m_current->SetHilight( TRUE );
- RefreshLine( m_current );
- m_current->SendSelected( this );
- };
if (event.LeftDClick())
m_current->SendKeyDown( this );
if (event.LeftDClick())
m_current->SendKeyDown( this );
void wxTreeCtrl::CalculateLevel( wxGenericTreeItem *item, wxPaintDC &dc, int level, int &y )
{
int horizX = level*m_indent;
void wxTreeCtrl::CalculateLevel( wxGenericTreeItem *item, wxPaintDC &dc, int level, int &y )
{
int horizX = level*m_indent;
item->m_x = horizX+33;
item->m_y = y-m_lineHeight/3-2;
item->m_height = m_lineHeight;
if (item->NumberOfVisibleChildren() == 0) return;
item->m_x = horizX+33;
item->m_y = y-m_lineHeight/3-2;
item->m_height = m_lineHeight;
if (item->NumberOfVisibleChildren() == 0) return;
wxNode *node = item->m_children.First();
while (node)
{
wxGenericTreeItem *child = (wxGenericTreeItem *)node->Data();
wxNode *node = item->m_children.First();
while (node)
{
wxGenericTreeItem *child = (wxGenericTreeItem *)node->Data();
y += m_lineHeight;
CalculateLevel( child, dc, level+1, y );
y += m_lineHeight;
CalculateLevel( child, dc, level+1, y );