0689f46cc7
- add missing license headers - make compatible with Qt5 - enforce header cleanup style - small code style cleanups - rename Coin Control dialog into Coin Control Address Selection - use default font for the windows labels (no monospace)
63 lines
1.2 KiB
C++
63 lines
1.2 KiB
C++
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef COINCONTROL_H
|
|
#define COINCONTROL_H
|
|
|
|
#include "core.h"
|
|
|
|
/** Coin Control Features. */
|
|
class CCoinControl
|
|
{
|
|
public:
|
|
CTxDestination destChange;
|
|
|
|
CCoinControl()
|
|
{
|
|
SetNull();
|
|
}
|
|
|
|
void SetNull()
|
|
{
|
|
destChange = CNoDestination();
|
|
setSelected.clear();
|
|
}
|
|
|
|
bool HasSelected() const
|
|
{
|
|
return (setSelected.size() > 0);
|
|
}
|
|
|
|
bool IsSelected(const uint256& hash, unsigned int n) const
|
|
{
|
|
COutPoint outpt(hash, n);
|
|
return (setSelected.count(outpt) > 0);
|
|
}
|
|
|
|
void Select(COutPoint& output)
|
|
{
|
|
setSelected.insert(output);
|
|
}
|
|
|
|
void UnSelect(COutPoint& output)
|
|
{
|
|
setSelected.erase(output);
|
|
}
|
|
|
|
void UnSelectAll()
|
|
{
|
|
setSelected.clear();
|
|
}
|
|
|
|
void ListSelected(std::vector<COutPoint>& vOutpoints)
|
|
{
|
|
vOutpoints.assign(setSelected.begin(), setSelected.end());
|
|
}
|
|
|
|
private:
|
|
std::set<COutPoint> setSelected;
|
|
|
|
};
|
|
|
|
#endif // COINCONTROL_H
|