1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface file for wxListCtrl and related classes
7 // Created: 10-June-1998
9 // Copyright: (c) 2002 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
19 #include <wx/listctrl.h>
21 const wxChar* wxListCtrlNameStr = _T("wxListCtrl");
22 DECLARE_DEF_STRING(ListCtrlNameStr);
25 //---------------------------------------------------------------------------
56 // Mask flags to tell app/GUI what fields of wxListItem are valid
65 // State flags for indicating the state of an item
66 wxLIST_STATE_DONTCARE,
67 wxLIST_STATE_DROPHILITED,
69 wxLIST_STATE_SELECTED,
71 wxLIST_STATE_DISABLED,
72 wxLIST_STATE_FILTERED,
77 // Hit test flags, used in HitTest
80 wxLIST_HITTEST_NOWHERE,
81 wxLIST_HITTEST_ONITEMICON,
82 wxLIST_HITTEST_ONITEMLABEL,
83 wxLIST_HITTEST_ONITEMRIGHT,
84 wxLIST_HITTEST_ONITEMSTATEICON,
85 wxLIST_HITTEST_TOLEFT,
86 wxLIST_HITTEST_TORIGHT,
87 wxLIST_HITTEST_ONITEM,
91 // Flags for GetNextItem (MSW only except wxLIST_NEXT_ALL)
94 wxLIST_NEXT_ABOVE, // Searches for an item above the specified item
95 wxLIST_NEXT_ALL, // Searches for subsequent item by index
96 wxLIST_NEXT_BELOW, // Searches for an item below the specified item
97 wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item
98 wxLIST_NEXT_RIGHT // Searches for an item to the right of the specified item
101 // Alignment flags for Arrange (MSW only except wxLIST_ALIGN_LEFT)
104 wxLIST_ALIGN_DEFAULT,
107 wxLIST_ALIGN_SNAP_TO_GRID
110 // Column format (MSW only except wxLIST_FORMAT_LEFT)
111 enum wxListColumnFormat
115 wxLIST_FORMAT_CENTRE,
116 wxLIST_FORMAT_CENTER = wxLIST_FORMAT_CENTRE
119 // Autosize values for SetColumnWidth
122 wxLIST_AUTOSIZE = -1,
123 wxLIST_AUTOSIZE_USEHEADER = -2 // partly supported by generic version
126 // Flag values for GetItemRect
134 // Flag values for FindItem (MSW only)
145 //---------------------------------------------------------------------------
148 // wxListItemAttr: a structure containing the visual attributes of an item
154 wxListItemAttr(const wxColour& colText = wxNullColour,
155 const wxColour& colBack = wxNullColour,
156 const wxFont& font = wxNullFont);
160 void SetTextColour(const wxColour& colText);
161 void SetBackgroundColour(const wxColour& colBack);
162 void SetFont(const wxFont& font);
165 bool HasTextColour();
166 bool HasBackgroundColour();
169 wxColour GetTextColour();
170 wxColour GetBackgroundColour();
173 %extend { void Destroy() { delete self; } }
179 //---------------------------------------------------------------------------
183 // wxListItem: the item or column info, used to exchange data with wxListCtrl
184 class wxListItem : public wxObject {
191 void ClearAttributes();
194 void SetMask(long mask);
196 void SetColumn(int col);
197 void SetState(long state);
198 void SetStateMask(long stateMask);
199 void SetText(const wxString& text);
200 void SetImage(int image);
201 void SetData(long data);
203 void SetWidth(int width);
204 void SetAlign(wxListColumnFormat align);
206 void SetTextColour(const wxColour& colText);
207 void SetBackgroundColour(const wxColour& colBack);
208 void SetFont(const wxFont& font);
215 const wxString& GetText();
220 wxListColumnFormat GetAlign();
222 wxListItemAttr *GetAttributes();
223 bool HasAttributes();
225 wxColour GetTextColour() const;
226 wxColour GetBackgroundColour() const;
227 wxFont GetFont() const;
229 // these members are public for compatibility
230 long m_mask; // Indicates what fields are valid
231 long m_itemId; // The zero-based item position
232 int m_col; // Zero-based column, if in report mode
233 long m_state; // The state of the item
234 long m_stateMask;// Which flags of m_state are valid (uses same flags)
235 wxString m_text; // The label/header text
236 int m_image; // The zero-based index into an image list
237 long m_data; // App-defined data
240 int m_format; // left, right, centre
241 int m_width; // width of column
246 //---------------------------------------------------------------------------
250 // wxListEvent - the event class for the wxListCtrl notifications
251 class wxListEvent: public wxNotifyEvent {
253 wxListEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
265 %pythoncode { GetCode = GetKeyCode }
269 %pythoncode { GetPosition = GetPoint }
270 const wxString& GetLabel();
271 const wxString& GetText();
275 const wxListItem& GetItem();
280 // was label editing canceled? (for wxEVT_COMMAND_LIST_END_LABEL_EDIT only)
281 bool IsEditCancelled() const;
282 void SetEditCanceled(bool editCancelled);
285 /* List control event types */
286 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_DRAG;
287 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_RDRAG;
288 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
289 %constant wxEventType wxEVT_COMMAND_LIST_END_LABEL_EDIT;
290 %constant wxEventType wxEVT_COMMAND_LIST_DELETE_ITEM;
291 %constant wxEventType wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
292 %constant wxEventType wxEVT_COMMAND_LIST_GET_INFO;
293 %constant wxEventType wxEVT_COMMAND_LIST_SET_INFO;
294 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_SELECTED;
295 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_DESELECTED;
296 %constant wxEventType wxEVT_COMMAND_LIST_KEY_DOWN;
297 %constant wxEventType wxEVT_COMMAND_LIST_INSERT_ITEM;
298 %constant wxEventType wxEVT_COMMAND_LIST_COL_CLICK;
299 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
300 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK;
301 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
302 %constant wxEventType wxEVT_COMMAND_LIST_CACHE_HINT;
303 %constant wxEventType wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
304 %constant wxEventType wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
305 %constant wxEventType wxEVT_COMMAND_LIST_COL_DRAGGING;
306 %constant wxEventType wxEVT_COMMAND_LIST_COL_END_DRAG;
307 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_FOCUSED;
313 EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG , 1)
314 EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG , 1)
315 EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT , 1)
316 EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT , 1)
317 EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM , 1)
318 EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS , 1)
319 EVT_LIST_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO , 1)
320 EVT_LIST_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO , 1)
321 EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED , 1)
322 EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED , 1)
323 EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN , 1)
324 EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM , 1)
325 EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK , 1)
326 EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK , 1)
327 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 1)
328 EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED , 1)
329 EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT , 1)
330 EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK , 1)
331 EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG , 1)
332 EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING , 1)
333 EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG , 1)
334 EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED , 1)
337 //---------------------------------------------------------------------------
341 %{ // Python aware sorting function for wxPyListCtrl
342 static int wxCALLBACK wxPyListCtrl_SortItems(long item1, long item2, long funcPtr) {
344 PyObject* func = (PyObject*)funcPtr;
345 wxPyBeginBlockThreads();
347 PyObject* args = Py_BuildValue("(ii)", item1, item2);
348 PyObject* result = PyEval_CallObject(func, args);
351 retval = PyInt_AsLong(result);
355 wxPyEndBlockThreads();
362 %{ // C++ Version of a Python aware class
363 class wxPyListCtrl : public wxListCtrl {
364 DECLARE_ABSTRACT_CLASS(wxPyListCtrl);
366 wxPyListCtrl() : wxListCtrl() {}
367 wxPyListCtrl(wxWindow* parent, wxWindowID id,
371 const wxValidator& validator,
372 const wxString& name) :
373 wxListCtrl(parent, id, pos, size, style, validator, name) {}
375 bool Create(wxWindow* parent, wxWindowID id,
379 const wxValidator& validator,
380 const wxString& name) {
381 return wxListCtrl::Create(parent, id, pos, size, style, validator, name);
384 DEC_PYCALLBACK_STRING_LONGLONG(OnGetItemText);
385 DEC_PYCALLBACK_INT_LONG(OnGetItemImage);
386 DEC_PYCALLBACK_LISTATTR_LONG(OnGetItemAttr);
391 IMPLEMENT_ABSTRACT_CLASS(wxPyListCtrl, wxListCtrl);
393 IMP_PYCALLBACK_STRING_LONGLONG(wxPyListCtrl, wxListCtrl, OnGetItemText);
394 IMP_PYCALLBACK_INT_LONG(wxPyListCtrl, wxListCtrl, OnGetItemImage);
395 IMP_PYCALLBACK_LISTATTR_LONG(wxPyListCtrl, wxListCtrl, OnGetItemAttr);
402 %name(ListCtrl)class wxPyListCtrl : public wxControl {
405 %addtofunc wxPyListCtrl "self._setOORInfo(self);self._setCallbackInfo(self, ListCtrl)"
406 %addtofunc wxPyListCtrl() ""
408 wxPyListCtrl(wxWindow* parent, wxWindowID id = -1,
409 const wxPoint& pos = wxDefaultPosition,
410 const wxSize& size = wxDefaultSize,
411 long style = wxLC_ICON,
412 const wxValidator& validator = wxDefaultValidator,
413 const wxString& name = wxPyListCtrlNameStr);
414 %name(PreListCtrl)wxPyListCtrl();
416 bool Create(wxWindow* parent, wxWindowID id = -1,
417 const wxPoint& pos = wxDefaultPosition,
418 const wxSize& size = wxDefaultSize,
419 long style = wxLC_ICON,
420 const wxValidator& validator = wxDefaultValidator,
421 const wxString& name = wxPyListCtrlNameStr);
423 void _setCallbackInfo(PyObject* self, PyObject* _class);
426 // Set the control colours
427 bool SetForegroundColour(const wxColour& col);
428 bool SetBackgroundColour(const wxColour& col);
430 // Gets information about this column
431 %addtofunc GetColumn "if val is not None: val.thisown = 1"; // %newobject doesn't work with OOR typemap
433 wxListItem* GetColumn(int col) {
435 item.SetMask( wxLIST_MASK_STATE |
443 if (self->GetColumn(col, item))
444 return new wxListItem(item);
450 // Sets information about this column
451 bool SetColumn(int col, wxListItem& item) ;
453 // Gets the column width
454 int GetColumnWidth(int col) const;
456 // Sets the column width
457 bool SetColumnWidth(int col, int width) ;
459 // Gets the number of items that can fit vertically in the
460 // visible area of the list control (list or report view)
461 // or the total number of items in the list control (icon
462 // or small icon view)
463 int GetCountPerPage() const;
465 // return the total area occupied by all the items (icon/small icon only)
466 wxRect GetViewRect() const;
469 // Gets the edit control for editing labels.
470 wxTextCtrl* GetEditControl() const;
473 // Gets information about the item
474 %addtofunc GetItem "if val is not None: val.thisown = 1"; // %newobject doesn't work with OOR typemap
476 wxListItem* GetItem(long itemId, int col=0) {
477 wxListItem* info = new wxListItem;
478 info->m_itemId = itemId;
480 info->m_mask = 0xFFFF;
481 self->GetItem(*info);
486 // Sets information about the item
487 bool SetItem(wxListItem& info) ;
489 // Sets a string field at a particular column
490 %name(SetStringItem)long SetItem(long index, int col, const wxString& label, int imageId = -1);
492 // Gets the item state
493 int GetItemState(long item, long stateMask) const ;
495 // Sets the item state
496 bool SetItemState(long item, long state, long stateMask) ;
498 // Sets the item image
499 bool SetItemImage(long item, int image, int selImage) ;
501 // Gets the item text
502 wxString GetItemText(long item) const ;
504 // Sets the item text
505 void SetItemText(long item, const wxString& str) ;
507 // Gets the item data
508 long GetItemData(long item) const ;
510 // Sets the item data
511 bool SetItemData(long item, long data) ;
514 //bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;
515 //bool GetItemPosition(long item, wxPoint& pos) const ;
517 // Gets the item position
519 wxPoint GetItemPosition(long item) {
521 self->GetItemPosition(item, pos);
524 // Gets the item rectangle
525 wxRect GetItemRect(long item, int code = wxLIST_RECT_BOUNDS) {
527 self->GetItemRect(item, rect, code);
533 // Sets the item position
534 bool SetItemPosition(long item, const wxPoint& pos) ;
536 // Gets the number of items in the list control
537 int GetItemCount() const;
539 // Gets the number of columns in the list control
540 int GetColumnCount() const;
542 // get the horizontal and vertical components of the item spacing
543 wxSize GetItemSpacing() const;
546 void SetItemSpacing( int spacing, bool isSmall = False );
549 // Gets the number of selected items in the list control
550 int GetSelectedItemCount() const;
552 // Gets the text colour of the listview
553 wxColour GetTextColour() const;
555 // Sets the text colour of the listview
556 void SetTextColour(const wxColour& col);
558 // Gets the index of the topmost visible item when in
559 // list or report view
560 long GetTopItem() const ;
562 // Add or remove a single window style
563 void SetSingleStyle(long style, bool add = True) ;
565 // Set the whole window style
566 void SetWindowStyleFlag(long style) ;
568 // Searches for an item, starting from 'item'.
569 // item can be -1 to find the first item that matches the
571 // Returns the item or -1 if unsuccessful.
572 long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ;
574 // Gets one of the three image lists
575 wxImageList *GetImageList(int which) const ;
577 // Sets the image list
578 void SetImageList(wxImageList *imageList, int which);
580 // is there a way to tell SWIG to disown this???
582 %addtofunc AssignImageList "args[1].thisown = 0";
583 void AssignImageList(wxImageList *imageList, int which);
585 // returns True if it is a virtual list control
586 bool IsVirtual() const;
588 // refresh items selectively (only useful for virtual list controls)
589 void RefreshItem(long item);
590 void RefreshItems(long itemFrom, long itemTo);
592 // Arranges the items
593 bool Arrange(int flag = wxLIST_ALIGN_DEFAULT);
596 bool DeleteItem(long item);
599 bool DeleteAllItems() ;
602 bool DeleteColumn(int col);
604 // Deletes all columns
605 bool DeleteAllColumns();
607 // Clears items, and columns if there are any.
612 wxTextCtrl* EditLabel(long item /*, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl)*/);
614 // End label editing, optionally cancelling the edit
615 bool EndEditLabel(bool cancel);
617 void EditLabel(long item);
620 // Ensures this item is visible
621 bool EnsureVisible(long item) ;
623 // Find an item whose label matches this string, starting from the item after 'start'
624 // or the beginning if 'start' is -1.
625 long FindItem(long start, const wxString& str, bool partial = False);
627 // Find an item whose data matches this data, starting from the item after 'start'
628 // or the beginning if 'start' is -1.
629 %name(FindItemData) long FindItem(long start, long data);
631 // Find an item nearest this position in the specified direction, starting from
632 // the item after 'start' or the beginning if 'start' is -1.
633 %name(FindItemAtPos) long FindItem(long start, const wxPoint& pt, int direction);
637 long, HitTest(const wxPoint& point, int& OUTPUT),
638 "HitTest(Point point) -> (item, where)",
639 "Determines which item (if any) is at the specified point,\n"
640 "giving details in the second return value (see wxLIST_HITTEST_... flags.)");
642 // Inserts an item, returning the index of the new item if successful,
644 long InsertItem(wxListItem& info);
646 // Insert a string item
647 %name(InsertStringItem) long InsertItem(long index, const wxString& label);
649 // Insert an image item
650 %name(InsertImageItem) long InsertItem(long index, int imageIndex);
652 // Insert an image/string item
653 %name(InsertImageStringItem) long InsertItem(long index, const wxString& label, int imageIndex);
655 // For list view mode (only), inserts a column.
656 %name(InsertColumnInfo) long InsertColumn(long col, wxListItem& info);
658 long InsertColumn(long col,
659 const wxString& heading,
660 int format = wxLIST_FORMAT_LEFT,
663 // set the number of items in a virtual list control
664 void SetItemCount(long count);
666 // Scrolls the list control. If in icon, small icon or report view mode,
667 // x specifies the number of pixels to scroll. If in list view mode, x
668 // specifies the number of columns to scroll.
669 // If in icon, small icon or list view mode, y specifies the number of pixels
670 // to scroll. If in report view mode, y specifies the number of lines to scroll.
671 bool ScrollList(int dx, int dy);
673 void SetItemTextColour( long item, const wxColour& col);
674 wxColour GetItemTextColour( long item ) const;
675 void SetItemBackgroundColour( long item, const wxColour &col);
676 wxColour GetItemBackgroundColour( long item ) const;
682 def Select(self, idx, on=1):
683 '''[de]select an item'''
684 if on: state = wx.LIST_STATE_SELECTED
686 self.SetItemState(idx, state, wx.LIST_STATE_SELECTED)
688 def Focus(self, idx):
689 '''Focus and show the given item'''
690 self.SetItemState(idx, wx.LIST_STATE_FOCUSED, wx.LIST_STATE_FOCUSED)
691 self.EnsureVisible(idx)
693 def GetFocusedItem(self):
694 '''get the currently focused item or -1 if none'''
695 return self.GetNextItem(-1, wx.LIST_NEXT_ALL, wx.LIST_STATE_FOCUSED)
697 def GetFirstSelected(self, *args):
698 '''return first selected item, or -1 when none'''
699 return self.GetNextSelected(-1)
701 def GetNextSelected(self, item):
702 '''return subsequent selected items, or -1 when no more'''
703 return self.GetNextItem(item, wx.LIST_NEXT_ALL, wx.LIST_STATE_SELECTED)
705 def IsSelected(self, idx):
706 '''return True if the item is selected'''
707 return self.GetItemState(idx, wx.LIST_STATE_SELECTED) != 0
709 def SetColumnImage(self, col, image):
710 item = self.GetColumn(col)
711 %# preserve all other attributes too
712 item.SetMask( wx.LIST_MASK_STATE |
718 wx.LIST_MASK_FORMAT )
720 self.SetColumn(col, item)
722 def ClearColumnImage(self, col):
723 self.SetColumnImage(col, -1)
725 def Append(self, entry):
726 '''Append an item to the list control. The entry parameter should be a
727 sequence with an item for each column'''
733 pos = self.GetItemCount()
734 self.InsertStringItem(pos, cvtfunc(entry[0]))
735 for i in range(1, len(entry)):
736 self.SetStringItem(pos, i, cvtfunc(entry[i]))
741 // bool SortItems(wxListCtrlCompare fn, long data);
744 // func is a function which takes 2 long arguments: item1, item2.
745 // item1 is the long data associated with a first item (NOT the index).
746 // item2 is the long data associated with a second item (NOT the index).
747 // The return value is a negative number if the first item should precede the second
748 // item, a positive number of the second item should precede the first,
749 // or zero if the two items are equivalent.
750 bool SortItems(PyObject* func) {
751 if (!PyCallable_Check(func))
753 return self->SortItems((wxListCtrlCompare)wxPyListCtrl_SortItems, (long)func);
759 wxWindow* GetMainWindow() {
763 return (wxWindow*)self->m_mainWin;
771 //---------------------------------------------------------------------------
775 // wxListView: a class which provides a little better API for list control
776 class wxListView : public wxPyListCtrl
779 %addtofunc wxListView "self._setOORInfo(self)"
780 %addtofunc wxListView() ""
782 wxListView( wxWindow *parent,
784 const wxPoint& pos = wxDefaultPosition,
785 const wxSize& size = wxDefaultSize,
786 long style = wxLC_REPORT,
787 const wxValidator& validator = wxDefaultValidator,
788 const wxString& name = wxPyListCtrlNameStr);
789 %name(PreListView)wxListView();
791 bool Create( wxWindow *parent,
793 const wxPoint& pos = wxDefaultPosition,
794 const wxSize& size = wxDefaultSize,
795 long style = wxLC_REPORT,
796 const wxValidator& validator = wxDefaultValidator,
797 const wxString& name = wxPyListCtrlNameStr);
799 // [de]select an item
800 void Select(long n, bool on = True);
802 // focus and show the given item
803 void Focus(long index);
805 // get the currently focused item or -1 if none
806 long GetFocusedItem() const;
808 // get first and subsequent selected items, return -1 when no more
809 long GetNextSelected(long item) const;
810 long GetFirstSelected() const;
812 // return True if the item is selected
813 bool IsSelected(long index);
815 void SetColumnImage(int col, int image);
816 void ClearColumnImage(int col);
821 //---------------------------------------------------------------------------
824 // Map renamed classes back to their common name for OOR
825 wxPyPtrTypeMap_Add("wxListCtrl", "wxPyListCtrl");
828 //---------------------------------------------------------------------------