Disables JavaScript, which fixes #1089 and other issues related to modal dialogs...
[quassel.git] / src / qtui / bufferwidget.h
index fd8c9ac..4eb8b6d 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -26,6 +26,7 @@
 #include "abstractbuffercontainer.h"
 
 class QGraphicsItem;
+class ChatView;
 class ChatViewSearchBar;
 class ChatViewSearchController;
 
@@ -39,13 +40,19 @@ public:
   virtual bool eventFilter(QObject *watched, QEvent *event);
 
   inline ChatViewSearchBar *searchBar() const { return ui.searchBar; }
-  void addActionsToMenu(QMenu *);
+  void addActionsToMenu(QMenu *, const QPointF &pos);
+
+public slots:
+  virtual void setMarkerLine(ChatView *view = 0, bool allowGoingBack = true);
+  virtual void jumpToMarkerLine(ChatView *view = 0, bool requestBacklog = true);
 
 protected:
   virtual AbstractChatView *createChatView(BufferId);
   virtual void removeChatView(BufferId);
+  virtual inline bool autoMarkerLine() const { return _autoMarkerLine; }
 
 protected slots:
+  virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
   virtual void showChatView(BufferId);
 
 private slots:
@@ -54,11 +61,15 @@ private slots:
   void zoomOut();
   void zoomOriginal();
 
+  void setAutoMarkerLine(const QVariant &);
+
 private:
   Ui::BufferWidget ui;
   QHash<BufferId, QWidget *> _chatViews;
 
   ChatViewSearchController *_chatViewSearchController;
+
+  bool _autoMarkerLine;
 };
 
 #endif