mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-01 05:05:57 -08:00
Sleep changed to cross-platform sleep; send/receive.png icons changed
This commit is contained in:
@@ -78,7 +78,7 @@ volatile bool fRequestShutdown = false;
|
|||||||
|
|
||||||
void StartShutdown()
|
void StartShutdown()
|
||||||
{
|
{
|
||||||
Sleep(1000);
|
boost::this_thread::sleep_for( boost::chrono::seconds( 1 ) );
|
||||||
fRequestShutdown = true;
|
fRequestShutdown = true;
|
||||||
}
|
}
|
||||||
bool ShutdownRequested()
|
bool ShutdownRequested()
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ GUIBannerControl
|
|||||||
{
|
{
|
||||||
id: id_leftArrowImage
|
id: id_leftArrowImage
|
||||||
|
|
||||||
source: "qrc:/icons/res/icons/adverts_arrow_left.png"
|
source: "qrc:/icons/advertsArrowLeft"
|
||||||
|
|
||||||
anchors.centerIn: id_leftArrow
|
anchors.centerIn: id_leftArrow
|
||||||
}
|
}
|
||||||
@@ -31,13 +31,13 @@ GUIBannerControl
|
|||||||
|
|
||||||
onEntered:
|
onEntered:
|
||||||
{
|
{
|
||||||
id_leftArrowImage.source = "qrc:/icons/res/icons/adverts_arrow_left_hover.png"
|
id_leftArrowImage.source = "qrc:/icons/advertsArrowLeftHover"
|
||||||
id_bannerListView.m_PathView.decrementCurrentIndex()
|
id_bannerListView.m_PathView.decrementCurrentIndex()
|
||||||
id_animationTimer.restart()
|
id_animationTimer.restart()
|
||||||
}
|
}
|
||||||
onExited:
|
onExited:
|
||||||
{
|
{
|
||||||
id_leftArrowImage.source = "qrc:/icons/res/icons/adverts_arrow_left.png"
|
id_leftArrowImage.source = "qrc:/icons/advertsArrowLeft"
|
||||||
id_animationTimer.stop()
|
id_animationTimer.stop()
|
||||||
}
|
}
|
||||||
onClicked:
|
onClicked:
|
||||||
@@ -114,7 +114,7 @@ GUIBannerControl
|
|||||||
Image
|
Image
|
||||||
{
|
{
|
||||||
id: id_rightArrowImage
|
id: id_rightArrowImage
|
||||||
source: "qrc:/icons/res/icons/adverts_arrow_right.png"
|
source: "qrc:/icons/advertsArrowRight"
|
||||||
|
|
||||||
anchors.centerIn: id_rightArrow
|
anchors.centerIn: id_rightArrow
|
||||||
}
|
}
|
||||||
@@ -130,13 +130,13 @@ GUIBannerControl
|
|||||||
|
|
||||||
onEntered:
|
onEntered:
|
||||||
{
|
{
|
||||||
id_rightArrowImage.source = "qrc:/icons/res/icons/adverts_arrow_right_hover.png"
|
id_rightArrowImage.source = "qrc:/icons/advertsArrowRightHover"
|
||||||
id_bannerListView.m_PathView.incrementCurrentIndex()
|
id_bannerListView.m_PathView.incrementCurrentIndex()
|
||||||
id_animationTimer.restart()
|
id_animationTimer.restart()
|
||||||
}
|
}
|
||||||
onExited:
|
onExited:
|
||||||
{
|
{
|
||||||
id_rightArrowImage.source = "qrc:/icons/res/icons/adverts_arrow_right.png"
|
id_rightArrowImage.source = "qrc:/icons/advertsArrowRight"
|
||||||
id_animationTimer.stop()
|
id_animationTimer.stop()
|
||||||
}
|
}
|
||||||
onClicked:
|
onClicked:
|
||||||
|
|||||||
BIN
src/qt/res/icons/receive-red.png
Normal file
BIN
src/qt/res/icons/receive-red.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 268 B |
Binary file not shown.
|
Before Width: | Height: | Size: 310 B After Width: | Height: | Size: 260 B |
BIN
src/qt/res/icons/send-red.png
Normal file
BIN
src/qt/res/icons/send-red.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 267 B |
Binary file not shown.
|
Before Width: | Height: | Size: 314 B After Width: | Height: | Size: 238 B |
Reference in New Issue
Block a user