00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 void EventHistory::init()
00014 {
00015 }
00016
00017
00018 void EventHistory::destroy()
00019 {
00020 }
00021
00022
00023 void EventHistory::addEvents(WpaMsgList msgs)
00024 {
00025 WpaMsgList::iterator it;
00026 for (it = msgs.begin(); it != msgs.end(); it++) {
00027 addEvent(*it);
00028 }
00029 }
00030
00031
00032 void EventHistory::addEvent(WpaMsg msg)
00033 {
00034 Q3ListViewItem *item;
00035 item = new Q3ListViewItem(eventListView,
00036 msg.getTimestamp().toString("yyyy-MM-dd hh:mm:ss.zzz"),
00037 msg.getMsg());
00038 if (item == NULL)
00039 return;
00040 eventListView->setSelected(item, false);
00041 }