modificado el estilo de los splitters y la toolbar de comics

This commit is contained in:
Luis Ángel San Martín
2013-05-26 18:47:37 +02:00
commit 754953cc30
485 changed files with 43643 additions and 0 deletions

24
common/custom_widgets.cpp Normal file
View File

@ -0,0 +1,24 @@
#include "custom_widgets.h"
#include <QDir>
#include <QFileInfo>
void delTree(QDir dir)
{
dir.setFilter(QDir::AllDirs|QDir::Files|QDir::Hidden|QDir::NoDotAndDotDot);
QFileInfoList list = dir.entryInfoList();
for (int i = 0; i < list.size(); ++i)
{
QFileInfo fileInfo = list.at(i);
QString path = fileInfo.filePath();
if(fileInfo.isDir())
{
delTree(QDir(fileInfo.absoluteFilePath()));
dir.rmdir(fileInfo.absoluteFilePath());
}
else
{
dir.remove(fileInfo.absoluteFilePath());
}
}
}