Browse Source

Merge branch 'develop' of github.com:ethereum/cpp-ethereum into develop

cl-refactor
Gav Wood 10 years ago
parent
commit
f5e383c298
  1. 14
      mix/qml/Debugger.qml
  2. 10
      mix/qml/ProjectList.qml
  3. 19
      mix/qml/StepActionImage.qml
  4. 2
      mix/qml/html/cm/codemirror.css
  5. BIN
      mix/qml/img/dappProjectIcon.png
  6. BIN
      mix/qml/img/jumpintoback.png
  7. BIN
      mix/qml/img/jumpintobackdisabled.png
  8. BIN
      mix/qml/img/jumpintoforward.png
  9. BIN
      mix/qml/img/jumpintoforwarddisabled.png
  10. BIN
      mix/qml/img/jumpoutback.png
  11. BIN
      mix/qml/img/jumpoutbackdisabled.png
  12. BIN
      mix/qml/img/jumpoutforward.png
  13. BIN
      mix/qml/img/jumpoutforwarddisabled.png
  14. BIN
      mix/qml/img/jumpoverback.png
  15. BIN
      mix/qml/img/jumpoverbackdisabled.png
  16. BIN
      mix/qml/img/jumpoverforward.png
  17. BIN
      mix/qml/img/jumpoverforwarddisabled.png
  18. BIN
      mix/qml/img/opentriangleindicator@2x.png
  19. 2
      mix/res.qrc

14
mix/qml/Debugger.qml

