git-svn-id: svn://db.shs.com.ru/libs@83 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2016-03-02 08:08:33 +00:00
parent 64130922ad
commit b4530da86b
4 changed files with 178 additions and 123 deletions

View File

@@ -9,20 +9,28 @@
#include "piqt.h"
#include "piintrospection.h"
class QPIIntrospector: public QMainWindow, private Ui::QPIIntrospector
class QPIIntrospector: public QMainWindow, private Ui::QPIIntrospector, public PIObject
{
Q_OBJECT
PIOBJECT(QPIIntrospector)
public:
QPIIntrospector(QWidget * parent = 0);
protected:
void changeEvent(QEvent * e);
void timerEvent(QTimerEvent * );
void buildDump();
void buildDumpSection(QTreeWidgetItem * pi, PIString & str);
EVENT_HANDLER2(void, peerReceived, const PIString &, from, const PIByteArray &, data);
PIString cur_server;
PIPeer peer;
private slots:
void buildTree(QByteArray d);
void on_listApp_currentRowChanged(int r);
public slots:
};