Disables JavaScript, which fixes #1089 and other issues related to modal dialogs...
[quassel.git] / src / qtui / bufferwidget.h
index 75027cb..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;
 
@@ -36,23 +37,39 @@ public:
   BufferWidget(QWidget *parent);
   ~BufferWidget();
 
+  virtual bool eventFilter(QObject *watched, QEvent *event);
+
   inline ChatViewSearchBar *searchBar() const { return ui.searchBar; }
+  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:
   void scrollToHighlight(QGraphicsItem *highlightItem);
+  void zoomIn();
+  void zoomOut();
+  void zoomOriginal();
+
+  void setAutoMarkerLine(const QVariant &);
 
 private:
   Ui::BufferWidget ui;
   QHash<BufferId, QWidget *> _chatViews;
 
   ChatViewSearchController *_chatViewSearchController;
+
+  bool _autoMarkerLine;
 };
 
 #endif