mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-18 05:50:39 -04:00
Move SharedFilesDialog to /gui/FileTransfer/
And remove old DEFINE because very olds files are deleted.
This commit is contained in:
parent
54ee6509d1
commit
4336a4ad46
10 changed files with 15 additions and 184 deletions
194
retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.h
Normal file
194
retroshare-gui/src/gui/FileTransfer/SharedFilesDialog.h
Normal file
|
@ -0,0 +1,194 @@
|
|||
/****************************************************************
|
||||
* RetroShare is distributed under the following license:
|
||||
*
|
||||
* Copyright (C) 2006-2009, RetroShare Team
|
||||
*
|
||||
* 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 _SHAREDFILESDIALOG_H
|
||||
#define _SHAREDFILESDIALOG_H
|
||||
|
||||
#include <set>
|
||||
#include "RsAutoUpdatePage.h"
|
||||
#include "ui_SharedFilesDialog.h"
|
||||
|
||||
class RetroshareDirModel;
|
||||
class QSortFilterProxyModel;
|
||||
|
||||
class SharedFilesDialog : public RsAutoUpdatePage
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
/** Default Constructor */
|
||||
SharedFilesDialog(RetroshareDirModel *tree_model,RetroshareDirModel *flat_model,QWidget *parent = 0);
|
||||
|
||||
/** Default Destructor */
|
||||
~SharedFilesDialog() {}
|
||||
|
||||
virtual void hideEvent(QHideEvent *) ;
|
||||
virtual void showEvent(QShowEvent *) ;
|
||||
|
||||
protected:
|
||||
QTreeView *directoryView() ;
|
||||
virtual void showProperColumns() = 0 ;
|
||||
virtual bool isRemote() const = 0 ;
|
||||
|
||||
protected slots:
|
||||
virtual void spawnCustomPopupMenu(QPoint point) = 0;
|
||||
|
||||
private slots:
|
||||
/* For handling the model updates */
|
||||
void preModDirectories(bool local) ;
|
||||
void postModDirectories(bool local) ;
|
||||
|
||||
/** Create the context popup menu and it's submenus */
|
||||
// void customPopupMenu(QPoint point) ;
|
||||
|
||||
void copyLink();
|
||||
void copyLinkhtml();
|
||||
void sendLinkTo();
|
||||
|
||||
void collCreate();
|
||||
void collModif();
|
||||
void collView();
|
||||
void collOpen();
|
||||
|
||||
//== void showFrame(bool show);
|
||||
//== void showFrameRemote(bool show);
|
||||
//== void showFrameSplitted(bool show);
|
||||
|
||||
void recommendFilesToMsg();
|
||||
|
||||
void indicatorChanged(int index);
|
||||
|
||||
void filterRegExpChanged();
|
||||
void clearFilter();
|
||||
void startFilter();
|
||||
|
||||
public slots:
|
||||
void changeCurrentViewModel(int viewTypeIndex);
|
||||
signals:
|
||||
void playFiles(QStringList files);
|
||||
|
||||
protected:
|
||||
/** Qt Designer generated object */
|
||||
Ui::SharedFilesDialog ui;
|
||||
virtual void processSettings(bool bLoad) = 0;
|
||||
|
||||
void recursRestoreExpandedItems(const QModelIndex& index,const std::string& path,const std::set<std::string>& exp,const std::set<std::string>& sel);
|
||||
void recursSaveExpandedItems(const QModelIndex& index, const std::string &path, std::set<std::string> &exp, std::set<std::string>& sel);
|
||||
void saveExpandedPathsAndSelection(std::set<std::string>& paths, std::set<std::string>& selected_indexes) ;
|
||||
void restoreExpandedPathsAndSelection(const std::set<std::string>& paths, const std::set<std::string>& selected_indexes) ;
|
||||
|
||||
protected:
|
||||
//now context menu are created again every time theu are called ( in some
|
||||
//slots.. Maybe it's not good...
|
||||
//** Define the popup menus for the Context menu */
|
||||
//QMenu* contextMnu;
|
||||
|
||||
//QMenu* contextMnu2;
|
||||
|
||||
void copyLink (const QModelIndexList& lst, bool remote);
|
||||
|
||||
void FilterItems();
|
||||
bool tree_FilterItem(const QModelIndex &index, const QString &text, int level);
|
||||
bool flat_FilterItem(const QModelIndex &index, const QString &text, int level);
|
||||
|
||||
QModelIndexList getSelected();
|
||||
|
||||
/** Defines the actions for the context menu for QTreeWidget */
|
||||
QAction* copylinkAct;
|
||||
QAction* sendlinkAct;
|
||||
QAction* sendchatlinkAct;
|
||||
QAction* copylinkhtmlAct;
|
||||
|
||||
QAction *collCreateAct;
|
||||
QAction *collModifAct;
|
||||
QAction *collViewAct;
|
||||
QAction *collOpenAct;
|
||||
|
||||
/* RetroshareDirModel */
|
||||
RetroshareDirModel *tree_model;
|
||||
RetroshareDirModel *flat_model;
|
||||
RetroshareDirModel *model;
|
||||
QSortFilterProxyModel *tree_proxyModel;
|
||||
QSortFilterProxyModel *flat_proxyModel;
|
||||
QSortFilterProxyModel *proxyModel;
|
||||
|
||||
QString currentCommand;
|
||||
QString currentFile;
|
||||
|
||||
QString lastFilterString;
|
||||
};
|
||||
|
||||
class LocalSharedFilesDialog : public SharedFilesDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
LocalSharedFilesDialog(QWidget *parent=NULL) ;
|
||||
virtual ~LocalSharedFilesDialog();
|
||||
|
||||
virtual void spawnCustomPopupMenu(QPoint point);
|
||||
virtual void updatePage() { checkUpdate() ; }
|
||||
|
||||
protected:
|
||||
virtual void processSettings(bool bLoad) ;
|
||||
virtual void showProperColumns() ;
|
||||
virtual bool isRemote() const { return false ; }
|
||||
|
||||
private slots:
|
||||
void addShares();
|
||||
void checkUpdate() ;
|
||||
void playselectedfiles();
|
||||
void openfile();
|
||||
void openfolder();
|
||||
void runCommandForFile();
|
||||
void tryToAddNewAssotiation();
|
||||
void forceCheck();
|
||||
|
||||
QAction* fileAssotiationAction(const QString fileName);
|
||||
|
||||
private:
|
||||
QAction* openfileAct;
|
||||
QAction* openfolderAct;
|
||||
QAction* editshareAct;
|
||||
};
|
||||
|
||||
class RemoteSharedFilesDialog : public SharedFilesDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RemoteSharedFilesDialog(QWidget *parent=NULL) ;
|
||||
virtual ~RemoteSharedFilesDialog() ;
|
||||
|
||||
virtual void spawnCustomPopupMenu(QPoint point);
|
||||
|
||||
protected:
|
||||
virtual void processSettings(bool bLoad) ;
|
||||
virtual void showProperColumns() ;
|
||||
virtual bool isRemote() const { return true ; }
|
||||
|
||||
private slots:
|
||||
void downloadRemoteSelected();
|
||||
void expanded(const QModelIndex& indx);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue