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

« back to all changes in this revision

Viewing changes to src/qtui/chatmonitorfilter.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  *
58
58
    void showHighlightsSettingChanged(const QVariant &newValue);
59
59
    void operationModeSettingChanged(const QVariant &newValue);
60
60
    void buffersSettingChanged(const QVariant &newValue);
 
61
    void showBacklogSettingChanged(const QVariant &newValue);
 
62
    void includeReadSettingChanged(const QVariant &newValue);
61
63
 
62
64
private:
63
65
    int _showFields;
65
67
    QList<BufferId> _bufferIds;
66
68
    bool _showHighlights;
67
69
    int _operationMode;
 
70
    bool _showBacklog;
 
71
    bool _includeRead;
68
72
};
69
73
 
70
74