Make tabcompletion key configurable via shortcuts. fixes 1018
[quassel.git] / src / uisupport / abstractbuffercontainer.h
index bf58333..2911755 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2010 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -52,6 +52,11 @@ protected:
    */
   virtual void removeChatView(BufferId) = 0;
 
+  //! If true, the marker line will be set automatically on buffer switch
+  /** \return Whether the marker line should be set on buffer switch
+   */
+  virtual inline bool autoMarkerLine() const { return true; }
+
 protected slots:
   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);