mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c37679e807
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2310 b45a01b8-16f6-495d-af2f-9b41ad6348cc
28 lines
597 B
C++
28 lines
597 B
C++
#pragma once
|
|
|
|
#include <QPoint>
|
|
#include "ui_TurtleRouterDialog.h"
|
|
#include "RsAutoUpdatePage.h"
|
|
|
|
class TurtleRouterDialog: public RsAutoUpdatePage, public Ui::TurtleRouterDialogForm
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TurtleRouterDialog(QWidget *parent = NULL) ;
|
|
static void showUp() ;
|
|
|
|
/** Default Constructor */
|
|
protected slots:
|
|
void showCtxMenu(const QPoint&) ;
|
|
void removeFileHash() ;
|
|
|
|
private:
|
|
void fillTable(QTableWidget *table,const std::vector<std::vector<std::string> >&) ;
|
|
QTimer *_timer ;
|
|
|
|
virtual void updateDisplay() ;
|
|
|
|
static TurtleRouterDialog *_instance ;
|
|
} ;
|