| 37 | type GetListData func() []uiCommon.IData |
| 38 | |
| 39 | type DataListView struct { |
| 40 | masterUI masterUIInterface.MasterUIInterface |
| 41 | parentView DataListViewInterface |
| 42 | detailView DataListViewInterface |
| 43 | name string |
| 44 | topMargin int |
| 45 | bottomMargin int |
| 46 | eventProcessor *eventdata.EventProcessor |
| 47 | mdGlobalMgr *metadata.GlobalManager |
| 48 | mu sync.Mutex |
| 49 | listWidget *uiCommon.ListWidget |
| 50 | initialized bool |
| 51 | Title string |
| 52 | titleFunc GetTitleFunc |
| 53 | HelpText string |
| 54 | HelpTextTips string |
| 55 | InitializeCallback initializeCallback |
| 56 | UpdateHeaderCallback updateHeaderCallback |
| 57 | PreRowDisplayCallback preRowDisplayCallback |
| 58 | columnOwner IColumnOwner |
| 59 | |
| 60 | RefreshDisplayCallback refreshDisplayCallback |
| 61 | GetListData GetListData |
| 62 | } |
| 63 | |
| 64 | func NewDataListView(masterUI masterUIInterface.MasterUIInterface, |
| 65 | parentView DataListViewInterface, |
nothing calls this directly
no outgoing calls
no test coverage detected