@ -164,7 +164,7 @@ Rectangle {
Rectangle { Rectangle {
// step button + slider // step button + slider
id: buttonRow id: buttonRow
height: 27 height: 30
Layout.fillWidth: true Layout.fillWidth: true
color: "transparent" color: "transparent"
@ -184,7 +184,7 @@ Rectangle {
enabledStateImg: "qrc:/qml/img/jumpoutback.png" enabledStateImg: "qrc:/qml/img/jumpoutback.png"
disableStateImg: "qrc:/qml/img/jumpoutbackdisabled.png" disableStateImg: "qrc:/qml/img/jumpoutbackdisabled.png"
onClicked: Debugger.stepOutBack() onClicked: Debugger.stepOutBack()
width: 28 width: 30
height: 30 height: 30
buttonShortcut: "Ctrl+Shift+F11" buttonShortcut: "Ctrl+Shift+F11"
buttonTooltip: qsTr("Step Out Back") buttonTooltip: qsTr("Step Out Back")
@ -196,7 +196,7 @@ Rectangle {
enabledStateImg: "qrc:/qml/img/jumpintoback.png" enabledStateImg: "qrc:/qml/img/jumpintoback.png"
disableStateImg: "qrc:/qml/img/jumpintobackdisabled.png" disableStateImg: "qrc:/qml/img/jumpintobackdisabled.png"
onClicked: Debugger.stepIntoBack() onClicked: Debugger.stepIntoBack()
width: 28 width: 30
height: 30 height: 30
buttonShortcut: "Ctrl+F11" buttonShortcut: "Ctrl+F11"
buttonTooltip: qsTr("Step Into Back") buttonTooltip: qsTr("Step Into Back")
@ -208,7 +208,7 @@ Rectangle {
enabledStateImg: "qrc:/qml/img/jumpoverback.png" enabledStateImg: "qrc:/qml/img/jumpoverback.png"
disableStateImg: "qrc:/qml/img/jumpoverbackdisabled.png" disableStateImg: "qrc:/qml/img/jumpoverbackdisabled.png"
onClicked: Debugger.stepOverBack() onClicked: Debugger.stepOverBack()
width: 28 width: 30
height: 30 height: 30
buttonShortcut: "Ctrl+F10" buttonShortcut: "Ctrl+F10"
buttonTooltip: qsTr("Step Over Back") buttonTooltip: qsTr("Step Over Back")
@ -220,7 +220,7 @@ Rectangle {
enabledStateImg: "qrc:/qml/img/jumpoverforward.png" enabledStateImg: "qrc:/qml/img/jumpoverforward.png"
disableStateImg: "qrc:/qml/img/jumpoverforwarddisabled.png" disableStateImg: "qrc:/qml/img/jumpoverforwarddisabled.png"
onClicked: Debugger.stepOverForward() onClicked: Debugger.stepOverForward()
width: 28 width: 30
height: 30 height: 30
buttonShortcut: "F10" buttonShortcut: "F10"
buttonTooltip: qsTr("Step Over Forward") buttonTooltip: qsTr("Step Over Forward")
@ -232,7 +232,7 @@ Rectangle {
enabledStateImg: "qrc:/qml/img/jumpintoforward.png" enabledStateImg: "qrc:/qml/img/jumpintoforward.png"
disableStateImg: "qrc:/qml/img/jumpintoforwarddisabled.png" disableStateImg: "qrc:/qml/img/jumpintoforwarddisabled.png"
onClicked: Debugger.stepIntoForward() onClicked: Debugger.stepIntoForward()
width: 28 width: 30
height: 30 height: 30
buttonShortcut: "F11" buttonShortcut: "F11"
buttonTooltip: qsTr("Step Into Forward") buttonTooltip: qsTr("Step Into Forward")
@ -244,7 +244,7 @@ Rectangle {
enabledStateImg: "qrc:/qml/img/jumpoutforward.png" enabledStateImg: "qrc:/qml/img/jumpoutforward.png"
disableStateImg: "qrc:/qml/img/jumpoutforwarddisabled.png" disableStateImg: "qrc:/qml/img/jumpoutforwarddisabled.png"
onClicked: Debugger.stepOutForward() onClicked: Debugger.stepOutForward()
width: 28 width: 30
height: 30 height: 30
buttonShortcut: "Shift+F11" buttonShortcut: "Shift+F11"
buttonTooltip: qsTr("Step Out Forward") buttonTooltip: qsTr("Step Out Forward")

10
mix/qml/ProjectList.qml

@ -25,11 +25,15 @@ Item {
Layout.fillWidth: true Layout.fillWidth: true
Image { Image {
id: projectIcon id: projectIcon
source: "qrc:/qml/img/projecticon.png" source: "qrc:/qml/img/dappProjectIcon.png"
sourceSize.height: 30 //sourceSize.height: 32
anchors.right: projectTitle.left anchors.right: projectTitle.left
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
anchors.rightMargin: 6 anchors.rightMargin: 6
//anchors.centerIn: parent
fillMode: Image.PreserveAspectFit
width: 32
height: 32
} }
Text Text
@ -115,7 +119,7 @@ Item {
ci++; ci++;
} }
} }
} }
} }
} }

19
mix/qml/StepActionImage.qml

@ -16,19 +16,26 @@ Rectangle {
{ {
buttonAction.enabled = state; buttonAction.enabled = state;
if (state) if (state)
debugImg.iconSource = enabledStateImg; debugImage.source = enabledStateImg;
else else
debugImg.iconSource = disableStateImg; debugImage.source = disableStateImg;
} }
Button Button
{ {
anchors.fill: parent anchors.fill: parent
id: debugImg id: debugImg
iconSource: enabledStateImg /* iconSource: enabledStateImg
action: buttonAction */ action: buttonAction
width: buttonActionContainer.width - 3 }
height: buttonActionContainer.height
Image {
id: debugImage
source: enabledStateImg
anchors.centerIn: parent
fillMode: Image.PreserveAspectFit
width: 15
height: 15
} }
Action { Action {

2
mix/qml/html/cm/codemirror.css

@ -5,7 +5,7 @@
font-family: monospace; font-family: monospace;
border: 1px solid black; border: 1px solid black;
height: 100%; height: 100%;
font-size:16px font-size:12px
} }
/* PADDING */ /* PADDING */

BIN
mix/qml/img/dappProjectIcon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
mix/qml/img/jumpintoback.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 762 B

After

Width:  |  Height:  |  Size: 953 B

BIN
mix/qml/img/jumpintobackdisabled.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 678 B

After

Width:  |  Height:  |  Size: 865 B

BIN
mix/qml/img/jumpintoforward.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 785 B

After

Width:  |  Height:  |  Size: 981 B

BIN
mix/qml/img/jumpintoforwarddisabled.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 695 B

After

Width:  |  Height:  |  Size: 915 B

BIN
mix/qml/img/jumpoutback.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 700 B

After

Width:  |  Height:  |  Size: 860 B

BIN
mix/qml/img/jumpoutbackdisabled.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 634 B

After

Width:  |  Height:  |  Size: 806 B

BIN
mix/qml/img/jumpoutforward.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 674 B

After

Width:  |  Height:  |  Size: 866 B

BIN
mix/qml/img/jumpoutforwarddisabled.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 580 B

After

Width:  |  Height:  |  Size: 773 B

BIN
mix/qml/img/jumpoverback.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 692 B

After

Width:  |  Height:  |  Size: 1.0 KiB

BIN
mix/qml/img/jumpoverbackdisabled.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 532 B

After

Width:  |  Height:  |  Size: 930 B

BIN
mix/qml/img/jumpoverforward.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 717 B

After

Width:  |  Height:  |  Size: 1017 B

BIN
mix/qml/img/jumpoverforwarddisabled.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 893 B

BIN
mix/qml/img/opentriangleindicator@2x.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 836 B

2
mix/res.qrc

@ -10,12 +10,14 @@
<file>qml/StateDialog.qml</file> <file>qml/StateDialog.qml</file>
<file>qml/StateList.qml</file> <file>qml/StateList.qml</file>
<file>qml/StateListModel.qml</file> <file>qml/StateListModel.qml</file>
<file>qml/img/dappProjectIcon.png</file>
<file>qml/img/jumpintoback.png</file> <file>qml/img/jumpintoback.png</file>
<file>qml/img/jumpintoforward.png</file> <file>qml/img/jumpintoforward.png</file>
<file>qml/img/jumpoutback.png</file> <file>qml/img/jumpoutback.png</file>
<file>qml/img/jumpoutforward.png</file> <file>qml/img/jumpoutforward.png</file>
<file>qml/img/jumpoverback.png</file> <file>qml/img/jumpoverback.png</file>
<file>qml/img/jumpoverforward.png</file> <file>qml/img/jumpoverforward.png</file>
<file>qml/img/jumpoverforwarddisabled.png</file>
<file>qml/StepActionImage.qml</file> <file>qml/StepActionImage.qml</file>
<file>qml/img/jumpintobackdisabled.png</file> <file>qml/img/jumpintobackdisabled.png</file>
<file>qml/img/jumpintoforwarddisabled.png</file> <file>qml/img/jumpintoforwarddisabled.png</file>

Loading…
Cancel
Save