mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
506f14eb2f
en visible, and each time it gets showed. I already made some RS pages derive from this page. - Modified and renamed the taskGraphPainterWidget to display info about currently selected file transfers. For know, it only shows file chunks info, but we should use it to display additional info about the transfer. Warning: in its current state, only fake chunk info is displayed. - Suppressed p3files.h, because it is not used. Remains to do (in order): - Implement a chunk map class in ft/ to properly manage which chunks should be downloaded - Display correct chunk info by requesting the transfer's chunk map - Add check-sum verification of chunks - allow RS to import a partially downloaded file by force re-checking chunks - Add chunk map exchange from file source peer id to file destination peer id. - Manage chunks from different peers. - Allow search (turtle search) for partially downloaded files git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1832 b45a01b8-16f6-495d-af2f-9b41ad6348cc
34 lines
739 B
C++
34 lines
739 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <QWidget>
|
|
#include "mainpage.h"
|
|
|
|
// This class implement a basic RS functionality which is that widgets displayign info
|
|
// should update regularly. They also should update only when visible, to save CPU time.
|
|
//
|
|
// Using this class simply needs to derive your widget from RsAutoUpdateWidget
|
|
// and oveload the update() function with the actual code that updates the
|
|
// widget.
|
|
//
|
|
class QTimer ;
|
|
|
|
class RsAutoUpdatePage: public MainPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RsAutoUpdatePage(int ms_update_period = 1000,QWidget *parent=NULL) ;
|
|
|
|
virtual void updateDisplay() {}
|
|
|
|
protected:
|
|
virtual void showEvent(QShowEvent *e) ;
|
|
|
|
private slots:
|
|
void timerUpdate() ;
|
|
|
|
private:
|
|
QTimer *_timer ;
|
|
};
|