source: mmcs/formencadenamientos.cpp @ 8daa049

matrices
Last change on this file since 8daa049 was 8daa049, checked in by rboet <rboet@…>, 9 years ago

Calculos de Ma completos, encadenamientos funcionales

  • Property mode set to 100644
File size: 449 bytes
Line 
1#include "formencadenamientos.h"
2#include "ui_formencadenamientos.h"
3
4FormEncadenamientos::FormEncadenamientos(QWidget *parent) :
5    QWidget(parent,Qt::Tool),
6    ui(new Ui::FormEncadenamientos)
7{
8    ui->setupUi(this);
9    int x = parent->pos().x() + parent->width()/2 - this->width()/2;
10    int y = parent->pos().y() + parent->height()/2 - this->height()/2;
11    this->move(x, y);
12}
13
14FormEncadenamientos::~FormEncadenamientos()
15{
16    delete ui;
17}
Note: See TracBrowser for help on using the repository browser.