mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-25 17:21:05 -04:00
Channels
- removed settings button - deals with hashing of its own files subfileitem - absolved from file hashing responsibility - added play button functionality(taken from transfer dialog, thanks) blog - removed file attachments feature (only for blogging ), will add pic support later git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2867 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
e1c4992680
commit
c5e8669ec0
12 changed files with 97 additions and 622 deletions
|
@ -41,14 +41,21 @@ const uint32_t SFI_STATE_UPLOAD = 0x0006;
|
|||
const uint32_t SFI_TYPE_CHANNEL = 0x0010;
|
||||
const uint32_t SFI_TYPE_ATTACH = 0x0020;
|
||||
|
||||
|
||||
//! This create a gui widget that allows users to access files shared by user
|
||||
/*!
|
||||
* Widget that allows user to share files with a visual attachment interface
|
||||
* Note: extra files (files not already shared/hashed in rs) need to
|
||||
* be hashed by the clients of this class or else objects of this class will
|
||||
* have reduced functionality
|
||||
*/
|
||||
class SubFileItem : public QWidget, private Ui::SubFileItem
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
/** Default Constructor */
|
||||
SubFileItem(std::string localpath);
|
||||
SubFileItem(std::string hash, std::string name, uint64_t size,
|
||||
SubFileItem(std::string hash, std::string name, std::string path, uint64_t size,
|
||||
uint32_t flags, std::string srcId);
|
||||
|
||||
/** Default Destructor */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue