source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Bdd/src/ListePorts_getPortSouth.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 965 bytes
Line 
1/*
2 *
3 * [desc.]
4 */
5#include "Tools/Viewer/Bdd/include/ListePorts.h"
6
7namespace morpheo{
8namespace tools{
9namespace viewer{
10namespace bdd{     
11 
12   /*p_x : centre abs; p_y : centre ordonnée ; s_x s_y : size entiere */
13  /*
14  *     x-------x
15  *     |       |
16  *     |   Â°   |
17  *     \       \
18  */
19  QList<morpheo::tools::viewer::bdd::Port> ListePorts::getPortSouth(Coord *c){
20    int count=1;
21    int nb=countPort("south");
22   
23    QList<morpheo::tools::viewer::bdd::Port> *result=new \
24      QList<morpheo::tools::viewer::bdd::Port>();
25
26    for(QList<morpheo::tools::viewer::bdd::Port>::iterator it\
27          = ports->begin();it!=ports->end();++it)
28      {
29        if( !strcmp(it->getLocalisation().c_str(),"south"))
30          {
31            it->set_y( c->get_bd_y() );
32            it->set_x( c->get_hg_x() + count*( (c->get_size_x())/(nb+1)) ); 
33           
34            result->append(*it);
35            count++;
36          }
37      }
38    return *result;
39  }
40
41
42
43};//end bdd
44};//end viewer
45};//end tools
46};//end morpheo
Note: See TracBrowser for help on using the repository browser.