Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
8bc885c3
Commit
8bc885c3
authored
Jul 09, 2015
by
Jeff
Browse files
Double Click to open replays
parent
bfa002e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
cockatrice/src/tab_replays.cpp
View file @
8bc885c3
...
@@ -80,12 +80,14 @@ TabReplays::TabReplays(TabSupervisor *_tabSupervisor, AbstractClient *_client)
...
@@ -80,12 +80,14 @@ TabReplays::TabReplays(TabSupervisor *_tabSupervisor, AbstractClient *_client)
aOpenLocalReplay
=
new
QAction
(
this
);
aOpenLocalReplay
=
new
QAction
(
this
);
aOpenLocalReplay
->
setIcon
(
QIcon
(
":/resources/icon_view.svg"
));
aOpenLocalReplay
->
setIcon
(
QIcon
(
":/resources/icon_view.svg"
));
connect
(
aOpenLocalReplay
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actOpenLocalReplay
()));
connect
(
aOpenLocalReplay
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actOpenLocalReplay
()));
connect
(
localDirView
,
SIGNAL
(
doubleClicked
(
const
QModelIndex
&
)),
this
,
SLOT
(
actOpenLocalReplay
()));
aDeleteLocalReplay
=
new
QAction
(
this
);
aDeleteLocalReplay
=
new
QAction
(
this
);
aDeleteLocalReplay
->
setIcon
(
QIcon
(
":/resources/remove_row.svg"
));
aDeleteLocalReplay
->
setIcon
(
QIcon
(
":/resources/remove_row.svg"
));
connect
(
aDeleteLocalReplay
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actDeleteLocalReplay
()));
connect
(
aDeleteLocalReplay
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actDeleteLocalReplay
()));
aOpenRemoteReplay
=
new
QAction
(
this
);
aOpenRemoteReplay
=
new
QAction
(
this
);
aOpenRemoteReplay
->
setIcon
(
QIcon
(
":/resources/icon_view.svg"
));
aOpenRemoteReplay
->
setIcon
(
QIcon
(
":/resources/icon_view.svg"
));
connect
(
aOpenRemoteReplay
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actOpenRemoteReplay
()));
connect
(
aOpenRemoteReplay
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actOpenRemoteReplay
()));
connect
(
serverDirView
,
SIGNAL
(
doubleClicked
(
const
QModelIndex
&
)),
this
,
SLOT
(
actOpenRemoteReplay
()));
aDownload
=
new
QAction
(
this
);
aDownload
=
new
QAction
(
this
);
aDownload
->
setIcon
(
QIcon
(
":/resources/arrow_left_green.svg"
));
aDownload
->
setIcon
(
QIcon
(
":/resources/arrow_left_green.svg"
));
connect
(
aDownload
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actDownload
()));
connect
(
aDownload
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
actDownload
()));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment