]> 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 597d781093a2c62cad60c6fd0fe45fd685c9d320..5eb658e02c0b6c3c1b672ac004b6ecdbabe3ed29 100644 (file)
@@ -72,7 +72,10 @@ public:
                 const wxSize &size = wxDefaultSize,
                 long style = wxLC_ICON,
                 const wxValidator& validator = wxDefaultValidator,
-                const wxString &name = wxT("listctrl") );
+                const wxString &name = wxT("listctrl") )
+    {
+        Create(parent, winid, pos, size, style, validator, name);
+    }
     ~wxGenericListCtrl();
 
     bool Create( wxWindow *parent,
@@ -152,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);
@@ -248,14 +258,17 @@ class WXDLLEXPORT wxListCtrl: public wxGenericListCtrl
     DECLARE_DYNAMIC_CLASS(wxListCtrl)
 
 public:
-    wxListCtrl();
+    wxListCtrl() {}
 
     wxListCtrl(wxWindow *parent, wxWindowID winid = -1,
                const wxPoint& pos = wxDefaultPosition,
                const wxSize& size = wxDefaultSize,
                long style = wxLC_ICON,
                const wxValidator &validator = wxDefaultValidator,
-               const wxString &name = wxT("listctrl") );
+               const wxString &name = wxT("listctrl") )
+    : wxGenericListCtrl(parent, winid, pos, size, style, validator, name)
+    {
+    }
 };
 #endif // !__WXMSW__ || __WIN16__ || __WXUNIVERSAL__