git-svn-id: svn://db.shs.com.ru/libs@82 a8b55f48-bf90-11e4-a774-851b48703e85
This commit is contained in:
31
piqt_tools/piintrospector.cpp
Normal file
31
piqt_tools/piintrospector.cpp
Normal 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) {
|
||||
}
|
||||
Reference in New Issue
Block a user