2
0
forked from Ivasoft/DSView
Files
DSView/DSView/pv/toolbars/filebar.cpp
2021-10-25 16:51:34 +08:00

242 lines
8.0 KiB
C++
Executable File

/*
* This file is part of the DSView project.
* DSView is based on PulseView.
*
* Copyright (C) 2013 DreamSourceLab <support@dreamsourcelab.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; 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 <boost/bind.hpp>
#include <boost/foreach.hpp>
#include <boost/shared_ptr.hpp>
#include <QMetaObject>
#include <QFileDialog>
#include <QApplication>
#include "filebar.h"
#include "../device/devinst.h"
#include "../ui/msgbox.h"
#include <deque>
namespace pv {
namespace toolbars {
FileBar::FileBar(SigSession &session, QWidget *parent) :
QToolBar("File Bar", parent),
_enable(true),
_session(session),
_file_button(this)
{
setMovable(false);
setContentsMargins(0,0,0,0);
_action_load = new QAction(this);
_action_load->setObjectName(QString::fromUtf8("actionLoad"));
_action_store = new QAction(this);
_action_store->setObjectName(QString::fromUtf8("actionStore"));
_action_default = new QAction(this);
_action_default->setObjectName(QString::fromUtf8("actionDefault"));
_menu_session = new QMenu(this);
_menu_session->setObjectName(QString::fromUtf8("menuSession"));
_menu_session->addAction(_action_load);
_menu_session->addAction(_action_store);
_menu_session->addAction(_action_default);
_action_open = new QAction(this);
_action_open->setObjectName(QString::fromUtf8("actionOpen"));
_action_save = new QAction(this);
_action_save->setObjectName(QString::fromUtf8("actionSave"));
_action_export = new QAction(this);
_action_export->setObjectName(QString::fromUtf8("actionExport"));
_action_capture = new QAction(this);
_action_capture->setObjectName(QString::fromUtf8("actionCapture"));
_file_button.setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
_file_button.setPopupMode(QToolButton::InstantPopup);
_menu = new QMenu(this);
_menu->addMenu(_menu_session);
_menu->addAction(_action_open);
_menu->addAction(_action_save);
_menu->addAction(_action_export);
_menu->addAction(_action_capture);
_file_button.setMenu(_menu);
addWidget(&_file_button);
retranslateUi();
connect(_action_load, SIGNAL(triggered()), this, SLOT(on_actionLoad_triggered()));
connect(_action_store, SIGNAL(triggered()), this, SLOT(on_actionStore_triggered()));
connect(_action_default, SIGNAL(triggered()), this, SLOT(on_actionDefault_triggered()));
connect(_action_open, SIGNAL(triggered()), this, SLOT(on_actionOpen_triggered()));
connect(_action_save, SIGNAL(triggered()), this, SIGNAL(on_save()));
connect(_action_export, SIGNAL(triggered()), this, SIGNAL(on_export()));
connect(_action_capture, SIGNAL(triggered()), this, SLOT(on_actionCapture_triggered()));
}
void FileBar::changeEvent(QEvent *event)
{
if (event->type() == QEvent::LanguageChange)
retranslateUi();
else if (event->type() == QEvent::StyleChange)
reStyle();
QToolBar::changeEvent(event);
}
void FileBar::retranslateUi()
{
_file_button.setText(tr("File"));
_menu_session->setTitle(tr("Con&fig..."));
_action_load->setText(tr("&Load..."));
_action_store->setText(tr("S&tore..."));
_action_default->setText(tr("&Default..."));
_action_open->setText(tr("&Open..."));
_action_save->setText(tr("&Save..."));
_action_export->setText(tr("&Export..."));
_action_capture->setText(tr("&Capture..."));
}
void FileBar::reStyle()
{
QString iconPath = ":/icons/" + qApp->property("Style").toString();
_action_load->setIcon(QIcon(iconPath+"/open.svg"));
_action_store->setIcon(QIcon(iconPath+"/save.svg"));
_action_default->setIcon(QIcon(iconPath+"/settings.svg"));
_menu_session->setIcon(QIcon(iconPath+"/settings.svg"));
_action_open->setIcon(QIcon(iconPath+"/open.svg"));
_action_save->setIcon(QIcon(iconPath+"/save.svg"));
_action_export->setIcon(QIcon(iconPath+"/export.svg"));
_action_capture->setIcon(QIcon(iconPath+"/capture.svg"));
_file_button.setIcon(QIcon(iconPath+"/file.svg"));
}
void FileBar::on_actionOpen_triggered()
{
const QString DIR_KEY("OpenPath");
QSettings settings(QApplication::organizationName(), QApplication::applicationName());
// Show the dialog
const QString file_name = QFileDialog::getOpenFileName(
this, tr("Open File"), settings.value(DIR_KEY).toString(), tr(
"DSView Data (*.dsl)"));
if (!file_name.isEmpty()) {
QDir CurrentDir;
settings.setValue(DIR_KEY, CurrentDir.absoluteFilePath(file_name));
load_file(file_name);
}
}
void FileBar::session_error(
const QString text, const QString info_text)
{
QMetaObject::invokeMethod(this, "show_session_error",
Qt::QueuedConnection, Q_ARG(QString, text),
Q_ARG(QString, info_text));
}
void FileBar::show_session_error(
const QString text, const QString info_text)
{
MsgBox::Show(NULL, info_text.toStdString().c_str(), this);
}
void FileBar::on_actionLoad_triggered()
{
const QString DIR_KEY("SessionLoadPath");
QSettings settings(QApplication::organizationName(), QApplication::applicationName());
// Show the dialog
const QString file_name = QFileDialog::getOpenFileName(
this, tr("Open Session"), settings.value(DIR_KEY).toString(), tr(
"DSView Session (*.dsc)"));
if (!file_name.isEmpty()) {
QDir CurrentDir;
settings.setValue(DIR_KEY, CurrentDir.absoluteFilePath(file_name));
load_session(file_name);
}
}
void FileBar::on_actionDefault_triggered()
{
#ifdef Q_OS_LINUX
QDir dir(DS_RES_PATH);
#else
QDir dir(QCoreApplication::applicationDirPath());
assert(dir.cd("res"));
#endif
if (!dir.exists()) {
MsgBox::Show(NULL, "Cannot find default session file for this device!", this);
return;
}
QString driver_name = _session.get_device()->name();
QString mode_name = QString::number(_session.get_device()->dev_inst()->mode);
int language = QLocale::English;
GVariant *gvar_tmp = _session.get_device()->get_config(NULL, NULL, SR_CONF_LANGUAGE);
if (gvar_tmp != NULL) {
language = g_variant_get_int16(gvar_tmp);
g_variant_unref(gvar_tmp);
}
QString file_name = dir.absolutePath() + "/" + driver_name + mode_name +
".def"+QString::number(language)+".dsc";
if (!file_name.isEmpty())
load_session(file_name);
}
void FileBar::on_actionStore_triggered()
{
const QString DIR_KEY("SessionStorePath");
QSettings settings(QApplication::organizationName(), QApplication::applicationName());
QString file_name = QFileDialog::getSaveFileName(
this, tr("Save Session"), settings.value(DIR_KEY).toString(),
tr("DSView Session (*.dsc)"));
if (!file_name.isEmpty()) {
QFileInfo f(file_name);
if(f.suffix().compare("dsc"))
file_name.append(tr(".dsc"));
QDir CurrentDir;
settings.setValue(DIR_KEY, CurrentDir.absoluteFilePath(file_name));
store_session(file_name);
}
}
void FileBar::on_actionCapture_triggered()
{
_file_button.close();
QCoreApplication::sendPostedEvents();
QTimer::singleShot(100, this, SIGNAL(on_screenShot()));
}
void FileBar::enable_toggle(bool enable)
{
_file_button.setDisabled(!enable);
}
void FileBar::set_settings_en(bool enable)
{
_menu_session->setDisabled(!enable);
}
} // namespace toolbars
} // namespace pv