2
0
forked from Ivasoft/DSView
Files
DSView/DSLogic-gui/pv/widgets/decodergroupbox.cpp
DreamSourceLab 9eb36b33b9 v0.4 release
2014-09-24 18:43:42 +08:00

70 lines
2.0 KiB
C++

/*
* This file is part of the PulseView project.
*
* Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
*
* 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 program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "decodergroupbox.h"
#include <QHBoxLayout>
#include <QLabel>
#include <QPushButton>
#include <QVBoxLayout>
#include <assert.h>
namespace pv {
namespace widgets {
DecoderGroupBox::DecoderGroupBox(QString title, QWidget *parent) :
QWidget(parent),
_layout(new QGridLayout),
_show_hide_button(QIcon(":/icons/decoder-shown.png"), QString(), this)
{
_layout->setContentsMargins(0, 0, 0, 0);
setLayout(_layout);
_layout->addWidget(new QLabel(QString("<h3>%1</h3>").arg(title)),
0, 0);
_layout->setColumnStretch(0, 1);
QHBoxLayout *const toolbar = new QHBoxLayout;
_layout->addLayout(toolbar, 0, 1);
_show_hide_button.setFlat(true);
//_show_hide_button.setIconSize(QSize(16, 16));
connect(&_show_hide_button, SIGNAL(clicked()),
this, SIGNAL(show_hide_decoder()));
toolbar->addWidget(&_show_hide_button);
}
void DecoderGroupBox::add_layout(QLayout *layout)
{
assert(layout);
_layout->addLayout(layout, 1, 0, 1, 2);
}
void DecoderGroupBox::set_decoder_visible(bool visible)
{
_show_hide_button.setIcon(QIcon(visible ?
":/icons/decoder-shown.png" :
":/icons/decoder-hidden.png"));
}
} // widgets
} // pv