~ubuntu-branches/ubuntu/jaunty/kpackagekit/jaunty

« back to all changes in this revision

Viewing changes to SmartIcon/KPackageKitSmartIcon.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-02-24 11:16:02 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090224111602-cskv8iurzafe9x0x
Tags: 0.4-0ubuntu1
* New upstream release
* Fixed kubuntu_01_editsources.patches to apply correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <KUniqueApplication>
25
25
#include <QTimer>
26
26
 
 
27
#include "KpkUpdateIcon.h"
 
28
#include "KpkDistroUpgrade.h"
27
29
#include "KpkTransactionTrayIcon.h"
28
30
 
29
31
namespace kpackagekit {
35
37
public:
36
38
    KPackageKit_Smart_Icon();
37
39
    virtual ~KPackageKit_Smart_Icon();
 
40
    int newInstance();
 
41
 
 
42
private slots:
 
43
    void prepareToClose();
 
44
    void close();
38
45
 
39
46
private:
 
47
    bool isRunning();
 
48
    QTimer *m_closeT;
 
49
 
40
50
    KpkTransactionTrayIcon *m_trayIcon;
41
 
    QTimer *m_closeT;
 
51
    KpkUpdateIcon *m_updateIcon;
 
52
    KpkDistroUpgrade *m_distroUpgrade;
42
53
};
43
54
 
44
55
}