init
This commit is contained in:
19
ui/generic/linklist.h
Normal file
19
ui/generic/linklist.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef LINKLIST_H
|
||||
#define LINKLIST_H
|
||||
|
||||
#include <QListWidget>
|
||||
|
||||
class LinkList : public QListWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
LinkList(QWidget* parent);
|
||||
|
||||
void addLink(const QString& text, const QString& url);
|
||||
|
||||
protected slots:
|
||||
void showWebPage(QListWidgetItem*);
|
||||
};
|
||||
|
||||
#endif // LINKLIST_H
|
||||
Reference in New Issue
Block a user