#include "wx/treectrl.h"
#include "wx/settings.h"
#include "wx/log.h"
+#include <wx/intl.h>
//-----------------------------------------------------------------------------
// wxTreeItem
m_lineHeight = 10;
m_indent = 15;
m_isCreated = FALSE;
- m_dc = NULL;
m_hilightBrush = new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT), wxSOLID );
m_imageList = NULL;
m_smallImageList = NULL;
m_lineHeight = 10;
m_indent = 15;
m_isCreated = FALSE;
- m_dc = NULL;
m_hilightBrush = new wxBrush( wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT), wxSOLID );
m_imageList = NULL;
m_smallImageList = NULL;
wxTreeCtrl::~wxTreeCtrl()
{
- if (m_dc) delete m_dc;
};
bool wxTreeCtrl::Create(wxWindow *parent, wxWindowID id,
int ch = 0;
GetClientSize( NULL, &ch );
+ PrepareDC( dc );
+
wxRectangle rect;
- rect.x = 0; rect.y = 0;
- rect.width = 10000; rect.height = ch;
+ rect.x = dc.LogicalToDeviceX( 0 );
+ rect.y = 0;
+ rect.width = 10000;
+ rect.height = ch;
- PrepareDC( dc );
if (p->m_children.Number() == 1)
{
rect.y = dc.LogicalToDeviceY( p->m_y );
rect.y = dc.LogicalToDeviceY( last_child->m_y );
};
- long doX = 0;
- long doY = 0;
- dc.GetDeviceOrigin( &doX, &doY );
- rect.height = ch-rect.y-doY;
-
AdjustMyScrollbars();
if (rect.height > 0) Refresh( FALSE, &rect);
int ch = 0;
GetClientSize( NULL, &ch );
+ PrepareDC( dc );
+
wxRectangle rect;
- rect.x = 0; rect.y = 0;
- rect.width = 10000; rect.height = ch;
+ rect.x = dc.LogicalToDeviceX( 0 );
+ rect.y = 0;
+ rect.width = 10000;
+ rect.height = ch;
- PrepareDC( dc );
if (p->m_children.Number() == 1)
{
rect.y = dc.LogicalToDeviceY( p->m_y );
rect.y = dc.LogicalToDeviceY( last_child->m_y );
};
- long doX = 0;
- long doY = 0;
- dc.GetDeviceOrigin( &doX, &doY );
- rect.height = ch-rect.y-doY;
-
AdjustMyScrollbars();
if (rect.height > 0) Refresh( FALSE, &rect);
}
};
+ wxClientDC dc(this);
+ PrepareDC(dc);
+
int cw = 0;
int ch = 0;
GetClientSize( &cw, &ch );
+
wxRect rect;
- rect.x = 0;
+ rect.x = dc.LogicalToDeviceX( 0 );
rect.width = cw;
- wxClientDC dc(this);
- PrepareDC(dc);
rect.y = dc.LogicalToDeviceY( i->m_y );
-
- long doY = 0;
- dc.GetDeviceOrigin( NULL, &doY );
- rect.height = ch-rect.y-doY;
+ rect.height = ch;
Refresh( TRUE, &rect );
AdjustMyScrollbars();
void wxTreeCtrl::DeleteItem( long item )
{
wxGenericTreeItem *pItem = FindItem( item );
- wxCHECK_RET( pItem != NULL, "wxTreeCtrl::DeleteItem: no such pItem." );
+ wxCHECK_RET( pItem != NULL, _("wxTreeCtrl::DeleteItem: no such pItem.") );
pItem->m_parent->m_children.DeleteObject(pItem);
void wxTreeCtrl::DeleteChildren( long item )
{
wxGenericTreeItem *pItem = FindItem( item );
- wxCHECK_RET( pItem != NULL, "wxTreeCtrl::DeleteChildren: no such pItem." );
+ wxCHECK_RET( pItem != NULL, _("wxTreeCtrl::DeleteChildren: no such pItem.") );
pItem->m_children.Clear();
{
wxGenericTreeItem *pItem = FindItem(itemId);
if ( !pItem ) {
- wxLogDebug("Can't select an item %d which doesn't exist.", itemId);
+ wxLogDebug(_("Can't select an item %d which doesn't exist."), itemId);
return FALSE;
}
return TRUE;
};
-void wxTreeCtrl::SelectItem(wxGenericTreeItem *item, bool bDoEvents )
+void wxTreeCtrl::SelectItem(wxGenericTreeItem *item)
{
if (m_current != item)
{
m_current->SetHilight( TRUE );
RefreshLine( m_current );
- if (bDoEvents) m_current->SendSelected( this );
+ m_current->SendSelected( this );
}
}
int oldY = y;
- if (IsExposed( 0, item->m_y-2, 10000, m_lineHeight+4 ))
+ int exposed_x = dc.LogicalToDeviceX( 0 );
+ int exposed_y = dc.LogicalToDeviceY( item->m_y-2 );
+
+ if (IsExposed( exposed_x, exposed_y, 1000, m_lineHeight+4 ))
{
int startX = horizX;
int endX = horizX + 10;
if (!item->HasChildren()) endX += 20;
+
dc.DrawLine( startX, y, endX, y );
if (item->HasChildren())
}
else
{
+ dc.SetBrush( *wxWHITE_BRUSH );
dc.SetPen( *wxTRANSPARENT_PEN );
long tw, th;
dc.GetTextExtent( item->m_text, &tw, &th );
{
if (!m_anchor) return;
- if (!m_dc)
- {
- m_dc = new wxPaintDC(this);
- PrepareDC( *m_dc );
- };
+ wxPaintDC dc(this);
+ PrepareDC( dc );
- m_dc->SetFont( wxSystemSettings::GetSystemFont( wxSYS_SYSTEM_FONT ) );
+ dc.SetFont( wxSystemSettings::GetSystemFont( wxSYS_SYSTEM_FONT ) );
- m_dc->SetPen( m_dottedPen );
- m_lineHeight = (int)(m_dc->GetCharHeight() + 4);
+ dc.SetPen( m_dottedPen );
+ m_lineHeight = (int)(dc.GetCharHeight() + 4);
int y = m_lineHeight / 2 + 2;
- PaintLevel( m_anchor, *m_dc, 0, y );
+ PaintLevel( m_anchor, dc, 0, y );
};
void wxTreeCtrl::OnSetFocus( const wxFocusEvent &WXUNUSED(event) )
rect.x = dc.LogicalToDeviceX( item->m_x-2 );
rect.y = dc.LogicalToDeviceY( item->m_y-2 );
rect.width = 1000;
- rect.height = dc.GetCharHeight()+4;
+ rect.height = dc.GetCharHeight()+6;
Refresh( TRUE, &rect );
};