##// END OF EJS Templates
Removed crash on spwplugin while closing the manager thread didn't quit correctly.
Removed crash on spwplugin while closing the manager thread didn't quit correctly.

File last commit:

r60:dbbb04783771 default
r82:f085b545eb20 socexplorer-plugins-0.7-2 default
Show More
dsu3pluginui.cpp
66 lines | 2.3 KiB | text/x-c | CppLexer
First init /!\ outdated spwplugin!
r0 /*------------------------------------------------------------------------------
Jeandet Alexis
updated plugin headers and win32/Apbuart fix tentative.
r4 -- This file is a part of the SocExplorer Software
Jeandet Alexis
Added disconnection auto-detection to the spacewire plugin.
r11 -- Copyright (C) 2013, Plasma Physics Laboratory - CNRS
First init /!\ outdated spwplugin!
r0 --
-- 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 3 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------*/
/*-- Author : Alexis Jeandet
-- Mail : alexis.jeandet@lpp.polytechnique.fr
----------------------------------------------------------------------------*/
#include <dsu3pluginui.h>
dsu3pluginui::dsu3pluginui(QWidget *parent)
:QWidget(parent)
{
this->openFileQpb = new QPushButton(tr("Open File"));
this->flashTargetQpb = new QPushButton(tr("Flash Target"));
this->runQpb = new QPushButton(tr("Run"));
this->mainLayout = new QGridLayout();
dsu3plugin:...
r60 this->elfFileWidgetInst = new elfFileWidget();
First init /!\ outdated spwplugin!
r0 this->mainLayout->addWidget(this->openFileQpb,0,0,1,1);
this->mainLayout->addWidget(this->flashTargetQpb,0,1,1,1);
this->mainLayout->addWidget(this->runQpb,0,2,1,1);
dsu3plugin:...
r60 this->mainLayout->addWidget(this->elfFileWidgetInst,1,0,1,-1);
First init /!\ outdated spwplugin!
r0 this->setLayout(this->mainLayout);
connect(this->openFileQpb,SIGNAL(clicked()),this,SIGNAL(openFile()));
connect(this->flashTargetQpb,SIGNAL(clicked()),this,SIGNAL(flashTarget()));
connect(this->runQpb,SIGNAL(clicked()),this,SIGNAL(run()));
}
Added stop function to dsu3plugin...
r14 void dsu3pluginui::setRunning(bool running)
{
if(running)
this->runQpb->setText("Stop");
else
this->runQpb->setText("Run");
}
First init /!\ outdated spwplugin!
r0
dsu3plugin:...
r60 void dsu3pluginui::updateInfo(ElfFile *file)
{
this->elfFileWidgetInst->setFile(file);
}
First init /!\ outdated spwplugin!
r0
Added stop function to dsu3plugin...
r14