Wladimir J. van der Laan
14 years ago
17 changed files with 169 additions and 211 deletions
@ -0,0 +1,6 @@ |
|||||||
|
#include "AboutDialog.h" |
||||||
|
|
||||||
|
AboutDialog::AboutDialog(QWidget *parent) : |
||||||
|
QDialog(parent) |
||||||
|
{ |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
#ifndef ABOUTDIALOG_H |
||||||
|
#define ABOUTDIALOG_H |
||||||
|
|
||||||
|
#include <QDialog> |
||||||
|
|
||||||
|
class AboutDialog : public QDialog |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
public: |
||||||
|
explicit AboutDialog(QWidget *parent = 0); |
||||||
|
|
||||||
|
signals: |
||||||
|
|
||||||
|
public slots: |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
#endif // ABOUTDIALOG_H
|
@ -0,0 +1,7 @@ |
|||||||
|
#include "AddressBookDialog.h" |
||||||
|
|
||||||
|
AddressBookDialog::AddressBookDialog(QWidget *parent) : |
||||||
|
QDialog(parent) |
||||||
|
{ |
||||||
|
} |
||||||
|
|
@ -0,0 +1,18 @@ |
|||||||
|
#ifndef ADDRESSBOOKDIALOG_H |
||||||
|
#define ADDRESSBOOKDIALOG_H |
||||||
|
|
||||||
|
#include <QDialog> |
||||||
|
|
||||||
|
class AddressBookDialog : public QDialog |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
public: |
||||||
|
explicit AddressBookDialog(QWidget *parent = 0); |
||||||
|
|
||||||
|
signals: |
||||||
|
|
||||||
|
public slots: |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
#endif // ADDRESSBOOKDIALOG_H
|
@ -0,0 +1,6 @@ |
|||||||
|
#include "SendCoinsDialog.h" |
||||||
|
|
||||||
|
SendCoinsDialog::SendCoinsDialog(QWidget *parent) : |
||||||
|
QDialog(parent) |
||||||
|
{ |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
#ifndef SENDCOINSDIALOG_H |
||||||
|
#define SENDCOINSDIALOG_H |
||||||
|
|
||||||
|
#include <QDialog> |
||||||
|
|
||||||
|
class SendCoinsDialog : public QDialog |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
public: |
||||||
|
explicit SendCoinsDialog(QWidget *parent = 0); |
||||||
|
|
||||||
|
signals: |
||||||
|
|
||||||
|
public slots: |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
#endif // SENDCOINSDIALOG_H
|
@ -0,0 +1,7 @@ |
|||||||
|
#include "SettingsDialog.h" |
||||||
|
|
||||||
|
SettingsDialog::SettingsDialog(QWidget *parent) : |
||||||
|
QDialog(parent) |
||||||
|
{ |
||||||
|
} |
||||||
|
|
@ -0,0 +1,18 @@ |
|||||||
|
#ifndef SETTINGSDIALOG_H |
||||||
|
#define SETTINGSDIALOG_H |
||||||
|
|
||||||
|
#include <QDialog> |
||||||
|
|
||||||
|
class SettingsDialog : public QDialog |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
public: |
||||||
|
explicit SettingsDialog(QWidget *parent = 0); |
||||||
|
|
||||||
|
signals: |
||||||
|
|
||||||
|
public slots: |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
#endif // SETTINGSDIALOG_H
|
@ -1,113 +0,0 @@ |
|||||||
<!DOCTYPE QtCreatorProject> |
|
||||||
<qtcreator> |
|
||||||
<data> |
|
||||||
<variable>ProjectExplorer.Project.ActiveTarget</variable> |
|
||||||
<value type="int">0</value> |
|
||||||
</data> |
|
||||||
<data> |
|
||||||
<variable>ProjectExplorer.Project.EditorSettings</variable> |
|
||||||
<valuemap type="QVariantMap"> |
|
||||||
<value key="EditorConfiguration.Codec" type="QByteArray">System</value> |
|
||||||
</valuemap> |
|
||||||
</data> |
|
||||||
<data> |
|
||||||
<variable>ProjectExplorer.Project.Target.0</variable> |
|
||||||
<valuemap type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">Desktop</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.Target.DesktopTarget</value> |
|
||||||
<value key="ProjectExplorer.Target.ActiveBuildConfiguration" type="int">0</value> |
|
||||||
<value key="ProjectExplorer.Target.ActiveRunConfiguration" type="int">0</value> |
|
||||||
<valuemap key="ProjectExplorer.Target.BuildConfiguration.0" type="QVariantMap"> |
|
||||||
<valuemap key="ProjectExplorer.BuildConfiguration.BuildStep.0" type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">qmake</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">QtProjectManager.QMakeBuildStep</value> |
|
||||||
<valuelist key="QtProjectManager.QMakeBuildStep.QMakeArguments" type="QVariantList"/> |
|
||||||
</valuemap> |
|
||||||
<valuemap key="ProjectExplorer.BuildConfiguration.BuildStep.1" type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">Make</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.MakeStep</value> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.Clean" type="bool">false</value> |
|
||||||
<valuelist key="Qt4ProjectManager.MakeStep.MakeArguments" type="QVariantList"/> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.MakeCommand" type="QString"></value> |
|
||||||
</valuemap> |
|
||||||
<value key="ProjectExplorer.BuildConfiguration.BuildStepsCount" type="int">2</value> |
|
||||||
<valuemap key="ProjectExplorer.BuildConfiguration.CleanStep.0" type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">Make</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.MakeStep</value> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.Clean" type="bool">true</value> |
|
||||||
<valuelist key="Qt4ProjectManager.MakeStep.MakeArguments" type="QVariantList"> |
|
||||||
<value type="QString">clean</value> |
|
||||||
</valuelist> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.MakeCommand" type="QString"></value> |
|
||||||
</valuemap> |
|
||||||
<value key="ProjectExplorer.BuildConfiguration.CleanStepsCount" type="int">1</value> |
|
||||||
<value key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment" type="bool">false</value> |
|
||||||
<valuelist key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges" type="QVariantList"/> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">Debug</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.Qt4BuildConfiguration</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration" type="int">2</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.BuildDirectory" type="QString">/store/orion/projects/bitcoin/bitcoin-qt</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.QtVersionId" type="int">4</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.ToolChain" type="int">0</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild" type="bool">false</value> |
|
||||||
</valuemap> |
|
||||||
<valuemap key="ProjectExplorer.Target.BuildConfiguration.1" type="QVariantMap"> |
|
||||||
<valuemap key="ProjectExplorer.BuildConfiguration.BuildStep.0" type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">qmake</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">QtProjectManager.QMakeBuildStep</value> |
|
||||||
<valuelist key="QtProjectManager.QMakeBuildStep.QMakeArguments" type="QVariantList"/> |
|
||||||
</valuemap> |
|
||||||
<valuemap key="ProjectExplorer.BuildConfiguration.BuildStep.1" type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">Make</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.MakeStep</value> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.Clean" type="bool">false</value> |
|
||||||
<valuelist key="Qt4ProjectManager.MakeStep.MakeArguments" type="QVariantList"/> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.MakeCommand" type="QString"></value> |
|
||||||
</valuemap> |
|
||||||
<value key="ProjectExplorer.BuildConfiguration.BuildStepsCount" type="int">2</value> |
|
||||||
<valuemap key="ProjectExplorer.BuildConfiguration.CleanStep.0" type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">Make</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.MakeStep</value> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.Clean" type="bool">true</value> |
|
||||||
<valuelist key="Qt4ProjectManager.MakeStep.MakeArguments" type="QVariantList"> |
|
||||||
<value type="QString">clean</value> |
|
||||||
</valuelist> |
|
||||||
<value key="Qt4ProjectManager.MakeStep.MakeCommand" type="QString"></value> |
|
||||||
</valuemap> |
|
||||||
<value key="ProjectExplorer.BuildConfiguration.CleanStepsCount" type="int">1</value> |
|
||||||
<value key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment" type="bool">false</value> |
|
||||||
<valuelist key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges" type="QVariantList"/> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">Release</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.Qt4BuildConfiguration</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.BuildConfiguration" type="int">0</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.BuildDirectory" type="QString">/store/orion/projects/bitcoin/bitcoin-qt</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.QtVersionId" type="int">4</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.ToolChain" type="int">0</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4BuildConfiguration.UseShadowBuild" type="bool">false</value> |
|
||||||
</valuemap> |
|
||||||
<value key="ProjectExplorer.Target.BuildConfigurationCount" type="int">2</value> |
|
||||||
<valuemap key="ProjectExplorer.Target.RunConfiguration.0" type="QVariantMap"> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.DisplayName" type="QString">bitcoin</value> |
|
||||||
<value key="ProjectExplorer.ProjectConfiguration.Id" type="QString">Qt4ProjectManager.Qt4RunConfiguration</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4RunConfiguration.BaseEnvironmentBase" type="int">2</value> |
|
||||||
<valuelist key="Qt4ProjectManager.Qt4RunConfiguration.CommandLineArguments" type="QVariantList"/> |
|
||||||
<value key="Qt4ProjectManager.Qt4RunConfiguration.ProFile" type="QString">bitcoin.pro</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4RunConfiguration.UseDyldImageSuffix" type="bool">false</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4RunConfiguration.UseTerminal" type="bool">false</value> |
|
||||||
<valuelist key="Qt4ProjectManager.Qt4RunConfiguration.UserEnvironmentChanges" type="QVariantList"/> |
|
||||||
<value key="Qt4ProjectManager.Qt4RunConfiguration.UserSetName" type="bool">false</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4RunConfiguration.UserSetWorkingDirectory" type="bool">false</value> |
|
||||||
<value key="Qt4ProjectManager.Qt4RunConfiguration.UserWorkingDirectory" type="QString"></value> |
|
||||||
</valuemap> |
|
||||||
<value key="ProjectExplorer.Target.RunConfigurationCount" type="int">1</value> |
|
||||||
</valuemap> |
|
||||||
</data> |
|
||||||
<data> |
|
||||||
<variable>ProjectExplorer.Project.TargetCount</variable> |
|
||||||
<value type="int">1</value> |
|
||||||
</data> |
|
||||||
<data> |
|
||||||
<variable>ProjectExplorer.Project.Updater.FileVersion</variable> |
|
||||||
<value type="int">4</value> |
|
||||||
</data> |
|
||||||
</qtcreator> |
|
@ -1,79 +0,0 @@ |
|||||||
/****************************************************************************
|
|
||||||
** Meta object code from reading C++ file 'BitcoinGUI.h' |
|
||||||
** |
|
||||||
** Created: Sat May 7 20:43:39 2011 |
|
||||||
** by: The Qt Meta Object Compiler version 62 (Qt 4.7.0) |
|
||||||
** |
|
||||||
** WARNING! All changes made in this file will be lost! |
|
||||||
*****************************************************************************/ |
|
||||||
|
|
||||||
#include "BitcoinGUI.h" |
|
||||||
#if !defined(Q_MOC_OUTPUT_REVISION) |
|
||||||
#error "The header file 'BitcoinGUI.h' doesn't include <QObject>." |
|
||||||
#elif Q_MOC_OUTPUT_REVISION != 62 |
|
||||||
#error "This file was generated using the moc from 4.7.0. It" |
|
||||||
#error "cannot be used with the include files from this version of Qt." |
|
||||||
#error "(The moc has changed too much.)" |
|
||||||
#endif |
|
||||||
|
|
||||||
QT_BEGIN_MOC_NAMESPACE |
|
||||||
static const uint qt_meta_data_BitcoinGUI[] = { |
|
||||||
|
|
||||||
// content:
|
|
||||||
5, // revision
|
|
||||||
0, // classname
|
|
||||||
0, 0, // classinfo
|
|
||||||
1, 14, // methods
|
|
||||||
0, 0, // properties
|
|
||||||
0, 0, // enums/sets
|
|
||||||
0, 0, // constructors
|
|
||||||
0, // flags
|
|
||||||
0, // signalCount
|
|
||||||
|
|
||||||
// slots: signature, parameters, type, tag, flags
|
|
||||||
16, 12, 11, 11, 0x08, |
|
||||||
|
|
||||||
0 // eod
|
|
||||||
}; |
|
||||||
|
|
||||||
static const char qt_meta_stringdata_BitcoinGUI[] = { |
|
||||||
"BitcoinGUI\0\0tab\0currentChanged(int)\0" |
|
||||||
}; |
|
||||||
|
|
||||||
const QMetaObject BitcoinGUI::staticMetaObject = { |
|
||||||
{ &QMainWindow::staticMetaObject, qt_meta_stringdata_BitcoinGUI, |
|
||||||
qt_meta_data_BitcoinGUI, 0 } |
|
||||||
}; |
|
||||||
|
|
||||||
#ifdef Q_NO_DATA_RELOCATION |
|
||||||
const QMetaObject &BitcoinGUI::getStaticMetaObject() { return staticMetaObject; } |
|
||||||
#endif //Q_NO_DATA_RELOCATION
|
|
||||||
|
|
||||||
const QMetaObject *BitcoinGUI::metaObject() const |
|
||||||
{ |
|
||||||
return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject; |
|
||||||
} |
|
||||||
|
|
||||||
void *BitcoinGUI::qt_metacast(const char *_clname) |
|
||||||
{ |
|
||||||
if (!_clname) return 0; |
|
||||||
if (!strcmp(_clname, qt_meta_stringdata_BitcoinGUI)) |
|
||||||
return static_cast<void*>(const_cast< BitcoinGUI*>(this)); |
|
||||||
return QMainWindow::qt_metacast(_clname); |
|
||||||
} |
|
||||||
|
|
||||||
int BitcoinGUI::qt_metacall(QMetaObject::Call _c, int _id, void **_a) |
|
||||||
{ |
|
||||||
_id = QMainWindow::qt_metacall(_c, _id, _a); |
|
||||||
if (_id < 0) |
|
||||||
return _id; |
|
||||||
if (_c == QMetaObject::InvokeMetaMethod) { |
|
||||||
switch (_id) { |
|
||||||
case 0: currentChanged((*reinterpret_cast< int(*)>(_a[1]))); break; |
|
||||||
default: ; |
|
||||||
} |
|
||||||
_id -= 1; |
|
||||||
} |
|
||||||
return _id; |
|
||||||
} |
|
||||||
QT_END_MOC_NAMESPACE |
|
Loading…
Reference in new issue