~hendrik-grewe/transmission/private-patch

« back to all changes in this revision

Viewing changes to qt/torrent-delegate-min.h

  • Committer: charles
  • Date: 2009-04-09 17:55:47 UTC
  • Revision ID: svn-v4:f4695dd4-2c0a-0410-b89c-da849a56a58e:trunk:8188
(trunk) add the Qt beta into svn 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file Copyright (C) 2009 Charles Kerr <charles@transmissionbt.com>
 
3
 *
 
4
 * This file is licensed by the GPL version 2.  Works owned by the
 
5
 * Transmission project are granted a special exemption to clause 2(b)
 
6
 * so that the bulk of its code can remain under the MIT license.
 
7
 * This exemption does not extend to derived works not owned by
 
8
 * the Transmission project.
 
9
 *
 
10
 * $Id:$
 
11
 */
 
12
 
 
13
#ifndef QTR_TORRENT_DELEGATE_MIN_H
 
14
#define QTR_TORRENT_DELEGATE_MIN_H
 
15
 
 
16
#include <QSize>
 
17
#include "torrent-delegate.h"
 
18
 
 
19
class QStyleOptionViewItem;
 
20
class QStyle;
 
21
class Session;
 
22
class Torrent;
 
23
 
 
24
class TorrentDelegateMin: public TorrentDelegate
 
25
{
 
26
        Q_OBJECT
 
27
 
 
28
    protected:
 
29
        virtual QSize sizeHint( const QStyleOptionViewItem&, const Torrent& ) const;
 
30
        void drawTorrent( QPainter* painter, const QStyleOptionViewItem& option, const Torrent& ) const;
 
31
 
 
32
    public:
 
33
        explicit TorrentDelegateMin( QObject * parent=0 ): TorrentDelegate(parent) { }
 
34
        virtual ~TorrentDelegateMin( ) { }
 
35
};
 
36
 
 
37
#endif