merged client_test from libtorrent_aio
This commit is contained in:
parent
24103c6603
commit
84ccb31a6d
|
@ -1870,6 +1870,8 @@ int main(int argc, char* argv[])
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
int max_lines = terminal_height - 15;
|
||||||
|
|
||||||
// loop through the alert queue to see if anything has happened.
|
// loop through the alert queue to see if anything has happened.
|
||||||
std::deque<alert*> alerts;
|
std::deque<alert*> alerts;
|
||||||
ses.pop_alerts(&alerts);
|
ses.pop_alerts(&alerts);
|
||||||
|
@ -1928,7 +1930,7 @@ int main(int argc, char* argv[])
|
||||||
for (std::vector<feed_handle>::iterator i = feeds.begin()
|
for (std::vector<feed_handle>::iterator i = feeds.begin()
|
||||||
, end(feeds.end()); i != end; ++i)
|
, end(feeds.end()); i != end; ++i)
|
||||||
{
|
{
|
||||||
if (lines_printed >= terminal_height - 15)
|
if (lines_printed >= max_lines)
|
||||||
{
|
{
|
||||||
out += "...\n";
|
out += "...\n";
|
||||||
break;
|
break;
|
||||||
|
@ -1948,10 +1950,21 @@ int main(int argc, char* argv[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// handle scrolling down when moving the cursor
|
||||||
|
// below the fold
|
||||||
|
int start_offset = 0;
|
||||||
|
if (active_torrent >= max_lines - lines_printed)
|
||||||
|
start_offset = active_torrent - max_lines + lines_printed + 1;
|
||||||
|
|
||||||
for (std::vector<torrent_status const*>::iterator i = filtered_handles.begin();
|
for (std::vector<torrent_status const*>::iterator i = filtered_handles.begin();
|
||||||
i != filtered_handles.end(); ++torrent_index)
|
i != filtered_handles.end(); ++torrent_index)
|
||||||
{
|
{
|
||||||
if (lines_printed >= terminal_height - 15)
|
if (torrent_index < start_offset)
|
||||||
|
{
|
||||||
|
++i;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (lines_printed >= max_lines)
|
||||||
{
|
{
|
||||||
out += "...\n";
|
out += "...\n";
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue