forked from premiere/premiere-libtorrent
110 lines
3.1 KiB
C++
110 lines
3.1 KiB
C++
/*
|
|
|
|
Copyright (c) 2003-2017, Arvid Norberg
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in
|
|
the documentation and/or other materials provided with the distribution.
|
|
* Neither the name of the author nor the names of its
|
|
contributors may be used to endorse or promote products derived
|
|
from this software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
#ifndef TORRENT_VIEW_HPP_
|
|
#define TORRENT_VIEW_HPP_
|
|
|
|
#include <set>
|
|
#include <vector>
|
|
#include <unordered_set>
|
|
|
|
#include "libtorrent/fwd.hpp"
|
|
#include "libtorrent/torrent_status.hpp"
|
|
|
|
|
|
struct torrent_view
|
|
{
|
|
torrent_view();
|
|
|
|
void set_size(int width, int height);
|
|
|
|
enum {
|
|
torrents_all,
|
|
torrents_downloading,
|
|
torrents_not_paused,
|
|
torrents_seeding,
|
|
torrents_queued,
|
|
torrents_stopped,
|
|
torrents_checking,
|
|
|
|
torrents_max
|
|
};
|
|
|
|
int filter() const;
|
|
|
|
void set_filter(int filter);
|
|
|
|
// returns the lt::torrent_status of the currently selected torrent.
|
|
lt::torrent_status const& get_active_torrent() const;
|
|
lt::torrent_handle get_active_handle() const;
|
|
|
|
void update_torrents(std::vector<lt::torrent_status> st);
|
|
|
|
int height() const;
|
|
|
|
void arrow_up();
|
|
void arrow_down();
|
|
|
|
void render();
|
|
|
|
private:
|
|
|
|
void print_tabs();
|
|
|
|
void print_headers();
|
|
|
|
void print_torrent(lt::torrent_status const& s, bool selected);
|
|
|
|
bool show_torrent(lt::torrent_status const& st);
|
|
|
|
// refresh all pointers in m_filtered_handles. This must be done when
|
|
// inserting or removing elements from m_all_handles, since pointers may
|
|
// be invalidated or when a torrent changes status to either become
|
|
// visible or filtered
|
|
void update_filtered_torrents();
|
|
|
|
// all torrents
|
|
std::unordered_set<lt::torrent_status> m_all_handles;
|
|
|
|
// pointers into m_all_handles of the remaining torrents after filtering
|
|
std::vector<lt::torrent_status const*> m_filtered_handles;
|
|
|
|
mutable int m_active_torrent; // index into m_filtered_handles
|
|
int m_scroll_position;
|
|
int m_torrent_filter;
|
|
int m_width;
|
|
int m_height;
|
|
};
|
|
|
|
#endif // TORRENT_VIEW_HPP_
|
|
|