summaryrefslogtreecommitdiff
path: root/plugins/Themes/Oxygen/interface.h
blob: 745d32557994b43c9cf9b11d877404cbbfd066c9 (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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/** \file interface.h
\brief Define the interface
\author alpha_one_x86
\version 0.3
\date 2010 */

#ifndef INTERFACE_H
#define INTERFACE_H

#include <QObject>
#include <QWidget>
#include <QMenu>
#include <QCloseEvent>
#include <QShortcut>
#include <QItemSelectionModel>

#include "../../../interface/PluginInterface_Themes.h"

#include "ui_interface.h"
#include "ui_options.h"
#include "Environment.h"
#include "TransferModel.h"

// for windows progress bar
#ifndef __GNUC__
#include <shobjidl.h>
#endif

namespace Ui {
	class interfaceCopy;
}

/// \brief Define the interface
class Themes : public PluginInterface_Themes
{
	Q_OBJECT
public:
	Themes(bool checkBoxShowSpeed,FacilityInterface * facilityEngine);
	~Themes();
	//send information about the copy
	/// \brief to set the action in progress
	void actionInProgess(EngineActionInProgress);
	/// \brief the new folder is listing
	void newFolderListing(const QString &path);
	/** \brief show the detected speed
	 * in byte per seconds */
	void detectedSpeed(const quint64 &speed);
	/** \brief show the remaining time
	 * time in seconds */
	void remainingTime(const int &remainingSeconds);
	/// \brief set the current collision action
	void newCollisionAction(const QString &action);
	/// \brief set the current error action
	void newErrorAction(const QString &action);
	/// \brief set one error is detected
	void errorDetected();
	//speed limitation
	/** \brief the max speed used
	 * in byte per seconds, -1 if not able, 0 if disabled */
	bool setSpeedLimitation(const qint64 &speedLimitation);
	//get information about the copy
	/// \brief show the general progression
	void setGeneralProgression(const quint64 &current,const quint64 &total);
	/// \brief show the file progression
	void setFileProgression(const QList<ProgressionItem> &progressionList);
	/// \brief set collision action
	void setCollisionAction(const QList<QPair<QString,QString> > &);
	/// \brief set error action
	void setErrorAction(const QList<QPair<QString,QString> > &);
	/// \brief set the copyType -> file or folder
	void setCopyType(CopyType);
	/// \brief set the copyMove -> copy or move, to force in copy or move, else support both
	void forceCopyMode(CopyMode);
	/// \brief set if transfer list is exportable/importable
	void setTransferListOperation(TransferListOperation transferListOperation);
	//edit the transfer list
	/// \brief get action on the transfer list (add/move/remove)
	void getActionOnList(const QList<returnActionOnCopyList> &returnActions);
	/** \brief set if the order is external (like file manager copy)
	 * to notify the interface, which can hide add folder/filer button */
	void haveExternalOrder();
	/// \brief set if is in pause
	void isInPause(bool);
	/// \brief get the widget for the copy engine
	QWidget * getOptionsEngineWidget();
	/// \brief to set if the copy engine is found
	void getOptionsEngineEnabled(bool isEnabled);
public slots:
	/// \brief set the translate
	void newLanguageLoaded();
private slots:
	void on_putOnTop_clicked();
	void on_pushUp_clicked();
	void on_pushDown_clicked();
	void on_putOnBottom_clicked();
	void on_del_clicked();
	void on_cancelButton_clicked();
	void on_checkBoxShowSpeed_toggled(bool checked);
	void on_SliderSpeed_valueChanged(int value);
	void on_limitSpeed_valueChanged(int );
	void on_checkBox_limitSpeed_clicked();
	void on_pauseButton_clicked();
	void on_skipButton_clicked();
	void forcedModeAddFile();
	void forcedModeAddFolder();
	void forcedModeAddFileToCopy();
	void forcedModeAddFolderToCopy();
	void forcedModeAddFileToMove();
	void forcedModeAddFolderToMove();
	void uiUpdateSpeed();
	void on_pushButtonCloseSearch_clicked();
	//close the search box
	void closeTheSearchBox();
	//search box shortcut
	void searchBoxShortcut();
	//hilight the search
	void hilightTheSearch(bool searchNext=false);
	//auto connect
	void on_pushButtonSearchPrev_clicked();
	void on_pushButtonSearchNext_clicked();
	void on_lineEditSearch_returnPressed();
	void on_lineEditSearch_textChanged(QString text);
	void on_moreButton_toggled(bool checked);
	void on_comboBox_copyErrors_currentIndexChanged(int index);
	void on_comboBox_fileCollisions_currentIndexChanged(int index);
	void on_searchButton_toggled(bool checked);
	void on_exportTransferList_clicked();
	void on_importTransferList_clicked();
private:
	Ui::interfaceCopy *ui;
	quint64 currentFile;
	quint64 totalFile;
	quint64 currentSize;
	quint64 totalSize;
	void updateOverallInformation();
	void updateCurrentFileInformation();
	QMenu *menu;
	EngineActionInProgress action;
	void closeEvent(QCloseEvent *event);
	qint64 currentSpeed;
	void updateSpeed();
	bool storeIsInPause;
	bool modeIsForced;
	CopyType type;
	CopyMode mode;
	void updateModeAndType();
	bool haveStarted;
	bool haveError;
	QWidget optionEngineWidget;
	QShortcut *searchShortcut;
	QShortcut *searchShortcut2;
	QShortcut *searchShortcut3;
	QTimer *TimerForSearch;
	int currentIndexSearch;		///< Current index search in starting at the end
	FacilityInterface * facilityEngine;
	QIcon player_play,player_pause;
	QItemSelectionModel *selectionModel;
	QModelIndexList selectedItems;
	//temp variables
	int loop_size,loop_sub_size,index,indexAction;
	QList<int> ids;
	quint64 baseRow,addRow,removeRow;
	/// \brief the custom transfer model
	TransferModel transferModel;
	/** \brief drag event processing

	need setAcceptDrops(true); into the constructor
	need implementation to accept the drop:
	void dragEnterEvent(QDragEnterEvent* event);
	void dragMoveEvent(QDragMoveEvent* event);
	void dragLeaveEvent(QDragLeaveEvent* event);
	*/
	void dropEvent(QDropEvent *event);
	/** \brief accept all event to allow the drag and drop
	  \see dropEvent() */
	void dragEnterEvent(QDragEnterEvent* event);
	/** \brief accept all event to allow the drag and drop
	  \see dropEvent() */
	void dragMoveEvent(QDragMoveEvent* event);
	/** \brief accept all event to allow the drag and drop
	  \see dropEvent() */
	void dragLeaveEvent(QDragLeaveEvent* event);
	//have functionality
	bool shutdown;
signals:
	#ifdef ULTRACOPIER_PLUGIN_DEBUG
	/// \brief To debug source
	void debugInformation(DebugLevel level,QString fonction,QString text,QString file,int ligne);
	#endif
	//set the transfer list
	void removeItems(QList<int> ids);
	void moveItemsOnTop(QList<int> ids);
	void moveItemsUp(QList<int> ids);
	void moveItemsDown(QList<int> ids);
	void moveItemsOnBottom(QList<int> ids);
	void exportTransferList();
	void importTransferList();
	//user ask ask to add folder (add it with interface ask source/destination)
	void userAddFolder(CopyMode);
	void userAddFile(CopyMode);
	void urlDropped(QList<QUrl> urls);
	//action on the copy
	void pause();
	void resume();
	void skip(quint64 id);
	void cancel();
	//edit the action
	void sendCollisionAction(QString action);
	void sendErrorAction(QString action);
	void newSpeedLimitation(qint64);
};

#endif // INTERFACE_H