source: mmcs/variablepnh.cpp @ 32f758e

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

funcionabilidad de modelo de precios no homogéneos incorporada

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