Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
7c65560f
Commit
7c65560f
authored
Aug 20, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed icon source
parent
245ffb11
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
13 deletions
+13
-13
chain.qml
ethereal/assets/qml/views/chain.qml
+1
-1
history.qml
ethereal/assets/qml/views/history.qml
+1
-1
info.qml
ethereal/assets/qml/views/info.qml
+1
-1
javascript.qml
ethereal/assets/qml/views/javascript.qml
+1
-1
pending_tx.qml
ethereal/assets/qml/views/pending_tx.qml
+1
-1
transaction.qml
ethereal/assets/qml/views/transaction.qml
+1
-1
wallet.qml
ethereal/assets/qml/views/wallet.qml
+2
-2
wallet.qml
ethereal/assets/qml/wallet.qml
+5
-5
No files found.
ethereal/assets/qml/views/chain.qml
View file @
7c65560f
...
...
@@ -9,7 +9,7 @@ import Ethereum 1.0
Rectangle
{
id
:
root
property
var
title
:
"Network"
property
var
icon
Fil
e
:
"../net.png"
property
var
icon
Sourc
e
:
"../net.png"
property
var
secondary
:
"Hi"
property
var
menuItem
...
...
ethereal/assets/qml/views/history.qml
View file @
7c65560f
...
...
@@ -7,7 +7,7 @@ import QtQuick.Controls.Styles 1.1
import
Ethereum
1.0
Rectangle
{
property
var
icon
Fil
e
:
"../tx.png"
property
var
icon
Sourc
e
:
"../tx.png"
property
var
title
:
"Transactions"
property
var
menuItem
...
...
ethereal/assets/qml/views/info.qml
View file @
7c65560f
...
...
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle
{
property
var
title
:
"Information"
property
var
icon
Fil
e
:
"../heart.png"
property
var
icon
Sourc
e
:
"../heart.png"
property
var
menuItem
objectName
:
"infoView"
...
...
ethereal/assets/qml/views/javascript.qml
View file @
7c65560f
...
...
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle
{
property
var
title
:
"JavaScript"
property
var
icon
Fil
e
:
"../tx.png"
property
var
icon
Sourc
e
:
"../tx.png"
property
var
menuItem
objectName
:
"javascriptView"
...
...
ethereal/assets/qml/views/pending_tx.qml
View file @
7c65560f
...
...
@@ -8,7 +8,7 @@ import Ethereum 1.0
Rectangle
{
property
var
title
:
"Pending Transactions"
property
var
icon
Fil
e
:
"../tx.png"
property
var
icon
Sourc
e
:
"../tx.png"
property
var
menuItem
objectName
:
"pendingTxView"
...
...
ethereal/assets/qml/views/transaction.qml
View file @
7c65560f
...
...
@@ -7,7 +7,7 @@ import QtQuick.Controls.Styles 1.1
import
Ethereum
1.0
Rectangle
{
property
var
icon
Fil
e
:
"../new.png"
property
var
icon
Sourc
e
:
"../new.png"
property
var
title
:
"New transaction"
property
var
menuItem
...
...
ethereal/assets/qml/views/wallet.qml
View file @
7c65560f
...
...
@@ -9,14 +9,14 @@ import Ethereum 1.0
Rectangle
{
id
:
root
property
var
title
:
"Wallet"
property
var
icon
Fil
e
:
"../wallet.png"
property
var
icon
Sourc
e
:
"../wallet.png"
property
var
menuItem
objectName
:
"walletView"
anchors.fill
:
parent
function
onReady
()
{
menuItem
.
secondary
=
eth
.
numberToHuman
(
eth
.
balanceAt
(
eth
.
key
().
address
))
menuItem
.
secondary
Title
=
eth
.
numberToHuman
(
eth
.
balanceAt
(
eth
.
key
().
address
))
}
ListModel
{
...
...
ethereal/assets/qml/wallet.qml
View file @
7c65560f
...
...
@@ -292,12 +292,12 @@ ApplicationWindow {
view
.
visible
=
false
view
.
anchors
.
fill
=
mainView
if
(
!
view
.
hasOwnProperty
(
"icon
Fil
e"
)
)
{
console
.
log
(
"Could not load plugin. Property 'icon
File
' not found on view."
);
if
(
!
view
.
hasOwnProperty
(
"icon
Sourc
e"
)
)
{
console
.
log
(
"Could not load plugin. Property 'icon
Sourc
' not found on view."
);
return
;
}
var
menuItem
=
menu
.
createMenuItem
(
view
.
icon
Fil
e
,
view
,
options
);
var
menuItem
=
menu
.
createMenuItem
(
view
.
icon
Sourc
e
,
view
,
options
);
if
(
view
.
hasOwnProperty
(
"menuItem"
)
)
{
view
.
menuItem
=
menuItem
;
}
...
...
@@ -333,7 +333,7 @@ ApplicationWindow {
property
alias
title
:
label
.
text
property
alias
icon
:
icon
.
source
property
alias
secondary
:
secondary
.
text
property
alias
secondary
Title
:
secondary
.
text
width
:
180
height
:
28
...
...
@@ -429,7 +429,7 @@ ApplicationWindow {
comp
.
view
=
view
comp
.
title
=
view
.
title
comp
.
icon
=
view
.
icon
Fil
e
comp
.
icon
=
view
.
icon
Sourc
e
/*
if(view.secondary !== undefined) {
comp.secondary = view.secondary
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment