mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c35a48feb7
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1571 b45a01b8-16f6-495d-af2f-9b41ad6348cc
31 lines
587 B
C++
31 lines
587 B
C++
#include "ui_TrustView.h"
|
|
|
|
class QWheelEvent ;
|
|
class QShowEvent ;
|
|
|
|
class TrustView: public QWidget, public Ui::TrustView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TrustView() ;
|
|
|
|
protected:
|
|
virtual void wheelEvent(QWheelEvent *) ;
|
|
virtual void showEvent(QShowEvent *) ;
|
|
|
|
public slots:
|
|
void update() ;
|
|
void updateZoom(int) ;
|
|
void selectCell(int,int) ;
|
|
void hideShowPeers(int) ;
|
|
|
|
private:
|
|
void getCellSize(int z,int& cell_width,int& cell_height) const ;
|
|
int getRowColId(const std::string& name) ;
|
|
|
|
static const int _base_cell_width = 60 ;
|
|
static const int _base_cell_height = 30 ;
|
|
};
|
|
|