A?adidos los estilos para los estados pressed de los botones de goToFlow

This commit is contained in:
Luis Ángel San Martín 2013-01-22 10:32:54 +01:00
parent f1001c55ab
commit 25c06ba618
4 changed files with 10 additions and 2 deletions

View File

@ -82,16 +82,22 @@ GoToFlowGL::GoToFlowGL(QWidget* parent, FlowType flowType)
edit->setSizePolicy(QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed));
edit->setAutoFillBackground(false);
QString centerButtonCSS = "QPushButton {background-image: url(:/images/imgCenterSlide.png); width: 100%; height:100%; background-repeat: none; border: none;} "
"QPushButton:focus { border: none; outline: none;}"
"QPushButton:pressed {background-image: url(:/images/imgCenterSlidePressed.png); width: 100%; height:100%; background-repeat: none; border: none;} ";
centerButton = new QPushButton(bottomToolBar);
//centerButton->setIcon(QIcon(":/images/center.png"));
centerButton->setStyleSheet("background-image: url(:/images/imgCenterSlide.png); width: 100%; height:100%; background-repeat: none; border: none;");
centerButton->setStyleSheet(centerButtonCSS);
centerButton->setFixedSize(26,50);
connect(centerButton,SIGNAL(clicked()),this,SLOT(centerSlide()));
bottom->addWidget(centerButton);
QString goToButtonCSS = "QPushButton {background-image: url(:/images/imgGoToSlide.png); width: 100%; height:100%; background-repeat: none; border: none;} "
"QPushButton:focus { border: none; outline: none;}"
"QPushButton:pressed {background-image: url(:/images/imgGoToSlidePressed.png); width: 100%; height:100%; background-repeat: none; border: none;} ";
goToButton = new QPushButton(bottomToolBar);
//goToButton->setIcon(QIcon(":/images/goto.png"));
goToButton->setStyleSheet("background-image: url(:/images/imgGoToSlide.png); width: 100%; height:100%; background-repeat: none; border: none;");
goToButton->setStyleSheet(goToButtonCSS);
goToButton->setFixedSize(32,50);
connect(goToButton,SIGNAL(clicked()),this,SLOT(goTo()));
bottom->addWidget(goToButton);

View File

@ -45,6 +45,8 @@
<file>../images/imgEdit.png</file>
<file>../images/imgCenterSlide.png</file>
<file>../images/imgGoToSlide.png</file>
<file>../images/imgCenterSlidePressed.png</file>
<file>../images/imgGoToSlidePressed.png</file>
<file>../images/helpImages/open.png</file>
<file>../images/helpImages/openFolder.png</file>

Binary file not shown.

After

Width:  |  Height:  |  Size: 814 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 940 B