source: mmcs/variableexogenawidget.cpp @ 9dd61b1

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

Avance del proyecto 60%

  • Property mode set to 100644
File size: 616 bytes
Line 
1#include "variableexogenawidget.h"
2
3VariableExogenaWidget::VariableExogenaWidget(int number,QStringList lista,QWidget *parent) :
4    QWidget(parent)
5{
6
7    layoutAccountConf = new QHBoxLayout;
8
9    this->setLayout(layoutAccountConf);
10
11    accounListWidget = new QListWidget(this);
12    accounListWidget->setFixedWidth(350);
13    accounListWidget->setSelectionMode(QAbstractItemView::ExtendedSelection);
14    accounListWidget->addItems(lista);
15    accounListWidget->setObjectName(QString("accountlist %1").arg(number+1));//Nombre para el objeto Nombre de la Cuenta
16    layoutAccountConf->addWidget(accounListWidget);
17
18}
Note: See TracBrowser for help on using the repository browser.