mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-02-18 05:44:14 -05:00
![csoler](/assets/img/avatar_default.png)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1541 b45a01b8-16f6-495d-af2f-9b41ad6348cc
26 lines
542 B
C++
26 lines
542 B
C++
#pragma once
|
|
|
|
#include <QPoint>
|
|
#include "ui_TurtleRouterDialog.h"
|
|
|
|
class TurtleRouterDialog: public QWidget, public Ui::TurtleRouterDialogForm
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void showUp() ;
|
|
|
|
/** Default Constructor */
|
|
protected slots:
|
|
void update() ;
|
|
void showCtxMenu(const QPoint&) ;
|
|
void removeFileHash() ;
|
|
|
|
private:
|
|
void fillTable(QTableWidget *table,const std::vector<std::vector<std::string> >&) ;
|
|
TurtleRouterDialog(QWidget *parent = NULL) ;
|
|
QTimer *_timer ;
|
|
|
|
static TurtleRouterDialog *_instance ;
|
|
} ;
|