diff --git a/src/qt/cscfusionstyle.cpp b/src/qt/cscfusionstyle.cpp index 9611719..1dba402 100644 --- a/src/qt/cscfusionstyle.cpp +++ b/src/qt/cscfusionstyle.cpp @@ -190,6 +190,20 @@ void CSCFusionStyle::drawPrimitive(PrimitiveElement element, { return; } + case PE_PanelItemViewRow: + { + int x, y, width, height; + option->rect.getRect(&x, &y, &width, &height); + + QPainterPath roundRect = roundRectPath(option->rect, 0); + + QBrush brush = option->palette.base(); + painter->save(); + painter->setRenderHint(QPainter::Antialiasing, true); + painter->fillPath(roundRect, brush); + painter->restore(); + break; + } case PE_FrameGroupBox: case PE_FrameWindow: case PE_Frame: @@ -206,6 +220,7 @@ void CSCFusionStyle::drawPrimitive(PrimitiveElement element, painter->restore(); break; } + case PE_PanelButtonTool: case PE_PanelButtonCommand: { GUI20Skin& skin = GUI20Skin::Instance(); diff --git a/src/qt/forms/addressbookpage.ui b/src/qt/forms/addressbookpage.ui index f120a98..7704fc7 100644 --- a/src/qt/forms/addressbookpage.ui +++ b/src/qt/forms/addressbookpage.ui @@ -13,18 +13,8 @@ Address Book - - - - - Qt::PlainText - - - true - - - - + + @@ -149,7 +139,7 @@ - + Qt::CustomContextMenu @@ -177,6 +167,31 @@ + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + Qt::PlainText + + + Qt::AlignCenter + + + true + + + + + + diff --git a/src/qt/forms/pryptopage.ui b/src/qt/forms/pryptopage.ui index ba6876f..cef4c2d 100644 --- a/src/qt/forms/pryptopage.ui +++ b/src/qt/forms/pryptopage.ui @@ -17,7 +17,7 @@ 20 - 50 + 70 361 112 @@ -62,7 +62,7 @@ 20 10 361 - 31 + 51 @@ -71,6 +71,12 @@ Qt::AutoText + + Qt::AlignCenter + + + true + diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui index dfb135a..944ca88 100644 --- a/src/qt/forms/sendcoinsdialog.ui +++ b/src/qt/forms/sendcoinsdialog.ui @@ -39,7 +39,7 @@ - -1 + 6 0 @@ -173,7 +173,16 @@ - + + 0 + + + 0 + + + 0 + + 0 @@ -626,19 +635,33 @@ 0 0 830 - 165 + 167 + + background-color: rgb(255, 255, 255); + - + + 0 + + + 0 + + + 0 + + 0 - - - 6 - - + + + + 6 + + + @@ -702,6 +725,19 @@ + + + + Qt::Horizontal + + + + 40 + 20 + + + + @@ -716,6 +752,12 @@ + + + 75 + true + + IBeamCursor @@ -729,19 +771,6 @@ - - - - Qt::Horizontal - - - - 40 - 20 - - - - @@ -753,6 +782,14 @@ Confirm the send action + + background-color: rgb(170, 28, 33); +color: rgb(255, 255, 255); +pressed +{ +background-color: rgb(170, 28, 33); +} + S&end diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 28553c5..a335f9c 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -80,6 +80,37 @@ + + + + + + Enter a label for this address to add it to your address book + + + + + + + + + Remove this recipient + + + + + + + :/icons/remove:/icons/remove + + + + 20 + 20 + + + + @@ -92,6 +123,12 @@ :/icons/address-book:/icons/address-book + + + 20 + 20 + + Alt+A @@ -109,40 +146,25 @@ :/icons/editpaste:/icons/editpaste + + + 20 + 20 + + Alt+P - - - - Remove this recipient - - - - - - - :/icons/remove:/icons/remove - - - - - - - Enter a label for this address to add it to your address book - - - BitcoinAmountField - QLineEdit + QSpinBox
bitcoinamountfield.h
1