forked from openkylin/quarkai
136 lines
3.6 KiB
C++
136 lines
3.6 KiB
C++
/*
|
|
* Copyright (C) 2013 ~ 2015 National University of Defense Technology(NUDT) & Kylin Ltd.
|
|
*
|
|
* Authors:
|
|
* Kobe Lee xiangli@ubuntukylin.com/kobe24_lixiang@126.com
|
|
*
|
|
* 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; version 3.
|
|
*
|
|
* 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "autogroup.h"
|
|
#include "utils.h"
|
|
#include <QPalette>
|
|
|
|
AutoGroup::AutoGroup(QWidget *parent) :
|
|
QWidget(parent)
|
|
{
|
|
this->resize(560, 50);
|
|
splitlabel = new QLabel();
|
|
// splitlabel->setGeometry(QRect(0, this->height(), this->width(), 1));
|
|
splitlabel->setFixedHeight(1);
|
|
splitlabel->setStyleSheet("QLabel{background:#e0e0e0;}");
|
|
|
|
logo_label = new QLabel();
|
|
name_label = new QLabel();
|
|
comment_label = new QLabel();
|
|
switcher = new KylinSwitcher();
|
|
connect(switcher, SIGNAL(clicked()), this, SIGNAL(autoStatusChange()));
|
|
|
|
QVBoxLayout *v_layout = new QVBoxLayout();
|
|
v_layout->addStretch();
|
|
v_layout->addWidget(name_label);
|
|
v_layout->addWidget(comment_label);
|
|
v_layout->addStretch();
|
|
v_layout->setSpacing(5);
|
|
v_layout->setMargin(0);
|
|
v_layout->setContentsMargins(0,0,0,0);
|
|
QHBoxLayout *h_layout = new QHBoxLayout();
|
|
h_layout->addWidget(logo_label);
|
|
h_layout->addLayout(v_layout);
|
|
h_layout->addStretch();
|
|
h_layout->addWidget(switcher);
|
|
h_layout->setSpacing(10);
|
|
h_layout->setMargin(0);//设置总的外围边框
|
|
h_layout->setContentsMargins(0,0,0,0);
|
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout();
|
|
layout->addStretch();
|
|
layout->addLayout(h_layout);
|
|
layout->addWidget(splitlabel);
|
|
layout->addStretch();
|
|
// layout->setSpacing(5);
|
|
layout->setMargin(0);
|
|
layout->setContentsMargins(0,0,0,0);
|
|
|
|
setLayout(layout);
|
|
}
|
|
|
|
AutoGroup::~AutoGroup()
|
|
{
|
|
if(logo_label != NULL)
|
|
{
|
|
delete logo_label;
|
|
logo_label = NULL;
|
|
}
|
|
if(name_label != NULL)
|
|
{
|
|
delete name_label;
|
|
name_label = NULL;
|
|
}
|
|
if(comment_label != NULL)
|
|
{
|
|
delete comment_label;
|
|
comment_label = NULL;
|
|
}
|
|
if(switcher != NULL)
|
|
{
|
|
delete switcher;
|
|
switcher = NULL;
|
|
}
|
|
if(splitlabel != NULL)
|
|
{
|
|
delete splitlabel;
|
|
splitlabel = NULL;
|
|
}
|
|
}
|
|
void AutoGroup::initData(QMap<QString,QString> data)
|
|
{
|
|
dekstopFile = data.value("Path");
|
|
logo_label->setScaledContents(true);//自动缩放,显示图像大小自动调整为Qlabel大小
|
|
if(data.value("Icon").isEmpty())
|
|
{
|
|
QPixmap label_pixmap("://res/ubuntukylin.png");
|
|
logo_label->setPixmap(label_pixmap);
|
|
}
|
|
else
|
|
{
|
|
QPixmap label_pixmap(data.value("Icon"));
|
|
logo_label->setPixmap(label_pixmap);
|
|
}
|
|
// logo_label->setFixedSize(label_pixmap.size());
|
|
logo_label->setFixedSize(40, 40);
|
|
name_label->setText(data.value("Name"));
|
|
if(data.value("Comment").isEmpty())
|
|
{
|
|
comment_label->setText(data.value("NONE"));
|
|
}
|
|
else
|
|
{
|
|
comment_label->setText(data.value("Comment"));
|
|
}
|
|
|
|
if(data.value("Status") == "true")
|
|
switcher->switchedOn = true;
|
|
else
|
|
switcher->switchedOn = false;
|
|
}
|
|
|
|
bool AutoGroup::getSwitcherStatus()
|
|
{
|
|
if(switcher->switchedOn == true)
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|