source: mmcs/formexportmatrix.cpp @ bd5e45b

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

Traducción de los botones de diálogo, primer prototipo de matriz La

  • Property mode set to 100644
File size: 428 bytes
Line 
1#include "formexportmatrix.h"
2#include "ui_formexportmatrix.h"
3
4FormExportMatrix::FormExportMatrix(QWidget *parent) :
5    QWidget(parent,Qt::Tool),
6    ui(new Ui::FormExportMatrix)
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
14FormExportMatrix::~FormExportMatrix()
15{
16    delete ui;
17}
Note: See TracBrowser for help on using the repository browser.