~ubuntu-branches/ubuntu/natty/muon/natty

« back to all changes in this revision

Viewing changes to libmuon/StatusWidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2011-01-03 14:28:31 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20110103142831-htvytta1vjsdggcg
Tags: 1.0.95-0ubuntu1
* New upstream release candidate:
  - Add a new libmuonprivate1 package for the new libmuonprivate library
    which was formerly a static library
  - Create debian/not-installed and place the development symlink for
    libmuonprivate in it, since it is a private library
* Port the packaging to the debhelper 8 standard:
  - Bump debian/compat to 8
  - Bump the build-depend version on debhelper to 8.0.0~
  - Place the debhelper options after the sequence in debian/rules
* Add a homepage field to debian/control with Muon's homepage

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
// KDE includes
25
25
#include <KHBox>
26
26
 
 
27
#include "libmuonprivate_export.h"
 
28
 
27
29
class QLabel;
28
30
class QProgressBar;
 
31
class QTimer;
29
32
 
30
33
namespace QApt {
31
34
    class Backend;
32
35
}
33
36
 
34
 
class StatusWidget : public KHBox
 
37
class MUONPRIVATE_EXPORT StatusWidget : public KHBox
35
38
{
36
39
    Q_OBJECT
37
40
public:
45
48
    QLabel *m_changesLabel;
46
49
    QLabel *m_downloadLabel;
47
50
    QProgressBar *m_xapianProgress;
 
51
    QTimer *m_xapianTimeout;
48
52
 
49
53
public Q_SLOTS:
50
54
    void setBackend(QApt::Backend *backend);