be05b43451
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42925 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
42 lines
2.8 KiB
Python
42 lines
2.8 KiB
Python
|
|
# Just some simple data structures for the report mode listctrl examples
|
|
|
|
columns = ["Request ID", "Summary", "Date", "Submitted By"]
|
|
|
|
rows = [
|
|
("987441", "additions to RTTI?", "2004-07-08 10:22", "g00fy"),
|
|
("846368", "wxTextCtrl - disable auto-scrolling", "2003-11-20 21:25", "ryannpcs"),
|
|
("846367", "Less flicker when resizing a window", "2003-11-20 21:24", "ryannpcs"),
|
|
("846366", "Wishlist - wxDbGetConnection return value", "2003-11-20 21:23", "ryannpcs"),
|
|
("846364", "wxPostscriptDC with floating point coordinates", "2003-11-20 21:22", "ryannpcs"),
|
|
("846363", "Wishlist - Better wxString Formatting", "2003-11-20 21:22", "ryannpcs"),
|
|
("846362", "Wishlist - Crossplatform wxRichText Widget", "2003-11-20 21:20", "ryannpcs"),
|
|
("953341", "Support for paper trays when printing", "2004-05-13 08:01", "tonye"),
|
|
("952466", "mac menu - Window menu", "2004-05-12 03:19", "pimbuur"),
|
|
("928899", "FloatCanvas demo should work with numarray", "2004-04-03 08:30", "glchapman"),
|
|
("912714", "wxGrid: Support for Search / Replace", "2004-03-09 05:46", "rclund"),
|
|
("901061", "wxComboBox - add small icons as in MSW CComboBoxEx ", "2004-02-20 04:04", "tomash"),
|
|
("900768", "Please add more codepages support to your source built", "2004-02-19 15:49", "jsat66"),
|
|
("894921", "trigger on event-system creation", "2004-02-11 08:10", "g00fy"),
|
|
("869808", "HitTest in wxCheckListBox", "2004-01-03 01:22", "dickkniep"),
|
|
("863306", "wxGrid - Thaw/Freeze column/row", "2003-12-19 17:54", "zinit"),
|
|
("975435", "wxMenu anchor right position in wxMenuBar", "2004-06-18 08:44", "jmt2715"),
|
|
("969811", "wxColourEnumerator", "2004-06-09 11:41", "wyo"),
|
|
("959849", "wx.Grid gridlines past max row/col", "2004-05-24 19:39", "dodywijaya"),
|
|
("959158", "wxGrid: Arbitrary controls in the grid", "2004-05-23 16:56", "somecoder"),
|
|
("953824", "mac menu - Window menu", "2004-05-14 02:06", "pimbuur"),
|
|
("863301", "wxTextCtrl - edit mode", "2003-12-19 17:48", "zinit"),
|
|
("855902", "virtual window classes", "2003-12-07 12:39", "cursorstar"),
|
|
("852379", "wxGrid row/col size limits", "2003-12-01 15:47", "jbrouwers"),
|
|
("846375", "wxGraphicsPath", "2003-11-20 21:30", "ryannpcs"),
|
|
("846374", "wxToolBar - return tool at position", "2003-11-20 21:29", "ryannpcs"),
|
|
("846373", "Scrolling improvements", "2003-11-20 21:28", "ryannpcs"),
|
|
("846372", "Hooks for standard remote events", "2003-11-20 21:27", "ryannpcs"),
|
|
("846370", "wxDial - dial widget", "2003-11-20 21:27", "ryannpcs"),
|
|
("846369", "wxGird - auto-scrolling", "2003-11-20 21:26", "ryannpcs"),
|
|
("846361", "Wishlist - wxStaticText that takes fonts, colors, etc.", "2003-11-20 21:19", "ryannpcs"),
|
|
("819559", "wxListCtrl column widths in wxLC_ICON mode ", "2003-10-07 13:34", "nwmoriarty"),
|
|
("817429", "OS X wheel mouse", "2003-10-03 14:05", "mdcowles"),
|
|
]
|
|
|