~ubuntu-branches/ubuntu/trusty/quassel/trusty-proposed

« back to all changes in this revision

Viewing changes to src/qtui/bufferwidget.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman
  • Date: 2014-02-18 23:18:25 UTC
  • mto: This revision was merged to the branch mainline in revision 98.
  • Revision ID: package-import@ubuntu.com-20140218231825-hfgaeo3nmszt2pth
Tags: upstream-0.10~beta1
ImportĀ upstreamĀ versionĀ 0.10~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/***************************************************************************
2
 
 *   Copyright (C) 2005-2013 by the Quassel Project                        *
 
2
 *   Copyright (C) 2005-2014 by the Quassel Project                        *
3
3
 *   devel@quassel-irc.org                                                 *
4
4
 *                                                                         *
5
5
 *   This program is free software; you can redistribute it and/or modify  *
42
42
 
43
43
    inline ChatViewSearchBar *searchBar() const { return ui.searchBar; }
44
44
    void addActionsToMenu(QMenu *, const QPointF &pos);
 
45
    virtual inline bool autoMarkerLineOnLostFocus() const { return _autoMarkerLineOnLostFocus; }
45
46
 
46
47
public slots:
47
48
    virtual void setMarkerLine(ChatView *view = 0, bool allowGoingBack = true);
63
64
    void zoomOriginal();
64
65
 
65
66
    void setAutoMarkerLine(const QVariant &);
 
67
    void setAutoMarkerLineOnLostFocus(const QVariant &);
66
68
 
67
69
private:
68
70
    Ui::BufferWidget ui;
71
73
    ChatViewSearchController *_chatViewSearchController;
72
74
 
73
75
    bool _autoMarkerLine;
 
76
    bool _autoMarkerLineOnLostFocus;
74
77
};
75
78
 
76
79