blob: 05ab9a5dbae8a7d7ec2812a93821f8536c83d1b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
* Copyright (c) 2010 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#include "Swift/QtUI/MUCSearch/ui_QtMUCSearchWindow.h"
#include "Swift/Controllers/UIInterfaces/MUCSearchWindow.h"
namespace Swift {
class MUCSearchModel;
class MUCSearchDelegate;
class MUCSearchRoomItem;
class QtMUCSearchWindow : public QDialog, public MUCSearchWindow {
Q_OBJECT
public:
QtMUCSearchWindow();
virtual ~QtMUCSearchWindow();
virtual void clearList();
virtual void addService(const MUCService& service);
virtual void addSavedServices(const std::list<JID>& services);
virtual void setSearchInProgress(bool searching);
virtual void show();
virtual void accept();
virtual void reject();
protected:
virtual void resizeEvent(QResizeEvent* event);
private slots:
void handleSearch();
void handleSearch(const QString&);
void handleActivated(const QModelIndex& index);
void updateThrobberPosition();
void handleSelectionChanged (const QItemSelection&, const QItemSelection&);
MUCSearchRoomItem* getSelectedRoom() const;
private:
Ui::QtMUCSearchWindow ui_;
MUCSearchModel* model_;
MUCSearchDelegate* delegate_;
QLabel* throbber_;
bool hasHadScrollBars_;
};
}
|