aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.h
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-06-20 21:48:10 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-09-16 16:50:19 +0200
commit6135309816208740888b25bc27ea123c1c825a04 (patch)
tree7b11a1e8f698f3b264e3273e77174b9b25e80864 /src/qt/rpcconsole.h
parent770ca79aa02964f56610ffaf15b16297634fa065 (diff)
downloadbitcoin-6135309816208740888b25bc27ea123c1c825a04.tar.xz
[Qt] banlist, UI optimizing and better signal handling
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r--src/qt/rpcconsole.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h
index db1f3d433d..9674cc5275 100644
--- a/src/qt/rpcconsole.h
+++ b/src/qt/rpcconsole.h
@@ -64,6 +64,8 @@ private Q_SLOTS:
void showPeersTableContextMenu(const QPoint& point);
/** Show custom context menu on Bans tab */
void showBanTableContextMenu(const QPoint& point);
+ /** Hides ban table if no bans are present */
+ void showOrHideBanTableIfRequired();
public Q_SLOTS:
void clear();
@@ -105,7 +107,10 @@ private:
{
ADDRESS_COLUMN_WIDTH = 200,
SUBVERSION_COLUMN_WIDTH = 100,
- PING_COLUMN_WIDTH = 80
+ PING_COLUMN_WIDTH = 80,
+ BANSUBNET_COLUMN_WIDTH = 300,
+ BANTIME_COLUMN_WIDTH = 150
+
};
Ui::RPCConsole *ui;