1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
/*
* skin.cpp - plugin
* Copyright (C) 2010 Evgeny Khryukin
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "skin.h"
#include <QDir>
#include <QMessageBox>
#include <QDomDocument>
void Skin::setFile(QString file)
{
filePass_ = file;
}
QString Skin::filePass()
{
return filePass_;
}
QString Skin::skinFolder()
{
QString folder = filePass_;
int index = folder.lastIndexOf("/");
folder.chop(folder.size() - index);
return folder;
}
QPixmap Skin::previewPixmap()
{
QDir dir(skinFolder());
QString skinName = name();
QPixmap pix = QPixmap();
foreach(QString fileName, dir.entryList(QDir::Files)) {
if((fileName.endsWith(".png", Qt::CaseInsensitive) || fileName.endsWith(".jpg", Qt::CaseInsensitive))
&& skinName.left(skinName.length()-4) == fileName.left(fileName.length()-4)) {
pix = QPixmap(dir.absolutePath() + "/" + fileName);
break;
}
}
return pix;
}
QString Skin::name()
{
QString name = filePass_;
int index = name.lastIndexOf("/");
index = name.size() - index - 1;
name = name.right(index);
return name;
}
//---------------------------------
//---Previewer---------------------
//---------------------------------
Previewer::Previewer(Skin *skin, QWidget *parent)
: QDialog(parent)
, skin_(skin)
{
setAttribute(Qt::WA_DeleteOnClose);
setModal(true);
ui_.setupUi(this);
connect(ui_.pb_close, SIGNAL(released()), this, SLOT(close()));
connect(ui_.pb_apply, SIGNAL(released()), this, SIGNAL(applySkin()));
}
bool Previewer::loadSkinInformation()
{
QFile file(skin_->filePass());
QDomDocument doc;
if(!doc.setContent(&file)) {
QMessageBox::warning(this, tr("Preview Skin"), tr("Skin is not valid!"));
return false;
}
QDomElement elem = doc.documentElement();
if(elem.tagName() != "skin") {
QMessageBox::warning(this, tr("Preview Skin"), tr("Skin is not valid!"));
return false;
}
ui_.lbl_author->setText( elem.attribute("author") );
ui_.lbl_version->setText( elem.attribute("version") );
ui_.lbl_name->setText( elem.attribute("name") );
QPixmap pix = skin_->previewPixmap();
if(!pix.isNull())
ui_.lbl_preview->setPixmap(pix);
return true;
}
//-----------------------------
//------GetSkinName------------
//-----------------------------
GetSkinName::GetSkinName(QString name, QString author, QString version, QWidget *parent)
:QDialog(parent)
{
setAttribute(Qt::WA_DeleteOnClose);
setModal(true);
ui_.setupUi(this);
connect(ui_.pb_cancel, SIGNAL(released()), this, SLOT(close()));
connect(ui_.pb_ok, SIGNAL(released()), this, SLOT(okPressed()));
ui_.le_name->setText(name);
ui_.le_author->setText(author);
ui_.le_version->setText(version);
}
void GetSkinName::okPressed()
{
emit ok(ui_.le_name->text(), ui_.le_author->text(), ui_.le_version->text());
close();
}
|