mirror of
				https://git.wownero.com/wowlet/wowlet.git
				synced 2024-08-15 01:03:14 +00:00 
			
		
		
		
	Wizard: don't show stagenet wallet in mainnet mode
This commit is contained in:
		
							parent
							
								
									6c8255b12b
								
							
						
					
					
						commit
						68f8be01ac
					
				
					 3 changed files with 21 additions and 11 deletions
				
			
		| 
						 | 
					@ -19,7 +19,7 @@
 | 
				
			||||||
using namespace std::chrono;
 | 
					using namespace std::chrono;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
WalletKeysFiles::WalletKeysFiles(const QFileInfo &info, quint8 networkType, QString address) :
 | 
					WalletKeysFiles::WalletKeysFiles(const QFileInfo &info, int networkType, QString address) :
 | 
				
			||||||
        m_fileName(info.fileName()),
 | 
					        m_fileName(info.fileName()),
 | 
				
			||||||
        m_modified(info.lastModified().toSecsSinceEpoch()),
 | 
					        m_modified(info.lastModified().toSecsSinceEpoch()),
 | 
				
			||||||
        m_path(QDir::toNativeSeparators(info.absoluteFilePath())),
 | 
					        m_path(QDir::toNativeSeparators(info.absoluteFilePath())),
 | 
				
			||||||
| 
						 | 
					@ -42,7 +42,7 @@ QString WalletKeysFiles::path() const {
 | 
				
			||||||
    return m_path;
 | 
					    return m_path;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
quint8 WalletKeysFiles::networkType() const {
 | 
					int WalletKeysFiles::networkType() const {
 | 
				
			||||||
    return m_networkType;
 | 
					    return m_networkType;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -168,7 +168,7 @@ QVariant WalletKeysFilesModel::data(const QModelIndex &index, int role) const {
 | 
				
			||||||
    } else if(role == Qt::UserRole) {
 | 
					    } else if(role == Qt::UserRole) {
 | 
				
			||||||
        switch(index.column()) {
 | 
					        switch(index.column()) {
 | 
				
			||||||
            case ModelColumns::NetworkType:
 | 
					            case ModelColumns::NetworkType:
 | 
				
			||||||
                return static_cast<uint>(walletKeyFile.networkType());
 | 
					                return static_cast<int>(walletKeyFile.networkType());
 | 
				
			||||||
            case ModelColumns::FileName:
 | 
					            case ModelColumns::FileName:
 | 
				
			||||||
                return walletKeyFile.fileName();
 | 
					                return walletKeyFile.fileName();
 | 
				
			||||||
            case ModelColumns::Modified:
 | 
					            case ModelColumns::Modified:
 | 
				
			||||||
| 
						 | 
					@ -201,9 +201,15 @@ QVariant WalletKeysFilesModel::headerData(int section, Qt::Orientation orientati
 | 
				
			||||||
    return QVariant();
 | 
					    return QVariant();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
WalletKeysFilesProxyModel::WalletKeysFilesProxyModel(QObject *parent) :
 | 
					WalletKeysFilesProxyModel::WalletKeysFilesProxyModel(QObject *parent, NetworkType::Type nettype)
 | 
				
			||||||
        QSortFilterProxyModel(parent) {}
 | 
					    : QSortFilterProxyModel(parent)
 | 
				
			||||||
 | 
					    , m_nettype(nettype)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool WalletKeysFilesProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
 | 
					bool WalletKeysFilesProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
 | 
				
			||||||
    return true;
 | 
					    QModelIndex nettypeIndex = sourceModel()->index(sourceRow, WalletKeysFilesModel::NetworkType, sourceParent);
 | 
				
			||||||
 | 
					    NetworkType::Type nettype = static_cast<NetworkType::Type>(sourceModel()->data(nettypeIndex, Qt::UserRole).toInt());
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    return (m_nettype == nettype);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -12,19 +12,19 @@
 | 
				
			||||||
class WalletKeysFiles
 | 
					class WalletKeysFiles
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    WalletKeysFiles(const QFileInfo &info, quint8 networkType, QString address);
 | 
					    WalletKeysFiles(const QFileInfo &info, int networkType, QString address);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    QString fileName() const;
 | 
					    QString fileName() const;
 | 
				
			||||||
    qint64 modified() const;
 | 
					    qint64 modified() const;
 | 
				
			||||||
    QString path() const;
 | 
					    QString path() const;
 | 
				
			||||||
    quint8 networkType() const;
 | 
					    int networkType() const;
 | 
				
			||||||
    QString address() const;
 | 
					    QString address() const;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
private:
 | 
					private:
 | 
				
			||||||
    QString m_fileName;
 | 
					    QString m_fileName;
 | 
				
			||||||
    qint64 m_modified;
 | 
					    qint64 m_modified;
 | 
				
			||||||
    QString m_path;
 | 
					    QString m_path;
 | 
				
			||||||
    quint8 m_networkType;
 | 
					    int m_networkType;
 | 
				
			||||||
    QString m_address;
 | 
					    QString m_address;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -64,8 +64,11 @@ class WalletKeysFilesProxyModel : public QSortFilterProxyModel
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
Q_OBJECT
 | 
					Q_OBJECT
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
    explicit WalletKeysFilesProxyModel(QObject *parent = nullptr);
 | 
					    explicit WalletKeysFilesProxyModel(QObject *parent, NetworkType::Type nettype);
 | 
				
			||||||
    bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
 | 
					    bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					private:
 | 
				
			||||||
 | 
					    NetworkType::Type m_nettype;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif // KEYSFILES_H
 | 
					#endif // KEYSFILES_H
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -49,11 +49,12 @@ OpenWalletPage::OpenWalletPage(AppContext *ctx, QWidget *parent) :
 | 
				
			||||||
    this->walletKeysFilesModel = new WalletKeysFilesModel(m_ctx);
 | 
					    this->walletKeysFilesModel = new WalletKeysFilesModel(m_ctx);
 | 
				
			||||||
    this->walletKeysFilesModel->refresh();
 | 
					    this->walletKeysFilesModel->refresh();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    m_keysProxy = new WalletKeysFilesProxyModel();
 | 
					    m_keysProxy = new WalletKeysFilesProxyModel(this, m_ctx->networkType);
 | 
				
			||||||
    m_keysProxy->setSourceModel(this->walletKeysFilesModel);
 | 
					    m_keysProxy->setSourceModel(this->walletKeysFilesModel);
 | 
				
			||||||
    m_keysProxy->setSortRole(Qt::UserRole);
 | 
					    m_keysProxy->setSortRole(Qt::UserRole);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ui->walletTable->setModel(m_keysProxy);
 | 
					    ui->walletTable->setModel(m_keysProxy);
 | 
				
			||||||
 | 
					    ui->walletTable->hideColumn(WalletKeysFilesModel::NetworkType);
 | 
				
			||||||
    ui->walletTable->header()->setSectionResizeMode(QHeaderView::ResizeToContents);
 | 
					    ui->walletTable->header()->setSectionResizeMode(QHeaderView::ResizeToContents);
 | 
				
			||||||
    ui->walletTable->header()->setSectionResizeMode(WalletKeysFilesModel::Path, QHeaderView::Stretch);
 | 
					    ui->walletTable->header()->setSectionResizeMode(WalletKeysFilesModel::Path, QHeaderView::Stretch);
 | 
				
			||||||
    ui->walletTable->setSortingEnabled(true);
 | 
					    ui->walletTable->setSortingEnabled(true);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue