QVBoxLayout*vl;QHBoxLayout*hl;
QPushButton*p;
+ QLabel*lab;
+ QFrame*frm;
//Shopping Cart Tab
setLayout(vl=new QVBoxLayout);
hl2->addSpacing(15);
hl2->addWidget(p=new QPushButton(tr("Remove Line")),0);
connect(p,SIGNAL(clicked()),this,SLOT(cartRemoveItem()));
+ vl2->addWidget(frm=new QFrame,0);
+ frm->setFrameShape(QFrame::HLine);
vl2->addLayout(hl2=new QHBoxLayout,0);
- hl2->addWidget(new QLabel(tr("Total Price Sum:")));
+ hl2->addWidget(lab=new QLabel(tr("Total Price Sum:")));
+ QFont fnt=lab->font();
+ fnt.setPointSizeF(fnt.pointSizeF()*1.5);
+ lab->setFont(fnt);
hl2->addWidget(price=new QLabel("0.0"));
+ price->setFont(fnt);
hl2->addStretch(1);
- QFrame*frm;
hl->addWidget(frm=new QFrame,0);
frm->setFrameShape(QFrame::VLine);
hl->addLayout(vl2=new QVBoxLayout,1);