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

This commit is contained in:
2017-05-16 14:16:43 +00:00
parent 2e3f59a994
commit 2842826816
150 changed files with 762 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
#ifndef PIINTROSPECTOR_H
#define PIINTROSPECTOR_H
#include "ui_piintrospector.h"
#include <QImage>
#include <QTime>
#include <QDesktopWidget>
#include <QDebug>
#include "piqt.h"
#include "piintrospection.h"
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 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:
};
#endif // PIINTROSPECTOR_H