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