~ubuntu-branches/ubuntu/raring/quassel/raring-proposed

« back to all changes in this revision

Viewing changes to src/client/client.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-08-11 12:48:08 UTC
  • mfrom: (1.1.40 upstream)
  • Revision ID: james.westby@ubuntu.com-20100811124808-wl3zpp4gpbzmvn4t
Tags: 0.7~beta1-0ubuntu1
* New upstream beta release
  - Add libqca2-dev to build-depends for blowfish support
* Switch to source format v3 (Quilt) to use .bz2 tarball
  - Drop build-depends on quilt and update debian/rules
  - Add debian/source/format

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
  static void userInput(const BufferInfo &bufferInfo, const QString &message);
128
128
 
129
129
  static void setBufferLastSeenMsg(BufferId id, const MsgId &msgId); // this is synced to core and other clients
130
 
  static void setBufferMarkerLine(BufferId id, const MsgId &msgId); // this is synced to core and other clients
 
130
  static void setMarkerLine(BufferId id, const MsgId &msgId); // this is synced to core and other clients
 
131
  static MsgId markerLine(BufferId id);
 
132
 
131
133
  static void removeBuffer(BufferId id);
132
134
  static void renameBuffer(BufferId bufferId, const QString &newName);
133
135
  static void mergeBuffersPermanently(BufferId bufferId1, BufferId bufferId2);
202
204
  void coreNetworkRemoved(NetworkId);
203
205
 
204
206
  void requestInitialBacklog();
205
 
  void createDefaultBufferView();
206
207
 
207
208
  void sendBufferedUserInput();
208
209