32 lines
577 B
C++
32 lines
577 B
C++
#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) {
|
|
}
|