##// END OF EJS Templates
Non working pad rendering.. Rotation issue.
Non working pad rendering.. Rotation issue.

File last commit:

r12:93ef9e74723d default
r12:93ef9e74723d default
Show More
mainwindow.cpp
105 lines | 3.8 KiB | text/x-c | CppLexer
/*------------------------------------------------------------------------------
-- This file is a part of the Kicad Tools Software
-- Copyright (C) 2015, Plasma Physics Laboratory - 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 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-------------------------------------------------------------------------------*/
/*-- Author : Alexis Jeandet
-- Mail : alexis.jeandet@member.fsf.org
----------------------------------------------------------------------------*/
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "pcbmodule.h"
#include "pcbline.h"
#include "pcbvia.h"
#include <QFileDialog>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->p_scene = new QGraphicsScene();
this->context = new PCBContext();
this->ui->graphicsView->setScene(this->p_scene);
this->pcbDriver =NULL;
connect(this->ui->actionRedraw,SIGNAL(triggered(bool)),this,SLOT(redraw()));
connect(this->ui->actionOpen,SIGNAL(triggered(bool)),this,SLOT(openFile()));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::redraw()
{
this->p_scene->update();
}
void MainWindow::openFile()
{
QString file = QFileDialog::getOpenFileName(this,tr("Open kicad PCB file"),
"",
tr("PCB file (*.kicad_pcb)"));
if(QFile::exists(file))
loadFile(file);
}
void MainWindow::changeEvent(QEvent *e)
{
QMainWindow::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
}
}
void MainWindow::loadFile(const QString &file)
{
this->p_scene->setSceneRect(0, 0, 500, 200);
if(pcbDriver!=NULL)delete pcbDriver;
pcbDriver = new QIlib::QIcadPcb();
this->context->clear();
this->p_scene->clear();
// pcbDriver.parsePcb("/opt/kicadTools/test/testFiles/pcb2.kicad_pcb");
// pcbDriver.parsePcb("/home/jeandet/Documents/PCB/ADC_STAMP/ADC_STAMP.kicad_pcb");
pcbDriver->parsePcb(file);
// pcbDriver.parsePcb("/usr/share/kicad/demos/kit-dev-coldfire-xilinx_5213/kit-dev-coldfire-xilinx_5213.kicad_pcb");
for(int i=0;i<pcbDriver->pcbRoot->layers.layers.count();i++)
{
this->context->addlayer(pcbDriver->pcbRoot->layers.layers.at(i)->name(),pcbDriver->pcbRoot->layers.layers.at(i)->index());
}
for(int i=0;i<pcbDriver->pcbRoot->modules.count();i++)
{
this->p_scene->addItem(new PCBModule(pcbDriver->pcbRoot->modules.at(i),this->context));
}
for(int i=0;i<pcbDriver->pcbRoot->lines.count();i++)
{
this->p_scene->addItem(new PCBLine((QIlib::QIcadAbstractPcbLine*)pcbDriver->pcbRoot->lines.at(i),this->context));
}
for(int i=0;i<pcbDriver->pcbRoot->segments.count();i++)
{
this->p_scene->addItem(new PCBLine((QIlib::QIcadAbstractPcbLine*)pcbDriver->pcbRoot->segments.at(i),this->context));
}
for(int i=0;i<pcbDriver->pcbRoot->vias.count();i++)
{
this->p_scene->addItem(new PCBVia(pcbDriver->pcbRoot->vias.at(i),this->context));
}
}