~ubuntu-branches/ubuntu/karmic/transmission/karmic-proposed

« back to all changes in this revision

Viewing changes to qt/.svn/text-base/torrent-delegate-min.h.svn-base

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2009-12-06 19:11:34 UTC
  • mfrom: (2.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20091206191134-t0ayk0mv6xuoyt0t
Tags: 1.75-0ubuntu2.1
* debian/patches/25_new_inhibition_api.diff:
  - Port Transmission to the new gnome-session inhibit API in order
    to make suspend/hibernate inhibiting work again on Karmic (LP: #457123)

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