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

This commit is contained in:
2016-03-01 16:16:40 +00:00
parent 5aae6c947d
commit 64130922ad
6 changed files with 227 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
#include "piintrospector.h"
#include "pifile.h"
#include "pitime.h"
#include "pidir.h"
#include <QClipboard>
QPIIntrospector::QPIIntrospector(QWidget * parent): QMainWindow(parent) {
setupUi(this);
tree->header()->setResizeMode(QHeaderView::ResizeToContents);
}
void QPIIntrospector::changeEvent(QEvent * e) {
QMainWindow::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
retranslateUi(this);
break;
default:
break;
}
}
void QPIIntrospector::buildDump() {
}
void QPIIntrospector::buildDumpSection(QTreeWidgetItem * pi, PIString & str) {
}