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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/***************************************************************************
* Copyright (C) 2005 by Joris Guisson *
* [email protected] *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#ifndef VIEWMANAGER_H
#define VIEWMANAGER_H
#include <tqobject.h>
#include <tqvaluelist.h>
#include <interfaces/guiinterface.h>
class TDEConfig;
class KTabWidget;
class KTorrentView;
class KTorrent;
/**
@author Joris Guisson <[email protected]>
*/
class ViewManager : public TQObject, public kt::CloseTabListener
{
Q_OBJECT
public:
ViewManager(TQObject *parent = 0, const char *name = 0);
virtual ~ViewManager();
/// Create a new view
KTorrentView* newView();
/// Save all views
void saveViewState(TDEConfig* cfg);
/// Restore all views from configuration
void restoreViewState(TDEConfig* cfg,KTorrent* ktor);
/// Start all selected downloads in the current view
void startDownloads();
/// Stop all selected downloads in the current view
void stopDownloads();
/// Start all downloads in the current view
void startAllDownloads();
/// Stop all downloads in the current view
void stopAllDownloads();
/// Get the current torrent in the current view
kt::TorrentInterface* getCurrentTC();
/// Remove selected downloads in the current view
void removeDownloads();
/// Update the current view
void update();
/**
* Put the current selection of the current view in a list.
* @param sel The list to put it in
*/
void getSelection(TQValueList<kt::TorrentInterface*> & sel);
/// Get the current view
KTorrentView* getCurrentView() {return current;}
virtual bool closeAllowed(TQWidget* tab);
virtual void tabCloseRequest(kt::GUIInterface* gui,TQWidget* tab);
/// A group was renamed, modify all view which where showing this group
void groupRenamed(kt::Group* g,KTabWidget* mtw);
/// A group has been removed, close any tab showing it (in case it is the last tab, switch to All Torrents)
void groupRemoved(kt::Group* g,KTabWidget* mtw,kt::GUIInterface* gui,kt::Group* all_group);
/// Call updateActions on the current view
void updateActions();
public slots:
/// Add a torrent to all views
void addTorrent(kt::TorrentInterface* tc);
/// Remove a torernt from all views
void removeTorrent(kt::TorrentInterface* tc);
/// Enqueue/Dequeue selected torrents in current view
void queueAction();
/// Check data integrity of current torrent
void checkDataIntegrity();
/// The current tab has changed
void onCurrentTabChanged(TQWidget* w);
private:
TQValueList<KTorrentView*> views;
KTorrentView* current;
};
#endif
|