]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/listctrl.h
make things simpler, no default variant
[wxWidgets.git] / include / wx / generic / listctrl.h
index b07e8242779fdb5d4d89ad101a55fa85cdd3a14e..5eb658e02c0b6c3c1b672ac004b6ecdbabe3ed29 100644 (file)
@@ -155,8 +155,15 @@ public:
     bool SortItems( wxListCtrlCompare fn, long data );
     bool Update( long item );
 
-    // returns true if it is a virtual list control
-    bool IsVirtual() const { return (GetWindowStyle() & wxLC_VIRTUAL) != 0; }
+    // are we in report mode?
+    bool InReportView() const { return HasFlag(wxLC_REPORT); }
+
+    // are we in virtual report mode?
+    bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL); }
+
+    // do we have a header window?
+    bool HasHeader() const
+        { return InReportView() && !HasFlag(wxLC_NO_HEADER); }
 
     // refresh items selectively (only useful for virtual list controls)
     void RefreshItem(long item);