Changeset 339 in pacpusframework for branches/0.1.x/src/DBITEPlayerLib/DbtPlyUserInterface.cpp
- Timestamp:
- Mar 2, 2015, 12:55:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.1.x/src/DBITEPlayerLib/DbtPlyUserInterface.cpp
r152 r339 166 166 167 167 butGroup = new QButtonGroup (this ); 168 playBut = new QPushButton ( "|>", this);168 playBut = new QPushButton (style()->standardIcon(QStyle::SP_MediaPlay), "Play", this); 169 169 playBut->resize(kButtonWidthInPixels, kButtonHeightInPixels); 170 170 butGroup->addButton(playBut,1); 171 171 mainLayout->addWidget(playBut,0,0); 172 172 173 pauseBut = new QPushButton ( "||", this);173 pauseBut = new QPushButton (style()->standardIcon(QStyle::SP_MediaPause), "Pause", this); 174 174 pauseBut->resize(kButtonWidthInPixels, kButtonHeightInPixels); 175 175 butGroup->addButton(pauseBut,2); 176 176 mainLayout->addWidget(pauseBut,0,1); 177 177 178 stopBut = new QPushButton ( "O", this);178 stopBut = new QPushButton (style()->standardIcon(QStyle::SP_MediaStop), "Stop", this); 179 179 stopBut->resize(kButtonWidthInPixels, kButtonHeightInPixels); 180 180 butGroup->addButton(stopBut,3);
Note:
See TracChangeset
for help on using the changeset viewer.