##// END OF EJS Templates
A lot of cleaning.
A lot of cleaning.

File last commit:

r4:b41a5ed0a855 default
r4:b41a5ed0a855 default
Show More
themisindexfileviewer.cpp
68 lines | 2.3 KiB | text/x-c | CppLexer
/ src / Themis / themisindexfileviewer.cpp
#include "themisindexfileviewer.h"
#include "ui_themisindexfileviewer.h"
#include <QFileDialog>
ThemisIndexFileViewer::ThemisIndexFileViewer(QWidget *parent) :
QWidget(parent),
ui(new Ui::ThemisIndexFileViewer)
{
ui->setupUi(this);
this->indexFile = new ThemisIndexFile();
connect(this->ui->loadFileQpb,SIGNAL(clicked()),this,SLOT(loadFile()));
connect(this->ui->FilteerInput,SIGNAL(textChanged(QString)),this,SLOT(filterCol(QString)));
}
ThemisIndexFileViewer::~ThemisIndexFileViewer()
{
delete this->indexFile;
delete ui;
}
void ThemisIndexFileViewer::filterCol(const QString &pattern)
{
Qt::MatchFlags flag = Qt::MatchContains | Qt::MatchStartsWith | Qt::MatchEndsWith | Qt::MatchRegExp | Qt::MatchWildcard | Qt::MatchWrap |Qt::MatchRecursive;
if(this->ui->FilterCaseSensitive->isChecked())
flag |= Qt::MatchCaseSensitive;
if(pattern.isEmpty())
{
for(int i=0;i<this->ui->IndexView->rowCount();i++)
this->ui->IndexView->setRowHidden(i,false);
}
else
{
for(int i=0;i<this->ui->IndexView->rowCount();i++)
this->ui->IndexView->setRowHidden(i,true);
QList<QTableWidgetItem*> items = this->ui->IndexView->findItems(pattern,flag);
for(int i=0;i<items.count();i++)
this->ui->IndexView->setRowHidden(items.at(i)->row(),false);
}
}
void ThemisIndexFileViewer::loadFile()
{
QList<themmisIndexLine> lines=this->indexFile->loadFile(QFileDialog::getOpenFileName());
this->ui->IndexView->clear();
this->ui->IndexView->setRowCount(lines.count());
this->ui->IndexView->setHorizontalHeaderLabels(QStringList()<<"Dataset ID"<<"File specification name"<<"Product ID"<<"Volume ID"<<"Product Creation Time"<<"Taget name"<<"Start time"<<"Stop time");
for(int i=0;i<lines.count();i++)
{
for(int j=0;j<8;j++)
{
QTableWidgetItem *newItem = new QTableWidgetItem(lines.at(i).cels[j]);
newItem->setFlags(newItem->flags() ^ Qt::ItemIsEditable);
this->ui->IndexView->setItem(i, j, newItem);
}
}
}
void ThemisIndexFileViewer::changeEvent(QEvent *e)
{
QWidget::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}