arkpar
10 years ago
17 changed files with 237 additions and 45 deletions
@ -0,0 +1,36 @@ |
|||
/*
|
|||
This file is part of cpp-ethereum. |
|||
|
|||
cpp-ethereum is free software: you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation, either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
cpp-ethereum is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
/** @file ProjectFile.cpp
|
|||
* @author Arkadiy Paronyan arkadiy@ethdev.com |
|||
* @date 2014 |
|||
* Ethereum IDE client. |
|||
*/ |
|||
|
|||
#include <jsoncpp/json/json.h> |
|||
#include "ProjectFile.h" |
|||
|
|||
namespace dev |
|||
{ |
|||
namespace mix |
|||
{ |
|||
|
|||
void ProjectFile::saveProject() |
|||
{ |
|||
} |
|||
|
|||
} |
|||
} |
@ -0,0 +1,57 @@ |
|||
/*
|
|||
This file is part of cpp-ethereum. |
|||
|
|||
cpp-ethereum is free software: you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation, either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
cpp-ethereum is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
/** @file ProjectFile.h
|
|||
* @author Arkadiy Paronyan arkadiy@ethdev.com |
|||
* @date 2014 |
|||
* Ethereum IDE client. |
|||
*/ |
|||
|
|||
#pragma once |
|||
|
|||
#include <QString> |
|||
#include "TransactionListModel.h" |
|||
|
|||
namespace dev |
|||
{ |
|||
|
|||
namespace mix |
|||
{ |
|||
|
|||
/// Background code compiler
|
|||
class ProjectFile : public QObject |
|||
{ |
|||
Q_OBJECT |
|||
|
|||
public: |
|||
ProjectFile(); |
|||
|
|||
void loadProject(); |
|||
|
|||
signals: |
|||
void projectLoaded(); |
|||
|
|||
public slots: |
|||
void saveProject(); |
|||
|
|||
private: |
|||
QString defaultProjectPath() const; |
|||
TransactionListModel* transactionModel(); |
|||
}; |
|||
|
|||
} |
|||
|
|||
} |
@ -0,0 +1,11 @@ |
|||
import QtQuick 2.2 |
|||
|
|||
|
|||
Item { |
|||
property string title; |
|||
property string functionId; |
|||
property string value; |
|||
property string gas; |
|||
property string gasPrice; |
|||
property var paramValues; |
|||
} |
Loading…
Reference in new issue