Split Number of Files and Size in RemoteDirModel.

This commit is contained in:
Phenom 2018-02-19 20:13:38 +01:00
parent afc43d0ff7
commit 798ad15c3b
3 changed files with 227 additions and 181 deletions

View file

@ -22,11 +22,21 @@
#ifndef REMOTE_DIR_MODEL
#define REMOTE_DIR_MODEL
#include <retroshare/rstypes.h>
#include <QAbstractItemModel>
#include <QIcon>
#include <vector>
#include <stdint.h>
#include <retroshare/rstypes.h>
#include <vector>
#define COLUMN_NAME 0
#define COLUMN_FILENB 1
#define COLUMN_SIZE 2
#define COLUMN_AGE 3
#define COLUMN_FRIEND_ACCESS 4
#define COLUMN_WN_VISU_DIR 5
#define COLUMN_COUNT 6
class DirDetails;