RetroShare/retroshare-gui/src/gui/TurtleRouterDialog.h
csoler 53dd3019fb added these missign files
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1541 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-08-17 07:00:34 +00:00

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 ;
} ;