GetDataBrowserSortProperty(controlRef, &col);
int column = col - kMinColumnId;
le.m_col = column;
- window->GetEventHandler()->ProcessEvent( le );
+ // FIXME: we can't use the sort property for virtual listctrls
+ // so we need to find a better way to determine which column was clicked...
+ if (!window->IsVirtual())
+ window->GetEventHandler()->ProcessEvent( le );
}
result = CallNextEventHandler(handler, event);
break;
if (m_dbImpl)
{
-
wxColumnList::compatibility_iterator node = m_colsInfo.Item( col );
wxASSERT_MSG( node, _T("invalid column index in wxMacListCtrlItem") );
wxListItem* column = node->GetData();
if (m_genericImpl)
return m_genericImpl->GetTopItem();
+ if (m_dbImpl)
+ {
+ int flags = 0;
+ long item = HitTest( wxPoint(1, 1), flags);
+ if (flags == wxLIST_HITTEST_ONITEM)
+ return item;
+ }
+
return 0;
}
if (m_genericImpl)
return m_genericImpl->FindItem(start, str, partial);
- return -1;
+ wxString str_upper = str.Upper();
+
+ long idx = start;
+ if (idx < 0)
+ idx = 0;
+ long count = GetItemCount();
+
+ while (idx < count)
+ {
+ wxString line_upper = GetItemText(idx).Upper();
+ if (!partial)
+ {
+ if (line_upper == str_upper )
+ return idx;
+ }
+ else
+ {
+ if (line_upper.find(str_upper) == 0)
+ return idx;
+ }
+
+ idx++;
+ };
+
+ return wxNOT_FOUND;
}
// Find an item whose data matches this data, starting from the item after 'start'
if (m_genericImpl)
return m_genericImpl->FindItem(start, data);
- long idx = start + 1;
+ long idx = start;
+ if (idx < 0)
+ idx = 0;
long count = GetItemCount();
while (idx < count)
idx++;
};
- return -1;
+ return wxNOT_FOUND;
}
// Find an item nearest this position in the specified direction, starting from
return -1;
}
+int wxListCtrl::GetScrollPos(int orient) const
+{
+ if (m_genericImpl)
+ return m_genericImpl->GetScrollPos(orient);
+
+ if (m_dbImpl)
+ {
+ UInt32 offsetX, offsetY;
+ m_dbImpl->GetScrollPosition( &offsetY, &offsetX );
+ if ( orient == wxHORIZONTAL )
+ return offsetX;
+ else
+ return offsetY;
+ }
+
+ return 0;
+}
// Inserts an item, returning the index of the new item if successful,
// -1 otherwise.
if (m_genericImpl)
return m_genericImpl->InsertItem(info);
- if (m_dbImpl)
+ if (m_dbImpl && !IsVirtual())
{
int count = GetItemCount();
event.SetEventObject( this );
event.m_itemIndex = info.m_itemId;
GetEventHandler()->ProcessEvent( event );
+ return info.m_itemId;
}
-
- return info.m_itemId;
+ return -1;
}
long wxListCtrl::InsertItem(long index, const wxString& label)
// we need to temporarily disable the new item creation notification
// procedure to speed things up
// FIXME: Even this doesn't seem to help much...
+
+ // FIXME: Find a more efficient way to do this.
+ m_dbImpl->MacClear();
+
DataBrowserCallbacks callbacks;
DataBrowserItemNotificationUPP itemUPP;
GetDataBrowserCallbacks(m_dbImpl->GetControlRef(), &callbacks);
RefreshRect(rect);
}
+void wxListCtrl::SetDropTarget( wxDropTarget *dropTarget )
+{
+#if wxUSE_DRAG_AND_DROP
+ if (m_genericImpl)
+ m_genericImpl->SetDropTarget( dropTarget );
+
+ if (m_dbImpl)
+ wxWindow::SetDropTarget( dropTarget );
+#endif
+}
+
+wxDropTarget *wxListCtrl::GetDropTarget() const
+{
+#if wxUSE_DRAG_AND_DROP
+ if (m_genericImpl)
+ return m_genericImpl->GetDropTarget();
+
+ if (m_dbImpl)
+ return wxWindow::GetDropTarget();
+#endif
+ return NULL;
+}
// wxMac internal data structures
ThemeDrawingState savedState = NULL;
CGContextRef context = (CGContextRef)list->MacGetDrawingContext();
RGBColor labelColor;
+ labelColor.red = 0;
+ labelColor.green = 0;
+ labelColor.blue = 0;
+
+ RGBColor backgroundColor;
+ backgroundColor.red = 255;
+ backgroundColor.green = 255;
+ backgroundColor.blue = 255;
GetDataBrowserItemPartBounds(GetControlRef(), itemID, property, kDataBrowserPropertyEnclosingPart,
&enclosingRect);
}
if (itemState == kDataBrowserItemIsSelected)
{
- RGBColor foregroundColor;
GetThemeDrawingState(&savedState);
- GetThemeBrushAsColor(kThemeBrushAlternatePrimaryHighlightColor, 32, true, &foregroundColor);
+ GetThemeBrushAsColor(kThemeBrushAlternatePrimaryHighlightColor, 32, true, &backgroundColor);
GetThemeTextColor(kThemeTextColorWhite, gdDepth, colorDevice, &labelColor);
CGContextSaveGState(context);
- CGContextSetRGBFillColor(context, (float)foregroundColor.red / (float)USHRT_MAX,
- (float)foregroundColor.green / (float)USHRT_MAX,
- (float)foregroundColor.blue / (float)USHRT_MAX, 1.0);
+ CGContextSetRGBFillColor(context, (float)backgroundColor.red / (float)USHRT_MAX,
+ (float)backgroundColor.green / (float)USHRT_MAX,
+ (float)backgroundColor.blue / (float)USHRT_MAX, 1.0);
CGContextFillRect(context, enclosingCGRect);
CGContextRestoreGState(context);
labelColor = MAC_WXCOLORREF( color.GetPixel() );
else if (list->GetTextColour().Ok())
labelColor = MAC_WXCOLORREF( list->GetTextColour().GetPixel() );
- else
- {
- labelColor.red = 0;
- labelColor.green = 0;
- labelColor.blue = 0;
- }
if (bgColor.Ok())
{
- RGBColor foregroundColor = MAC_WXCOLORREF( bgColor.GetPixel() );
+ backgroundColor = MAC_WXCOLORREF( bgColor.GetPixel() );
CGContextSaveGState(context);
- CGContextSetRGBFillColor(context, (float)foregroundColor.red / (float)USHRT_MAX,
- (float)foregroundColor.green / (float)USHRT_MAX,
- (float)foregroundColor.blue / (float)USHRT_MAX, 1.0);
+ CGContextSetRGBFillColor(context, (float)backgroundColor.red / (float)USHRT_MAX,
+ (float)backgroundColor.green / (float)USHRT_MAX,
+ (float)backgroundColor.blue / (float)USHRT_MAX, 1.0);
CGContextFillRect(context, enclosingCGRect);
CGContextRestoreGState(context);
wxBitmap bmp = imageList->GetBitmap(imgIndex);
IconRef icon = bmp.GetBitmapData()->GetIconRef();
- RGBColor iconLabel;
- iconLabel.red = 0;
- iconLabel.green = 0;
- iconLabel.blue = 0;
-
CGContextSaveGState(context);
CGContextTranslateCTM(context, 0,iconCGRect.origin.y + CGRectGetMaxY(iconCGRect));
CGContextScaleCTM(context,1.0f,-1.0f);
PlotIconRefInContext(context, &iconCGRect, kAlignNone,
- active ? kTransformNone : kTransformDisabled, &iconLabel,
+ active ? kTransformNone : kTransformDisabled, NULL,
kPlotIconRefNormalFlags, icon);
CGContextRestoreGState(context);
}
else
{
- event.m_itemIndex = (long)itemID;
+ event.m_itemIndex = (long)itemID-1;
}
switch (message)
{
wxMacListCtrlItem* item = (wxMacListCtrlItem*)itemOneID;
wxMacListCtrlItem* otherItem = (wxMacListCtrlItem*)itemTwoID;
- wxListCtrlCompare func = list->GetCompareFunc();
- long item1 = GetLineFromItem(item);
- long item2 = GetLineFromItem(otherItem);
-
+
// FIXME: This code causes a crash in wxPython for some reason
// and moreover, further testing shows that the column click event
// is only sent to the list ctrl after the native control has finished
// sorting items anyway. So just disable this for now.
+ //wxListCtrlCompare func = list->GetCompareFunc();
+ //long item1 = GetLineFromItem(item);
+ //long item2 = GetLineFromItem(otherItem);
+
//if (func != NULL && item->HasColumnInfo(colId) && otherItem->HasColumnInfo(colId))
// return func(item1, item2, list->GetCompareFuncData()) >= 0;