X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fbufferwidget.h;h=4eb8b6d99a59332793db97fd64ac74efedc34187;hp=fd8c9ac38210c2bd6acc5382a94222854f6054fd;hb=46984aca05b2d5f8dddd0c8739e60a1753078123;hpb=7e76b93191c8f19c24709f36992c99f8ee9d508d diff --git a/src/qtui/bufferwidget.h b/src/qtui/bufferwidget.h index fd8c9ac3..4eb8b6d9 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,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 ¤t, 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 _chatViews; ChatViewSearchController *_chatViewSearchController; + + bool _autoMarkerLine; }; #endif