genericrwplugin.cpp
61 lines
| 3.0 KiB
| text/x-c
|
CppLexer
/ genericrwplugin / genericrwplugin.cpp
r0 | /*------------------------------------------------------------------------------ | |||
Jeandet Alexis
|
r4 | -- This file is a part of the SocExplorer Software | ||
r0 | -- Copyright (C) 2011, Laboratory of Plasmas Physic - CNRS | |||
-- | ||||
-- 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 "genericrwplugin.h" | ||||
#include "genericrwpluginpywrapper.h" | ||||
genericrwplugin::genericrwplugin(QWidget *parent):socexplorerplugin(parent,false) | ||||
{ | ||||
this->UI = new genericrwpluginUi(); | ||||
this->setWidget((QWidget*)this->UI); | ||||
connect(this->UI,SIGNAL(ReadSig(uint*,uint,uint)),this,SLOT(Read(uint*,uint,uint))); | ||||
connect(this->UI,SIGNAL(WriteSig(uint*,uint,uint)),this,SLOT(Write(uint*,uint,uint))); | ||||
this->pyObject = new genericRWpluginPyWrapper(this); | ||||
//QObject::connect(this->pyObject,SIGNAL(ReadSig(uint*,uint,uint)),this,SLOT(Read(uint*,uint,uint))); | ||||
//QObject::connect(this->pyObject,SIGNAL(WriteSig(uint*,uint,uint)),this,SLOT(Write(uint*,uint,uint))); | ||||
QObject::connect(((genericRWpluginPyWrapper*)this->pyObject),SIGNAL(refresh()),this->UI,SIGNAL(refresh())); | ||||
QObject::connect(((genericRWpluginPyWrapper*)this->pyObject),SIGNAL(setAddress(quint32)),this->UI,SIGNAL(setAddress(quint32))); | ||||
QObject::connect(((genericRWpluginPyWrapper*)this->pyObject),SIGNAL(setLength(quint32)),this->UI,SIGNAL(setLength(quint32))); | ||||
} | ||||
genericrwplugin::~genericrwplugin() | ||||
{} | ||||
int genericrwplugin::registermenu(QMainWindow *menuHolder) | ||||
{ | ||||
this->menu = menuHolder->menuBar()->addMenu(tr("&Generic RW Driver")); | ||||
this->closeAction = this->menu->addAction(tr("Close plugin")); | ||||
QObject::connect(this->closeAction,SIGNAL(triggered()),this,SLOT(closeMe())); | ||||
return 1; | ||||
} | ||||
unsigned int genericrwplugin::Write(unsigned int *Value,unsigned int count,unsigned int address) | ||||
{ | ||||
if(parent!=NULL) | ||||
return parent->Write(Value,count,address); | ||||
return 0; | ||||
} | ||||
unsigned int genericrwplugin::Read(unsigned int *Value,unsigned int count,unsigned int address) | ||||
{ | ||||
if(parent!=NULL) | ||||
return parent->Read(Value,count,address); | ||||
return 0; | ||||
} | ||||