source: mmcs/formvariablesexogenas.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.1 KB
Line 
1/**
2    Sistema de Manejo de Matrices de Contabilidad Social, desarrollado a partir de Mayo de 2015.
3    @file formvariablesexogenas.cpp
4    @brief Clases y métodos del formulario que permite seleccionar las variables exógenas
5    @date 08/07/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 "formvariablesexogenas.h"
10#include "ui_formvariablesexogenas.h"
11
12/**
13    @brief Clase principal que inicializa la interfaz
14    @date 08/07/2015
15    @author Rodrigo Boet
16    @param <parent> Recibe el widget que será el padre
17*/
18FormVariablesExogenas::FormVariablesExogenas(QWidget *parent) :
19    QWidget(parent,Qt::Tool),
20    ui(new Ui::FormVariablesExogenas)
21{
22    ui->setupUi(this);
23    int x = parent->pos().x() + parent->width()/2 - this->width()/2;
24    int y = parent->pos().y() + parent->height()/2 - this->height()/2;
25    this->move(x, y);
26}
27
28/**
29    @brief Método con el destructor de la interfaz gráfica
30    @date 08/07/2015
31*/
32FormVariablesExogenas::~FormVariablesExogenas()
33{
34    delete ui;
35}
Note: See TracBrowser for help on using the repository browser.