~ubuntu-branches/ubuntu/lucid/kmess/lucid

« back to all changes in this revision

Viewing changes to src/dialogs/chathistorydialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-12-05 21:19:26 UTC
  • mfrom: (1.1.7 upstream) (0.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20091205211926-r26u8j38kysf6o2p
Tags: 2.0.2-1
* New upstream release 
  - Fixes friendly names (LP: #485640)
* Update Homepage: http://kmess.org
* Add Build-Depends: libphonon-dev | libqt4-phonon-dev (ubuntu friendly)
* kmess.1 fix lintian:hyphen-used-as-minus-sign

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
 
33
33
// Forward declarations
34
 
class ChatMessageView;
35
34
class QSortFilterProxyModel;
36
35
class QStandardItemModel;
37
36
class QTimer;
 
37
class Account;
 
38
class ChatMessageView;
38
39
class XmlLogParser;
39
40
 
40
41
 
68
69
    void                   setLoading( bool isLoading = false );
69
70
    // Show the context menu for the chat message view
70
71
    void                   slotShowContextMenu( const QString &clickedUrl, const QPoint &point );
 
72
    // Change the account for which to show logs
 
73
    void                   reloadHandle( int index );
 
74
 
71
75
  private:
72
76
    // Mutex to watch over the chats addition
73
77
    QMutex                 addConversationLock_;
87
91
    QTimer                *reloadLogsTimer_;
88
92
    // Cache to store a contact's entire chat history
89
93
    QDomDocument           xml_;
 
94
    // The account which to display logs of
 
95
    Account               *historyAccount_;
90
96
};
91
97
 
92
98