Fix off-by-one error in computeWrapList()
[quassel.git] / src / qtui / channellistdlg.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "channellistdlg.h"
22
23 #include "client.h"
24 #include "clientirclisthelper.h"
25
26 #include <QHeaderView>
27 #include <QHBoxLayout>
28 #include <QSpacerItem>
29
30 ChannelListDlg::ChannelListDlg(QWidget *parent)
31   : QDialog(parent),
32     _listFinished(true),
33     _ircListModel(this),
34     _sortFilter(this),
35     _simpleModeSpacer(0),
36     _advancedMode(false)
37 {
38   _sortFilter.setSourceModel(&_ircListModel);
39   _sortFilter.setFilterCaseSensitivity(Qt::CaseInsensitive);
40   _sortFilter.setFilterKeyColumn(-1);
41   
42   ui.setupUi(this);
43   ui.channelListView->setSelectionBehavior(QAbstractItemView::SelectRows);
44   ui.channelListView->setSelectionMode(QAbstractItemView::SingleSelection);
45   ui.channelListView->setAlternatingRowColors(true);
46   ui.channelListView->setTabKeyNavigation(false);
47   ui.channelListView->setModel(&_sortFilter);
48   ui.channelListView->setSortingEnabled(true);
49   ui.channelListView->verticalHeader()->hide();
50   ui.channelListView->horizontalHeader()->setStretchLastSection(true);
51
52   ui.searchChannelsButton->setAutoDefault(false);
53
54   connect(ui.advancedModeLabel, SIGNAL(clicked()), this, SLOT(toggleMode()));
55   connect(ui.searchChannelsButton, SIGNAL(clicked()), this, SLOT(requestSearch()));
56   connect(ui.channelNameLineEdit, SIGNAL(returnPressed()), this, SLOT(requestSearch()));
57   connect(ui.filterLineEdit, SIGNAL(textChanged(QString)), &_sortFilter, SLOT(setFilterFixedString(QString)));
58   connect(Client::ircListHelper(), SIGNAL(channelListReceived(const NetworkId &, const QStringList &, QList<IrcListHelper::ChannelDescription>)),
59           this, SLOT(receiveChannelList(NetworkId , QStringList, QList<IrcListHelper::ChannelDescription>)));
60   connect(Client::ircListHelper(), SIGNAL(finishedListReported(const NetworkId &)), this, SLOT(reportFinishedList()));
61   connect(Client::ircListHelper(), SIGNAL(errorReported(const QString &)), this, SLOT(showError(const QString &)));
62   connect(ui.channelListView, SIGNAL(activated(QModelIndex)), this, SLOT(joinChannel(QModelIndex)));
63
64   setAdvancedMode(false);
65   enableQuery(true);
66   showFilterLine(false);
67   showErrors(false);
68 }
69
70 void ChannelListDlg::setNetwork(NetworkId netId) {
71   if(_netId == netId)
72     return;
73   
74   _netId = netId;
75   _ircListModel.setChannelList();
76   showFilterLine(false);
77 }
78
79 void ChannelListDlg::requestSearch() {
80   _listFinished = false;
81   enableQuery(false);
82   showErrors(false);
83   QStringList channelFilters;
84   channelFilters << ui.channelNameLineEdit->text().trimmed();
85   Client::ircListHelper()->requestChannelList(_netId, channelFilters);
86 }
87
88 void ChannelListDlg::receiveChannelList(const NetworkId &netId, const QStringList &channelFilters, const QList<IrcListHelper::ChannelDescription> &channelList) {
89   Q_UNUSED(netId)
90   Q_UNUSED(channelFilters)
91
92   showFilterLine(!channelList.isEmpty());
93   _ircListModel.setChannelList(channelList);
94   enableQuery(_listFinished);
95 }
96
97 void ChannelListDlg::showFilterLine(bool show) {
98   ui.line->setVisible(show);
99   ui.filterLabel->setVisible(show);
100   ui.filterLineEdit->setVisible(show);
101 }
102
103 void ChannelListDlg::enableQuery(bool enable) {
104   ui.channelNameLineEdit->setEnabled(enable);
105   ui.searchChannelsButton->setEnabled(enable);
106 }
107
108 void ChannelListDlg::setAdvancedMode(bool advanced) {
109   _advancedMode = advanced;
110
111 #if QT_VERSION >=  0x040400
112   // FIXME: remove if macro when we depend on Qt 4.4
113   if(advanced) {
114     if(_simpleModeSpacer) {
115       ui.searchLayout->removeItem(_simpleModeSpacer);
116       delete _simpleModeSpacer;
117       _simpleModeSpacer = 0;
118     }
119     ui.advancedModeLabel->setPixmap(QPixmap(QString::fromUtf8(":/22x22/actions/oxygen/22x22/actions/edit-clear-locationbar-rtl.png")));
120   } else {
121     if(!_simpleModeSpacer) {
122       _simpleModeSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
123       ui.searchLayout->insertSpacerItem(0, _simpleModeSpacer);
124     }
125     ui.advancedModeLabel->setPixmap(QPixmap(QString::fromUtf8(":/22x22/actions/oxygen/22x22/actions/edit-clear.png")));
126   }
127 #endif
128   
129   ui.channelNameLineEdit->clear();
130   ui.channelNameLineEdit->setVisible(advanced);
131   ui.searchPatternLabel->setVisible(advanced);
132 }
133
134 void ChannelListDlg::showErrors(bool show) {
135   if(!show) {
136     ui.errorTextEdit->clear();
137   }
138   ui.errorLabel->setVisible(show);
139   ui.errorTextEdit->setVisible(show);
140 }
141
142
143 void ChannelListDlg::reportFinishedList() {
144   _listFinished = true;
145 }
146
147 void ChannelListDlg::showError(const QString &error) {
148   showErrors(true);
149   ui.errorTextEdit->moveCursor(QTextCursor::End);
150   ui.errorTextEdit->insertPlainText(error + "\n");
151 }
152
153 void ChannelListDlg::joinChannel(const QModelIndex &index) {
154   Client::instance()->userInput(BufferInfo::fakeStatusBuffer(_netId), QString("/JOIN %1").arg(index.sibling(index.row(), 0).data().toString()));
155 }