mirror of
https://github.com/huderlem/porymap.git
synced 2026-09-12 19:05:37 -05:00
Initial connections tab UI redesign
This commit is contained in:
26
include/ui/connectionslistitem.h
Normal file
26
include/ui/connectionslistitem.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#ifndef CONNECTIONSLISTITEM_H
|
||||
#define CONNECTIONSLISTITEM_H
|
||||
|
||||
#include "mapconnection.h"
|
||||
|
||||
#include <QFrame>
|
||||
|
||||
namespace Ui {
|
||||
class ConnectionsListItem;
|
||||
}
|
||||
|
||||
class ConnectionsListItem : public QFrame
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConnectionsListItem(QWidget *parent, const QStringList &mapNames);
|
||||
~ConnectionsListItem();
|
||||
|
||||
void populate(const MapConnection * connection);
|
||||
|
||||
public:
|
||||
Ui::ConnectionsListItem *ui;
|
||||
};
|
||||
|
||||
#endif // CONNECTIONSLISTITEM_H
|
||||
Reference in New Issue
Block a user