2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* wpa_gui - EventHistory class
|
|
|
|
* Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EVENTHISTORY_H
|
|
|
|
#define EVENTHISTORY_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include "ui_eventhistory.h"
|
|
|
|
|
|
|
|
|
|
|
|
class EventListModel : public QAbstractTableModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
EventListModel(QObject *parent = 0)
|
|
|
|
: QAbstractTableModel(parent) {}
|
|
|
|
|
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
int columnCount(const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation,
|
|
|
|
int role = Qt::DisplayRole) const;
|
|
|
|
void addEvent(QString time, QString msg);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QStringList timeList;
|
|
|
|
QStringList msgList;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class EventHistory : public QDialog, public Ui::EventHistory
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
EventHistory(QWidget *parent = 0, const char *name = 0,
|
|
|
|
bool modal = false, Qt::WFlags fl = 0);
|
|
|
|
~EventHistory();
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
virtual void addEvents(WpaMsgList msgs);
|
|
|
|
virtual void addEvent(WpaMsg msg);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
virtual void languageChange();
|
|
|
|
|
|
|
|
private:
|
|
|
|
EventListModel *elm;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* EVENTHISTORY_H */
|