~ubuntu-branches/ubuntu/lucid/konversation/lucid-updates

« back to all changes in this revision

Viewing changes to src/viewer/ircview.h

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2009-05-15 11:24:24 UTC
  • mfrom: (1.15.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: james.westby@ubuntu.com-20090515112424-b74i26lciabf4qnk
Tags: 1.1.75+svn968012-1
* New upstream development snapshot:
  - Last Changed Author: hein
  - Last Changed Rev: 968012
  - Last Changed Date: 2009-05-14 21:03:55 +0300
* Update README.source.
* Use dh --quilt instead of custom patch handling, build depend on
  quilt 0.46-7~.
* Update patches to upstream changes.
* Update konversation.install: remove docs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
        //! FIXME enum { Raw, Query, Query+Action, Channel+Action, Server Message, Command Message, Backlog message } this looks more like a tuple
100
100
        void append(const QString& nick, const QString& message);
101
101
        void appendRaw(const QString& message, bool suppressTimestamps=false, bool self = false);
 
102
        void appendLog(const QString& message);
102
103
 
103
104
        void appendQuery(const QString& nick, const QString& message, bool inChannel = false);
104
105
        void appendQueryAction(const QString& nick, const QString& message);
115
116
 
116
117
    protected:
117
118
        void doAppend(const QString& line, bool self=false);
 
119
        /**
 
120
         * Appends a newLine without any scrollback or notification checks
 
121
         * @param newLine 
 
122
         */
 
123
        void doRawAppend(const QString& newLine);
118
124
        void appendLine(const QString& color);
119
125
        void appendRememberLine();
120
126