]> git.saurik.com Git - wxWidgets.git/commitdiff
Add some ownerdraw methods to ListBox for MSW
authorRobin Dunn <robin@alldunn.com>
Fri, 13 Feb 2004 20:21:47 +0000 (20:21 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 13 Feb 2004 20:21:47 +0000 (20:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25788 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_listbox.i

index 7af5eafdea9098b84f61f52735b0486e649234db..51ac30a90e02d2e8c8cc76680c40bbd84c12cb37 100644 (file)
@@ -105,6 +105,28 @@ public:
 
     // return True if this listbox is sorted
     bool IsSorted() const;
+
+
+    %extend {
+        void SetItemForegroundColour(int item, const wxColour& c) {
+            %#ifdef __WXMSW__
+                 if (self->GetWindowStyle() & wxLB_OWNERDRAW)
+                     self->GetItem(item)->SetTextColour(c);
+            %#endif
+        }
+        void SetItemBackgroundColour(int item, const wxColour& c) {
+            %#ifdef __WXMSW__
+                 if (self->GetWindowStyle() & wxLB_OWNERDRAW)
+                     self->GetItem(item)->SetBackgroundColour(c);
+            %#endif
+        }
+        void SetItemFont(int item, const wxFont& f) {
+            %#ifdef __WXMSW__
+                 if (self->GetWindowStyle() & wxLB_OWNERDRAW)
+                     self->GetItem(item)->SetFont(f);
+            %#endif
+        }
+    }
 };