fixed the target buffers for queries
[quassel.git] / src / qtui / inputwidget.h
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 #ifndef INPUTWIDGET_H
22 #define INPUTWIDGET_H
23
24 #include "ui_inputwidget.h"
25 #include <QPointer>
26 #include <QItemSelectionModel>
27
28 #include "buffermodel.h"
29 #include "bufferinfo.h"
30 #include "identity.h"
31 #include "network.h";
32
33 class InputWidget : public QWidget {
34   Q_OBJECT
35
36 public:
37   InputWidget(QWidget *parent = 0);
38   virtual ~InputWidget();
39
40   inline BufferModel *model() { return _bufferModel; }
41   void setModel(BufferModel *bufferModel);
42
43   inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
44   void setSelectionModel(QItemSelectionModel *selectionModel);
45
46   const Network *currentNetwork() const;
47
48 protected slots:
49 //   virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint);
50 //   virtual void commitData(QWidget *editor);
51   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
52 //   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
53 //   virtual void editorDestroyed(QObject *editor);
54 //   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
55 //   virtual void rowsInserted(const QModelIndex &parent, int start, int end);
56 //   virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
57
58 private slots:
59   void enterPressed();
60   void changeNick(const QString &newNick) const;
61
62   void setNetwork(const Network *network);
63   void setIdentity(const IdentityId &identityId);
64   void updateNickSelector() const;
65
66 signals:
67   void userInput(BufferInfo, QString msg) const;
68
69 private:
70   Ui::InputWidget ui;
71
72   bool validBuffer;
73   BufferInfo currentBufferInfo;
74   
75   QPointer<BufferModel> _bufferModel;
76   QPointer<QItemSelectionModel> _selectionModel;
77   NetworkId _networkId;
78   IdentityId _identityId;
79
80 };
81
82 #endif // INPUTWIDGET_H