source: mmcs/formexportmatrix.cpp

Last change on this file was 0b59ba5, checked in by rudmanmrrod <rudman22@…>, 8 years ago

Documentados los archivos adicionales

  • Property mode set to 100755
File size: 1.0 KB
Line 
1/**
2    Sistema de Manejo de Matrices de Contabilidad Social, desarrollado a partir de Mayo de 2015.
3    @file formexportmatrix.cpp
4    @brief Clases y métodos del formulario que permite exportar las matrices a csv
5    @date 15/08/2015
6    @author Rodrigo Boet
7    @copyright <a href='http://www.gnu.org/licenses/gpl-2.0.html'>GNU Public License versión 2 (GPLv2)</a>
8*/
9#include "formexportmatrix.h"
10#include "ui_formexportmatrix.h"
11
12
13/**
14    @brief Clase principal que inicializa la interfaz
15    @date 15/08/2015
16    @author Rodrigo Boet
17    @param <parent> Recibe el widget que será el padre
18*/
19FormExportMatrix::FormExportMatrix(QWidget *parent) :
20    QWidget(parent,Qt::Tool),
21    ui(new Ui::FormExportMatrix)
22{
23    ui->setupUi(this);
24    int x = parent->pos().x() + parent->width()/2 - this->width()/2;
25    int y = parent->pos().y() + parent->height()/2 - this->height()/2;
26    this->move(x, y);
27}
28
29/**
30    @brief Método con el destructor de la interfaz gráfica
31    @date 15/08/2015
32*/
33FormExportMatrix::~FormExportMatrix()
34{
35    delete ui;
36}
Note: See TracBrowser for help on using the repository browser.