X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fbufferwidget.h;h=dc8b8236b8cfddb63ba9d259fb729ae3ee3e214d;hb=d2ba31191366ed2e4e7fdb6203ac461f26ae7073;hp=fd8c9ac38210c2bd6acc5382a94222854f6054fd;hpb=7e76b93191c8f19c24709f36992c99f8ee9d508d;p=quassel.git diff --git a/src/qtui/bufferwidget.h b/src/qtui/bufferwidget.h index fd8c9ac3..dc8b8236 100644 --- a/src/qtui/bufferwidget.h +++ b/src/qtui/bufferwidget.h @@ -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,14 +40,18 @@ public: virtual bool eventFilter(QObject *watched, QEvent *event); inline ChatViewSearchBar *searchBar() const { return ui.searchBar; } - void addActionsToMenu(QMenu *); + void addActionsToMenu(QMenu *, const QPointF &pos); protected: virtual AbstractChatView *createChatView(BufferId); virtual void removeChatView(BufferId); + virtual inline bool autoMarkerLine() const { return _autoMarkerLine; } protected slots: + virtual void currentChanged(const QModelIndex ¤t, const QModelIndex &previous); virtual void showChatView(BufferId); +public slots: + virtual void setMarkerLine(ChatView *view = 0, bool allowGoingBack = true); private slots: void scrollToHighlight(QGraphicsItem *highlightItem); @@ -54,11 +59,15 @@ private slots: void zoomOut(); void zoomOriginal(); + void setAutoMarkerLine(const QVariant &); + private: Ui::BufferWidget ui; QHash _chatViews; ChatViewSearchController *_chatViewSearchController; + + bool _autoMarkerLine; }; #endif