Changeset 45221 in vbox
- Timestamp:
- Mar 28, 2013 7:43:38 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84590
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2.qrc
r43481 r45221 189 189 <file alias="nw_error_16px.png">images/nw_error_16px.png</file> 190 190 <file alias="nw_loading_16px.png">images/nw_loading_16px.png</file> 191 <file alias="next_16px.png">images/next_16px.png</file> 192 <file alias="previous_16px.png">images/previous_16px.png</file> 193 <file alias="expanding_collapsing_16px.png">images/expanding_collapsing_16px.png</file> 191 194 </qresource> 192 195 </RCC> -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserItemGroup.cpp
r44529 r45221 409 409 410 410 /* Setup enter-button: */ 411 m_pEnterButton = new UIGraphicsButton(this, UI GraphicsButtonType_DirectArrow);411 m_pEnterButton = new UIGraphicsButton(this, UIIconPool::iconSet(":/next_16px.png")); 412 412 connect(m_pEnterButton, SIGNAL(sigButtonClicked()), this, SLOT(sltIndentRoot())); 413 413 m_pEnterButton->hide(); … … 425 425 { 426 426 /* Setup exit-button: */ 427 m_pExitButton = new UIGraphicsButton(this, UI GraphicsButtonType_DirectArrow);427 m_pExitButton = new UIGraphicsButton(this, UIIconPool::iconSet(":/previous_16px.png")); 428 428 connect(m_pExitButton, SIGNAL(sigButtonClicked()), this, SLOT(sltUnindentRoot())); 429 429 QSizeF sh = m_pExitButton->minimumSizeHint(); 430 430 m_pExitButton->setTransformOriginPoint(sh.width() / 2, sh.height() / 2); 431 m_pExitButton->setRotation(180);432 431 m_pExitButton->hide(); 433 432 } -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsRotatorButton.cpp
r42856 r45221 26 26 /* GUI includes: */ 27 27 #include "UIGraphicsRotatorButton.h" 28 #include "UIIconPool.h" 28 29 29 30 UIGraphicsRotatorButton::UIGraphicsRotatorButton(QIGraphicsWidget *pParent, … … 32 33 bool fReflected /* = false */, 33 34 int iAnimationDuration /* = 300 */) 34 : UIGraphicsButton(pParent, UI GraphicsButtonType_RoundArrow)35 : UIGraphicsButton(pParent, UIIconPool::iconSet(":/expanding_collapsing_16px.png")) 35 36 , m_fReflected(fReflected) 36 37 , m_state(fToggled ? UIGraphicsRotatorButtonState_Rotated : UIGraphicsRotatorButtonState_Default)
Note:
See TracChangeset
for help on using the changeset viewer.