]>
Commit | Line | Data |
---|---|---|
e96bbb45 | 1 | ///////////////////////////////////////////////////////////////////////////// |
e409b62a | 2 | // Name: src/mac/listctrl_mac.cpp |
e96bbb45 KO |
3 | // Purpose: wxListCtrl |
4 | // Author: Julian Smart | |
5 | // Modified by: Agron Selimaj | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_LISTCTRL | |
28 | ||
e409b62a PC |
29 | #include "wx/listctrl.h" |
30 | ||
e96bbb45 | 31 | #ifndef WX_PRECOMP |
e96bbb45 | 32 | #include "wx/intl.h" |
e96bbb45 KO |
33 | #endif |
34 | ||
35 | #include "wx/mac/uma.h" | |
36 | ||
37 | #include "wx/imaglist.h" | |
e96bbb45 | 38 | #include "wx/sysopt.h" |
7ac21a67 | 39 | #include "wx/timer.h" |
e96bbb45 | 40 | |
bc63f2c9 KO |
41 | #include "wx/hashmap.h" |
42 | ||
e96bbb45 KO |
43 | #if wxUSE_EXTENDED_RTTI |
44 | WX_DEFINE_FLAGS( wxListCtrlStyle ) | |
45 | ||
46 | wxBEGIN_FLAGS( wxListCtrlStyle ) | |
47 | // new style border flags, we put them first to | |
48 | // use them for streaming out | |
49 | wxFLAGS_MEMBER(wxBORDER_SIMPLE) | |
50 | wxFLAGS_MEMBER(wxBORDER_SUNKEN) | |
51 | wxFLAGS_MEMBER(wxBORDER_DOUBLE) | |
52 | wxFLAGS_MEMBER(wxBORDER_RAISED) | |
53 | wxFLAGS_MEMBER(wxBORDER_STATIC) | |
54 | wxFLAGS_MEMBER(wxBORDER_NONE) | |
55 | ||
56 | // old style border flags | |
57 | wxFLAGS_MEMBER(wxSIMPLE_BORDER) | |
58 | wxFLAGS_MEMBER(wxSUNKEN_BORDER) | |
59 | wxFLAGS_MEMBER(wxDOUBLE_BORDER) | |
60 | wxFLAGS_MEMBER(wxRAISED_BORDER) | |
61 | wxFLAGS_MEMBER(wxSTATIC_BORDER) | |
62 | wxFLAGS_MEMBER(wxBORDER) | |
63 | ||
64 | // standard window styles | |
65 | wxFLAGS_MEMBER(wxTAB_TRAVERSAL) | |
66 | wxFLAGS_MEMBER(wxCLIP_CHILDREN) | |
67 | wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW) | |
68 | wxFLAGS_MEMBER(wxWANTS_CHARS) | |
69 | wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE) | |
70 | wxFLAGS_MEMBER(wxALWAYS_SHOW_SB ) | |
71 | wxFLAGS_MEMBER(wxVSCROLL) | |
72 | wxFLAGS_MEMBER(wxHSCROLL) | |
73 | ||
74 | wxFLAGS_MEMBER(wxLC_LIST) | |
75 | wxFLAGS_MEMBER(wxLC_REPORT) | |
76 | wxFLAGS_MEMBER(wxLC_ICON) | |
77 | wxFLAGS_MEMBER(wxLC_SMALL_ICON) | |
78 | wxFLAGS_MEMBER(wxLC_ALIGN_TOP) | |
79 | wxFLAGS_MEMBER(wxLC_ALIGN_LEFT) | |
80 | wxFLAGS_MEMBER(wxLC_AUTOARRANGE) | |
81 | wxFLAGS_MEMBER(wxLC_USER_TEXT) | |
82 | wxFLAGS_MEMBER(wxLC_EDIT_LABELS) | |
83 | wxFLAGS_MEMBER(wxLC_NO_HEADER) | |
84 | wxFLAGS_MEMBER(wxLC_SINGLE_SEL) | |
85 | wxFLAGS_MEMBER(wxLC_SORT_ASCENDING) | |
86 | wxFLAGS_MEMBER(wxLC_SORT_DESCENDING) | |
87 | wxFLAGS_MEMBER(wxLC_VIRTUAL) | |
88 | ||
89 | wxEND_FLAGS( wxListCtrlStyle ) | |
90 | ||
91 | IMPLEMENT_DYNAMIC_CLASS_XTI(wxListCtrl, wxControl,"wx/listctrl.h") | |
92 | ||
93 | wxBEGIN_PROPERTIES_TABLE(wxListCtrl) | |
94 | wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent ) | |
95 | ||
96 | wxPROPERTY_FLAGS( WindowStyle , wxListCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style | |
97 | wxEND_PROPERTIES_TABLE() | |
98 | ||
99 | wxBEGIN_HANDLERS_TABLE(wxListCtrl) | |
100 | wxEND_HANDLERS_TABLE() | |
101 | ||
102 | wxCONSTRUCTOR_5( wxListCtrl , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle ) | |
103 | ||
104 | /* | |
105 | Content-type: text/html ]>