2007-12-17 06:30:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2007 Bryan Varner
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
* in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* $Id:$
|
|
|
|
*/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
#ifndef TR_TRANSFER
|
|
|
|
#define TR_TRANSFER
|
|
|
|
|
|
|
|
#include <Entry.h>
|
|
|
|
#include <ListItem.h>
|
|
|
|
#include <Locker.h>
|
|
|
|
#include <String.h>
|
|
|
|
#include <View.h>
|
|
|
|
|
2007-07-18 23:04:26 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
class TRTransfer : public BListItem {
|
|
|
|
public: // Construction and Controll methods.
|
2007-02-22 12:49:34 +00:00
|
|
|
TRTransfer(const char *fullpath, node_ref node, tr_torrent_t *torrentRef);
|
2006-07-16 19:39:23 +00:00
|
|
|
~TRTransfer();
|
|
|
|
|
|
|
|
inline node_ref GetCachedNodeRef() { return cachedNodeRef; };
|
|
|
|
inline const char* GetCachedPath() { return cachedPath->String(); };
|
2007-02-22 12:49:34 +00:00
|
|
|
inline tr_torrent_t* GetTorrent() { return torrent; };
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-07-30 13:59:23 +00:00
|
|
|
bool UpdateStatus(const tr_stat_t *stat, bool shade);
|
2007-02-22 12:49:34 +00:00
|
|
|
bool IsRunning();
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
public: // BListItem
|
|
|
|
virtual void Update(BView *owner, const BFont *font);
|
|
|
|
virtual void DrawItem(BView *owner, BRect frame, bool complete = false);
|
|
|
|
|
|
|
|
private:
|
|
|
|
node_ref cachedNodeRef;
|
|
|
|
BString *cachedPath;
|
2007-02-22 12:49:34 +00:00
|
|
|
tr_torrent_t *torrent;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
private: // Private members used for rendering.
|
|
|
|
float fBaselineOffset;
|
|
|
|
float fLineSpacing;
|
|
|
|
|
|
|
|
BLocker *fStatusLock;
|
|
|
|
tr_stat_t *fStatus;
|
2007-02-22 12:49:34 +00:00
|
|
|
BString *fName;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
rgb_color fBarColor;
|
|
|
|
|
|
|
|
char* fTimeStr;
|
|
|
|
char* fTransStr;
|
|
|
|
|
|
|
|
bool fShade;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* TR_TRANSFER */
|