mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Added new class RSTreeWidgetItem derived from QTreeWidgetItem for sorting strings case insensitive without proxy model.
Sort strings case insensitive in NetworkDialog, PeersDialog (changed to RSTreeWidgetItem), MessengerWindow (changed to RSTreeWidgetItem) and SharedFilesDialog (with folders first). Sort the columns size and age in SharedFilesDialog by internal data and not by the shown string. Save and load layout of the SharedFilesDialog in profile. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3515 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
52e0d2a095
commit
a51bf3da67
@ -282,6 +282,7 @@ HEADERS += rshare.h \
|
|||||||
gui/common/StatusDefs.h \
|
gui/common/StatusDefs.h \
|
||||||
gui/common/TagDefs.h \
|
gui/common/TagDefs.h \
|
||||||
gui/common/Emoticons.h \
|
gui/common/Emoticons.h \
|
||||||
|
gui/common/RSTreeWidgetItem.h \
|
||||||
gui/MessagesDialog.h \
|
gui/MessagesDialog.h \
|
||||||
gui/help/browser/helpbrowser.h \
|
gui/help/browser/helpbrowser.h \
|
||||||
gui/help/browser/helptextbrowser.h \
|
gui/help/browser/helptextbrowser.h \
|
||||||
@ -476,6 +477,7 @@ SOURCES += main.cpp \
|
|||||||
gui/common/StatusDefs.cpp \
|
gui/common/StatusDefs.cpp \
|
||||||
gui/common/TagDefs.cpp \
|
gui/common/TagDefs.cpp \
|
||||||
gui/common/Emoticons.cpp \
|
gui/common/Emoticons.cpp \
|
||||||
|
gui/common/RSTreeWidgetItem.cpp \
|
||||||
gui/settings/rsharesettings.cpp \
|
gui/settings/rsharesettings.cpp \
|
||||||
gui/settings/RsharePeerSettings.cpp \
|
gui/settings/RsharePeerSettings.cpp \
|
||||||
gui/settings/rsettings.cpp \
|
gui/settings/rsettings.cpp \
|
||||||
|
@ -42,8 +42,8 @@
|
|||||||
#include "chat/PopupChatDialog.h"
|
#include "chat/PopupChatDialog.h"
|
||||||
#include "msgs/MessageComposer.h"
|
#include "msgs/MessageComposer.h"
|
||||||
#include "ShareManager.h"
|
#include "ShareManager.h"
|
||||||
#include "gui/notifyqt.h"
|
#include "notifyqt.h"
|
||||||
#include "gui/connect/ConnectFriendWizard.h"
|
#include "connect/ConnectFriendWizard.h"
|
||||||
#endif // MINIMAL_RSGUI
|
#endif // MINIMAL_RSGUI
|
||||||
#include "PeersDialog.h"
|
#include "PeersDialog.h"
|
||||||
#include "connect/ConfCertDialog.h"
|
#include "connect/ConfCertDialog.h"
|
||||||
@ -51,6 +51,7 @@
|
|||||||
#include "LogoBar.h"
|
#include "LogoBar.h"
|
||||||
#include "util/Widget.h"
|
#include "util/Widget.h"
|
||||||
#include "settings/rsharesettings.h"
|
#include "settings/rsharesettings.h"
|
||||||
|
#include "common/RSTreeWidgetItem.h"
|
||||||
|
|
||||||
#include "RetroShareLink.h"
|
#include "RetroShareLink.h"
|
||||||
|
|
||||||
@ -87,36 +88,6 @@
|
|||||||
MessengerWindow* MessengerWindow::_instance = NULL;
|
MessengerWindow* MessengerWindow::_instance = NULL;
|
||||||
static std::set<std::string> *expandedPeers = NULL;
|
static std::set<std::string> *expandedPeers = NULL;
|
||||||
|
|
||||||
// quick and dirty for sorting, better use QTreeView and QSortFilterProxyModel
|
|
||||||
class MyMessengerTreeWidgetItem : public QTreeWidgetItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
MyMessengerTreeWidgetItem(QTreeWidget *pWidget, int type) : QTreeWidgetItem(type)
|
|
||||||
{
|
|
||||||
m_pWidget = pWidget; // can't access the member "view"
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator<(const QTreeWidgetItem &other) const
|
|
||||||
{
|
|
||||||
int column = m_pWidget ? m_pWidget->sortColumn() : 0;
|
|
||||||
|
|
||||||
switch (column) {
|
|
||||||
case COLUMN_NAME:
|
|
||||||
{
|
|
||||||
const QVariant v1 = data(column, ROLE_SORT);
|
|
||||||
const QVariant v2 = other.data(column, ROLE_SORT);
|
|
||||||
return (v1.toString().compare (v2.toString(), Qt::CaseInsensitive) < 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// let the standard do the sort
|
|
||||||
return QTreeWidgetItem::operator<(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
QTreeWidget *m_pWidget; // the member "view" is private
|
|
||||||
};
|
|
||||||
|
|
||||||
/*static*/ void MessengerWindow::showYourself ()
|
/*static*/ void MessengerWindow::showYourself ()
|
||||||
{
|
{
|
||||||
if (_instance == NULL) {
|
if (_instance == NULL) {
|
||||||
@ -156,6 +127,9 @@ MessengerWindow::MessengerWindow(QWidget* parent, Qt::WFlags flags)
|
|||||||
setAttribute (Qt::WA_QuitOnClose, true);
|
setAttribute (Qt::WA_QuitOnClose, true);
|
||||||
#endif // MINIMAL_RSGUI
|
#endif // MINIMAL_RSGUI
|
||||||
|
|
||||||
|
m_compareRole = new RSTreeWidgetItemCompareRole;
|
||||||
|
m_compareRole->addRole(COLUMN_NAME, ROLE_SORT);
|
||||||
|
|
||||||
connect( ui.messengertreeWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( messengertreeWidgetCostumPopupMenu( QPoint ) ) );
|
connect( ui.messengertreeWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( messengertreeWidgetCostumPopupMenu( QPoint ) ) );
|
||||||
#ifndef MINIMAL_RSGUI
|
#ifndef MINIMAL_RSGUI
|
||||||
connect( ui.messengertreeWidget, SIGNAL(itemDoubleClicked ( QTreeWidgetItem *, int)), this, SLOT(chatfriend(QTreeWidgetItem *)));
|
connect( ui.messengertreeWidget, SIGNAL(itemDoubleClicked ( QTreeWidgetItem *, int)), this, SLOT(chatfriend(QTreeWidgetItem *)));
|
||||||
@ -265,6 +239,8 @@ MessengerWindow::~MessengerWindow ()
|
|||||||
}
|
}
|
||||||
#endif // MINIMAL_RSGUI
|
#endif // MINIMAL_RSGUI
|
||||||
|
|
||||||
|
delete(m_compareRole);
|
||||||
|
|
||||||
_instance = NULL;
|
_instance = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -521,7 +497,7 @@ void MessengerWindow::insertPeers()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (gpg_item == NULL) {
|
if (gpg_item == NULL) {
|
||||||
gpg_item = new MyMessengerTreeWidgetItem(peertreeWidget, 0); //set type to 0 for custom popup menu
|
gpg_item = new RSTreeWidgetItem(m_compareRole, 0); //set type to 0 for custom popup menu
|
||||||
gpg_item->setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless);
|
gpg_item->setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -579,7 +555,7 @@ void MessengerWindow::insertPeers()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (sslItem == NULL) {
|
if (sslItem == NULL) {
|
||||||
sslItem = new MyMessengerTreeWidgetItem(peertreeWidget, 1); //set type to 1 for custom popup menu
|
sslItem = new RSTreeWidgetItem(m_compareRole, 1); //set type to 1 for custom popup menu
|
||||||
}
|
}
|
||||||
|
|
||||||
/* not displayed, used to find back the item */
|
/* not displayed, used to find back the item */
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
class LogoBar;
|
class LogoBar;
|
||||||
class PeersDialog;
|
class PeersDialog;
|
||||||
class PopupChatDialog;
|
class PopupChatDialog;
|
||||||
|
class RSTreeWidgetItemCompareRole;
|
||||||
|
|
||||||
class MessengerWindow : public RWindow
|
class MessengerWindow : public RWindow
|
||||||
{
|
{
|
||||||
@ -131,6 +132,8 @@ private:
|
|||||||
QFont itemFont;
|
QFont itemFont;
|
||||||
QString m_nickName;
|
QString m_nickName;
|
||||||
|
|
||||||
|
RSTreeWidgetItemCompareRole *m_compareRole;
|
||||||
|
|
||||||
/** Qt Designer generated object */
|
/** Qt Designer generated object */
|
||||||
Ui::MessengerWindow ui;
|
Ui::MessengerWindow ui;
|
||||||
};
|
};
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
#include <retroshare/rsdisc.h>
|
#include <retroshare/rsdisc.h>
|
||||||
|
|
||||||
#include "common/vmessagebox.h"
|
#include "common/vmessagebox.h"
|
||||||
|
#include "common/RSTreeWidgetItem.h"
|
||||||
#include "NetworkDialog.h"
|
#include "NetworkDialog.h"
|
||||||
#include "TrustView.h"
|
#include "TrustView.h"
|
||||||
#include "GenCertDialog.h"
|
#include "GenCertDialog.h"
|
||||||
@ -410,7 +411,7 @@ void NetworkDialog::insertConnect()
|
|||||||
#ifdef NET_DEBUG
|
#ifdef NET_DEBUG
|
||||||
std::cerr << "NetworkDialog::insertConnect() creating new tree widget item : " << *it << std::endl;
|
std::cerr << "NetworkDialog::insertConnect() creating new tree widget item : " << *it << std::endl;
|
||||||
#endif
|
#endif
|
||||||
item = new QTreeWidgetItem(0);
|
item = new RSTreeWidgetItem(NULL, 0);
|
||||||
item -> setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless);
|
item -> setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless);
|
||||||
item -> setSizeHint(0, QSize( 18,18 ) );
|
item -> setSizeHint(0, QSize( 18,18 ) );
|
||||||
|
|
||||||
@ -503,7 +504,7 @@ void NetworkDialog::insertConnect()
|
|||||||
if (list.size() == 1) {
|
if (list.size() == 1) {
|
||||||
self_item = list.front();
|
self_item = list.front();
|
||||||
} else {
|
} else {
|
||||||
self_item = new QTreeWidgetItem(0);
|
self_item = new RSTreeWidgetItem(NULL, 0);
|
||||||
self_item->setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless);
|
self_item->setChildIndicatorPolicy(QTreeWidgetItem::DontShowIndicatorWhenChildless);
|
||||||
}
|
}
|
||||||
self_item -> setText(0, "0");
|
self_item -> setText(0, "0");
|
||||||
|
@ -50,11 +50,12 @@
|
|||||||
#include "profile/ProfileWidget.h"
|
#include "profile/ProfileWidget.h"
|
||||||
#include "profile/StatusMessage.h"
|
#include "profile/StatusMessage.h"
|
||||||
|
|
||||||
#include "gui/connect/ConnectFriendWizard.h"
|
#include "connect/ConnectFriendWizard.h"
|
||||||
#include "gui/forums/CreateForum.h"
|
#include "forums/CreateForum.h"
|
||||||
#include "gui/channels/CreateChannel.h"
|
#include "channels/CreateChannel.h"
|
||||||
#include "gui/feeds/AttachFileItem.h"
|
#include "feeds/AttachFileItem.h"
|
||||||
#include "gui/im_history/ImHistoryBrowser.h"
|
#include "im_history/ImHistoryBrowser.h"
|
||||||
|
#include "common/RSTreeWidgetItem.h"
|
||||||
|
|
||||||
#include "RetroShareLink.h"
|
#include "RetroShareLink.h"
|
||||||
|
|
||||||
@ -94,43 +95,6 @@
|
|||||||
* #define PEERS_DEBUG 1
|
* #define PEERS_DEBUG 1
|
||||||
*****/
|
*****/
|
||||||
|
|
||||||
// quick and dirty for sorting, better use QTreeView and QSortFilterProxyModel
|
|
||||||
class MyPeerTreeWidgetItem : public QTreeWidgetItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
MyPeerTreeWidgetItem(QTreeWidget *pWidget, int type) : QTreeWidgetItem(type)
|
|
||||||
{
|
|
||||||
m_pWidget = pWidget; // can't access the member "view"
|
|
||||||
}
|
|
||||||
|
|
||||||
bool operator<(const QTreeWidgetItem &other) const
|
|
||||||
{
|
|
||||||
int role = Qt::DisplayRole;
|
|
||||||
int column = m_pWidget ? m_pWidget->sortColumn() : 0;
|
|
||||||
|
|
||||||
switch (column) {
|
|
||||||
case COLUMN_STATE:
|
|
||||||
// sort by state set in user role
|
|
||||||
role = ROLE_SORT;
|
|
||||||
|
|
||||||
// no break;
|
|
||||||
|
|
||||||
case COLUMN_NAME:
|
|
||||||
{
|
|
||||||
const QVariant v1 = data(column, role);
|
|
||||||
const QVariant v2 = other.data(column, role);
|
|
||||||
return (v1.toString().compare (v2.toString(), Qt::CaseInsensitive) < 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// let the standard do the sort
|
|
||||||
return QTreeWidgetItem::operator<(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
QTreeWidget *m_pWidget; // the member "view" is private
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/** Constructor */
|
/** Constructor */
|
||||||
PeersDialog::PeersDialog(QWidget *parent)
|
PeersDialog::PeersDialog(QWidget *parent)
|
||||||
@ -141,6 +105,9 @@ PeersDialog::PeersDialog(QWidget *parent)
|
|||||||
|
|
||||||
last_status_send_time = 0 ;
|
last_status_send_time = 0 ;
|
||||||
|
|
||||||
|
m_compareRole = new RSTreeWidgetItemCompareRole;
|
||||||
|
m_compareRole->addRole(COLUMN_STATE, ROLE_SORT);
|
||||||
|
|
||||||
connect( ui.peertreeWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( peertreeWidgetCostumPopupMenu( QPoint ) ) );
|
connect( ui.peertreeWidget, SIGNAL( customContextMenuRequested( QPoint ) ), this, SLOT( peertreeWidgetCostumPopupMenu( QPoint ) ) );
|
||||||
connect( ui.peertreeWidget, SIGNAL( itemDoubleClicked ( QTreeWidgetItem *, int)), this, SLOT(chatfriend(QTreeWidgetItem *)));
|
connect( ui.peertreeWidget, SIGNAL( itemDoubleClicked ( QTreeWidgetItem *, int)), this, SLOT(chatfriend(QTreeWidgetItem *)));
|
||||||
|
|
||||||
@ -270,6 +237,8 @@ PeersDialog::~PeersDialog ()
|
|||||||
{
|
{
|
||||||
// save settings
|
// save settings
|
||||||
processSettings(false);
|
processSettings(false);
|
||||||
|
|
||||||
|
delete(m_compareRole);
|
||||||
}
|
}
|
||||||
|
|
||||||
void PeersDialog::processSettings(bool bLoad)
|
void PeersDialog::processSettings(bool bLoad)
|
||||||
@ -564,7 +533,7 @@ void PeersDialog::insertPeers()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (gpg_item == NULL) {
|
if (gpg_item == NULL) {
|
||||||
gpg_item = new MyPeerTreeWidgetItem(peertreeWidget, 0); //set type to 0 for custom popup menu
|
gpg_item = new RSTreeWidgetItem(m_compareRole, 0); //set type to 0 for custom popup menu
|
||||||
|
|
||||||
/* Add gpg item to the list. Add here, because for setHidden the item must be added */
|
/* Add gpg item to the list. Add here, because for setHidden the item must be added */
|
||||||
peertreeWidget->addTopLevelItem(gpg_item);
|
peertreeWidget->addTopLevelItem(gpg_item);
|
||||||
@ -628,7 +597,7 @@ void PeersDialog::insertPeers()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (newChild) {
|
if (newChild) {
|
||||||
sslItem = new MyPeerTreeWidgetItem(peertreeWidget, 1); //set type to 1 for custom popup menu
|
sslItem = new RSTreeWidgetItem(m_compareRole, 1); //set type to 1 for custom popup menu
|
||||||
|
|
||||||
#ifdef PEERS_DEBUG
|
#ifdef PEERS_DEBUG
|
||||||
std::cerr << "PeersDialog::insertPeers() inserting sslItem." << std::endl;
|
std::cerr << "PeersDialog::insertPeers() inserting sslItem." << std::endl;
|
||||||
|
@ -49,6 +49,7 @@ class QTextEdit;
|
|||||||
class QTextCharFormat;
|
class QTextCharFormat;
|
||||||
class ChatDialog;
|
class ChatDialog;
|
||||||
class AttachFileItem;
|
class AttachFileItem;
|
||||||
|
class RSTreeWidgetItemCompareRole;
|
||||||
|
|
||||||
class PeersDialog : public RsAutoUpdatePage
|
class PeersDialog : public RsAutoUpdatePage
|
||||||
{
|
{
|
||||||
@ -173,6 +174,8 @@ private:
|
|||||||
class QWidgetAction *widgetAction;
|
class QWidgetAction *widgetAction;
|
||||||
class QSpacerItem *spacerItem;
|
class QSpacerItem *spacerItem;
|
||||||
|
|
||||||
|
RSTreeWidgetItemCompareRole *m_compareRole;
|
||||||
|
|
||||||
///play the sound when recv a message
|
///play the sound when recv a message
|
||||||
void playsound();
|
void playsound();
|
||||||
|
|
||||||
|
@ -228,7 +228,7 @@ QString RemoteDirModel::getAgeIndicatorString(const DirDetails &details) const
|
|||||||
FileInfo finfo;
|
FileInfo finfo;
|
||||||
rsFiles->FileDetails(details.hash, 0, finfo);
|
rsFiles->FileDetails(details.hash, 0, finfo);
|
||||||
|
|
||||||
return QString::fromStdString(finfo.path) ;
|
return QString::fromUtf8(finfo.path.c_str()) ;
|
||||||
} /* end of FileNameRole */
|
} /* end of FileNameRole */
|
||||||
|
|
||||||
if (role == Qt::TextColorRole)
|
if (role == Qt::TextColorRole)
|
||||||
@ -310,7 +310,7 @@ QString RemoteDirModel::getAgeIndicatorString(const DirDetails &details) const
|
|||||||
switch(coln)
|
switch(coln)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
QString ext = QFileInfo(QString::fromStdString(details.name)).suffix();
|
QString ext = QFileInfo(QString::fromUtf8(details.name.c_str())).suffix();
|
||||||
if (ext == "jpg" || ext == "jpeg" || ext == "png" || ext == "gif"
|
if (ext == "jpg" || ext == "jpeg" || ext == "png" || ext == "gif"
|
||||||
|| ext == "bmp" || ext == "ico" || ext == "svg")
|
|| ext == "bmp" || ext == "ico" || ext == "svg")
|
||||||
{
|
{
|
||||||
@ -412,7 +412,7 @@ QString RemoteDirModel::getAgeIndicatorString(const DirDetails &details) const
|
|||||||
switch(coln)
|
switch(coln)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
return QString::fromStdString(details.name);
|
return QString::fromUtf8(details.name.c_str());
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
return QString() ;
|
return QString() ;
|
||||||
@ -490,9 +490,71 @@ QString RemoteDirModel::getAgeIndicatorString(const DirDetails &details) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} /* end of DisplayRole */
|
} /* end of DisplayRole */
|
||||||
|
|
||||||
|
if (role == SortRole)
|
||||||
|
{
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Person: name, id, 0, 0;
|
||||||
|
* File : name, size, rank, (0) ts
|
||||||
|
* Dir : name, (0) count, (0) path, (0) ts
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
if (details.type == DIR_TYPE_PERSON) /* Person */
|
||||||
|
{
|
||||||
|
switch(coln)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
return QString::fromUtf8(details.name.c_str());
|
||||||
|
case 1:
|
||||||
|
return QString();
|
||||||
|
default:
|
||||||
|
return QString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (details.type == DIR_TYPE_FILE) /* File */
|
||||||
|
{
|
||||||
|
switch(coln)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
return QString::fromUtf8(details.name.c_str());
|
||||||
|
case 1:
|
||||||
|
return details.count;
|
||||||
|
case 2:
|
||||||
|
return details.age;
|
||||||
|
case 3:
|
||||||
|
return getFlagsString(details.flags);
|
||||||
|
case 4:
|
||||||
|
{
|
||||||
|
QString ind("");
|
||||||
|
if (ageIndicator != IND_ALWAYS)
|
||||||
|
ind = getAgeIndicatorString(details);
|
||||||
|
return ind;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return QString(tr("FILE"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (details.type == DIR_TYPE_DIR) /* Dir */
|
||||||
|
{
|
||||||
|
switch(coln)
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
return QString::fromUtf8(details.name.c_str());
|
||||||
|
case 1:
|
||||||
|
return details.count;
|
||||||
|
case 2:
|
||||||
|
return details.min_age;
|
||||||
|
case 3:
|
||||||
|
return getFlagsString(details.flags);
|
||||||
|
default:
|
||||||
|
return QString(tr("DIR"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} /* end of SortRole */
|
||||||
|
|
||||||
return QVariant();
|
return QVariant();
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void RemoteDirModel::getAgeIndicatorRec(DirDetails &details, QString &ret) const {
|
void RemoteDirModel::getAgeIndicatorRec(DirDetails &details, QString &ret) const {
|
||||||
@ -610,7 +672,7 @@ QModelIndex RemoteDirModel::index(int row, int column, const QModelIndex & paren
|
|||||||
std::list<DirStub>::iterator it;
|
std::list<DirStub>::iterator it;
|
||||||
int i = 0;
|
int i = 0;
|
||||||
for(it = details.children.begin(); ((i < row) && (it != details.children.end())); ++it,++i) ;
|
for(it = details.children.begin(); ((i < row) && (it != details.children.end())); ++it,++i) ;
|
||||||
|
|
||||||
if (it == details.children.end())
|
if (it == details.children.end())
|
||||||
{
|
{
|
||||||
#ifdef RDM_DEBUG
|
#ifdef RDM_DEBUG
|
||||||
|
@ -39,7 +39,7 @@ class RemoteDirModel : public QAbstractItemModel
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
enum Roles{ FileNameRole = Qt::UserRole+1 };
|
enum Roles{ FileNameRole = Qt::UserRole+1, SortRole = Qt::UserRole+2 };
|
||||||
|
|
||||||
RemoteDirModel(bool mode, QObject *parent = 0);
|
RemoteDirModel(bool mode, QObject *parent = 0);
|
||||||
|
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include <QMenu>
|
#include <QMenu>
|
||||||
#include <QMovie>
|
#include <QMovie>
|
||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
|
#include <QSortFilterProxyModel>
|
||||||
|
|
||||||
#include "SharedFilesDialog.h"
|
#include "SharedFilesDialog.h"
|
||||||
#include "settings/AddFileAssociationDialog.h"
|
#include "settings/AddFileAssociationDialog.h"
|
||||||
@ -54,6 +55,30 @@
|
|||||||
|
|
||||||
const QString Image_AddNewAssotiationForFile = ":/images/kcmsystem24.png";
|
const QString Image_AddNewAssotiationForFile = ":/images/kcmsystem24.png";
|
||||||
|
|
||||||
|
class SFDSortFilterProxyModel : public QSortFilterProxyModel
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
SFDSortFilterProxyModel(RemoteDirModel *dirModel, QObject *parent) : QSortFilterProxyModel(parent)
|
||||||
|
{
|
||||||
|
m_dirModel = dirModel;
|
||||||
|
};
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual bool lessThan(const QModelIndex &left, const QModelIndex &right) const
|
||||||
|
{
|
||||||
|
bool dirLeft = m_dirModel->isDir(left);
|
||||||
|
bool dirRight = m_dirModel->isDir(right);
|
||||||
|
|
||||||
|
if (dirLeft ^ dirRight) {
|
||||||
|
return dirLeft;
|
||||||
|
}
|
||||||
|
|
||||||
|
return QSortFilterProxyModel::lessThan(left, right);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
RemoteDirModel *m_dirModel;
|
||||||
|
};
|
||||||
|
|
||||||
/** Constructor */
|
/** Constructor */
|
||||||
SharedFilesDialog::SharedFilesDialog(QWidget *parent)
|
SharedFilesDialog::SharedFilesDialog(QWidget *parent)
|
||||||
@ -91,9 +116,26 @@ SharedFilesDialog::SharedFilesDialog(QWidget *parent)
|
|||||||
|
|
||||||
|
|
||||||
model = new RemoteDirModel(true);
|
model = new RemoteDirModel(true);
|
||||||
|
|
||||||
|
proxyModel = new SFDSortFilterProxyModel(model, this);
|
||||||
|
proxyModel->setDynamicSortFilter(true);
|
||||||
|
proxyModel->setSourceModel(model);
|
||||||
|
proxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
|
||||||
|
proxyModel->setSortRole(RemoteDirModel::SortRole);
|
||||||
|
proxyModel->sort(0);
|
||||||
|
|
||||||
|
ui.remoteDirTreeView->setModel(proxyModel);
|
||||||
|
|
||||||
localModel = new RemoteDirModel(false);
|
localModel = new RemoteDirModel(false);
|
||||||
ui.remoteDirTreeView->setModel(model);
|
|
||||||
ui.localDirTreeView->setModel(localModel);
|
localProxyModel = new SFDSortFilterProxyModel(localModel, this);
|
||||||
|
localProxyModel->setDynamicSortFilter(true);
|
||||||
|
localProxyModel->setSourceModel(localModel);
|
||||||
|
localProxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
|
||||||
|
localProxyModel->setSortRole(RemoteDirModel::SortRole);
|
||||||
|
localProxyModel->sort(0);
|
||||||
|
|
||||||
|
ui.localDirTreeView->setModel(localProxyModel);
|
||||||
|
|
||||||
ui.remoteDirTreeView->setColumnHidden(3,true) ;
|
ui.remoteDirTreeView->setColumnHidden(3,true) ;
|
||||||
ui.remoteDirTreeView->setColumnHidden(4,true) ;
|
ui.remoteDirTreeView->setColumnHidden(4,true) ;
|
||||||
@ -150,6 +192,8 @@ SharedFilesDialog::SharedFilesDialog(QWidget *parent)
|
|||||||
ui.remoteDirTreeView->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
ui.remoteDirTreeView->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||||
ui.localDirTreeView->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
ui.localDirTreeView->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
||||||
|
|
||||||
|
// load settings
|
||||||
|
processSettings(true);
|
||||||
|
|
||||||
/* Hide platform specific features */
|
/* Hide platform specific features */
|
||||||
#ifdef Q_WS_WIN
|
#ifdef Q_WS_WIN
|
||||||
@ -171,8 +215,39 @@ SharedFilesDialog::SharedFilesDialog(QWidget *parent)
|
|||||||
connect(openfileAct, SIGNAL(triggered()), this, SLOT(openfile()));
|
connect(openfileAct, SIGNAL(triggered()), this, SLOT(openfile()));
|
||||||
openfolderAct = new QAction(QIcon(IMAGE_OPENFOLDER), tr("Open Folder"), this);
|
openfolderAct = new QAction(QIcon(IMAGE_OPENFOLDER), tr("Open Folder"), this);
|
||||||
connect(openfolderAct, SIGNAL(triggered()), this, SLOT(openfolder()));
|
connect(openfolderAct, SIGNAL(triggered()), this, SLOT(openfolder()));
|
||||||
|
}
|
||||||
|
|
||||||
|
SharedFilesDialog::~SharedFilesDialog()
|
||||||
|
{
|
||||||
|
// save settings
|
||||||
|
processSettings(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void SharedFilesDialog::processSettings(bool bLoad)
|
||||||
|
{
|
||||||
|
Settings->beginGroup("SharedFilesDialog");
|
||||||
|
|
||||||
|
if (bLoad) {
|
||||||
|
// load settings
|
||||||
|
|
||||||
|
// state of the trees
|
||||||
|
ui.localDirTreeView->header()->restoreState(Settings->value("LocalDirTreeView").toByteArray());
|
||||||
|
ui.remoteDirTreeView->header()->restoreState(Settings->value("RemoteDirTreeView").toByteArray());
|
||||||
|
|
||||||
|
// state of splitter
|
||||||
|
ui.splitter->restoreState(Settings->value("Splitter").toByteArray());
|
||||||
|
} else {
|
||||||
|
// save settings
|
||||||
|
|
||||||
|
// state of trees
|
||||||
|
Settings->setValue("LocalDirTreeView", ui.localDirTreeView->header()->saveState());
|
||||||
|
Settings->setValue("RemoteDirTreeView", ui.remoteDirTreeView->header()->saveState());
|
||||||
|
|
||||||
|
// state of splitter
|
||||||
|
Settings->setValue("Splitter", ui.splitter->saveState());
|
||||||
|
}
|
||||||
|
|
||||||
|
Settings->endGroup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void SharedFilesDialog::checkUpdate()
|
void SharedFilesDialog::checkUpdate()
|
||||||
@ -231,6 +306,27 @@ void SharedFilesDialog::shareddirtreeviewCostumPopupMenu( QPoint point )
|
|||||||
contextMnu.exec(QCursor::pos());
|
contextMnu.exec(QCursor::pos());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QModelIndexList SharedFilesDialog::getLocalSelected()
|
||||||
|
{
|
||||||
|
QModelIndexList list = ui.localDirTreeView->selectionModel()->selectedIndexes();
|
||||||
|
QModelIndexList proxyList;
|
||||||
|
for (QModelIndexList::iterator index = list.begin(); index != list.end(); index++) {
|
||||||
|
proxyList.append(localProxyModel->mapToSource(*index));
|
||||||
|
}
|
||||||
|
|
||||||
|
return proxyList;
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndexList SharedFilesDialog::getRemoteSelected()
|
||||||
|
{
|
||||||
|
QModelIndexList list = ui.remoteDirTreeView->selectionModel()->selectedIndexes();
|
||||||
|
QModelIndexList proxyList;
|
||||||
|
for (QModelIndexList::iterator index = list.begin(); index != list.end(); index++) {
|
||||||
|
proxyList.append(proxyModel->mapToSource(*index));
|
||||||
|
}
|
||||||
|
|
||||||
|
return proxyList;
|
||||||
|
}
|
||||||
|
|
||||||
void SharedFilesDialog::downloadRemoteSelected()
|
void SharedFilesDialog::downloadRemoteSelected()
|
||||||
{
|
{
|
||||||
@ -239,8 +335,8 @@ void SharedFilesDialog::downloadRemoteSelected()
|
|||||||
std::cerr << "Downloading Files";
|
std::cerr << "Downloading Files";
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
|
|
||||||
QItemSelectionModel *qism = ui.remoteDirTreeView->selectionModel();
|
QModelIndexList lst = getRemoteSelected();
|
||||||
model -> downloadSelected(qism->selectedIndexes());
|
model -> downloadSelected(lst);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SharedFilesDialog::copyLink (const QModelIndexList& lst, bool remote)
|
void SharedFilesDialog::copyLink (const QModelIndexList& lst, bool remote)
|
||||||
@ -294,13 +390,13 @@ void SharedFilesDialog::copyLink (const QModelIndexList& lst, bool remote)
|
|||||||
|
|
||||||
void SharedFilesDialog::copyLinkRemote()
|
void SharedFilesDialog::copyLinkRemote()
|
||||||
{
|
{
|
||||||
QModelIndexList lst = ui.remoteDirTreeView->selectionModel ()->selectedIndexes ();
|
QModelIndexList lst = getRemoteSelected();
|
||||||
copyLink (lst, true);
|
copyLink (lst, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SharedFilesDialog::copyLinkLocal()
|
void SharedFilesDialog::copyLinkLocal()
|
||||||
{
|
{
|
||||||
QModelIndexList lst = ui.localDirTreeView->selectionModel ()->selectedIndexes ();
|
QModelIndexList lst = getLocalSelected();
|
||||||
copyLink (lst, false);
|
copyLink (lst, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -422,10 +518,8 @@ void SharedFilesDialog::playselectedfiles()
|
|||||||
std::cerr << "SharedFilesDialog::playselectedfiles()";
|
std::cerr << "SharedFilesDialog::playselectedfiles()";
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
|
|
||||||
QItemSelectionModel *qism = ui.localDirTreeView->selectionModel();
|
|
||||||
|
|
||||||
std::list<std::string> paths;
|
std::list<std::string> paths;
|
||||||
localModel -> getFilePaths(qism->selectedIndexes(), paths);
|
localModel -> getFilePaths(getLocalSelected(), paths);
|
||||||
|
|
||||||
std::list<std::string>::iterator it;
|
std::list<std::string>::iterator it;
|
||||||
QStringList fullpaths;
|
QStringList fullpaths;
|
||||||
@ -456,8 +550,7 @@ void SharedFilesDialog::playselectedfiles()
|
|||||||
// std::cerr << "Recommending Files";
|
// std::cerr << "Recommending Files";
|
||||||
// std::cerr << std::endl;
|
// std::cerr << std::endl;
|
||||||
//
|
//
|
||||||
// QItemSelectionModel *qism = ui.remoteDirTreeView->selectionModel();
|
// model -> recommendSelected(getRemoteSelected());
|
||||||
// model -> recommendSelected(qism->selectedIndexes());
|
|
||||||
//}
|
//}
|
||||||
|
|
||||||
|
|
||||||
@ -468,8 +561,7 @@ void SharedFilesDialog::playselectedfiles()
|
|||||||
// std::cerr << "Recommending Files";
|
// std::cerr << "Recommending Files";
|
||||||
// std::cerr << std::endl;
|
// std::cerr << std::endl;
|
||||||
//
|
//
|
||||||
// QItemSelectionModel *qism = ui.localDirTreeView->selectionModel();
|
// localModel -> recommendSelected(getLocalSelected());
|
||||||
// localModel -> recommendSelected(qism->selectedIndexes());
|
|
||||||
//}
|
//}
|
||||||
|
|
||||||
|
|
||||||
@ -484,8 +576,7 @@ void SharedFilesDialog::playselectedfiles()
|
|||||||
//
|
//
|
||||||
// /* clear current recommend Selection done by model */
|
// /* clear current recommend Selection done by model */
|
||||||
//
|
//
|
||||||
// QItemSelectionModel *qism = ui.localDirTreeView->selectionModel();
|
// localModel -> recommendSelectedOnly(getLocalSelected());
|
||||||
// localModel -> recommendSelectedOnly(qism->selectedIndexes());
|
|
||||||
//}
|
//}
|
||||||
|
|
||||||
|
|
||||||
@ -497,7 +588,7 @@ void SharedFilesDialog::recommendFilesTo( std::string rsid )
|
|||||||
|
|
||||||
std::list<DirDetails> files_info ;
|
std::list<DirDetails> files_info ;
|
||||||
|
|
||||||
localModel->getFileInfoFromIndexList(ui.localDirTreeView->selectionModel()->selectedIndexes(),files_info);
|
localModel->getFileInfoFromIndexList(getLocalSelected(),files_info);
|
||||||
|
|
||||||
if(files_info.empty())
|
if(files_info.empty())
|
||||||
return ;
|
return ;
|
||||||
@ -526,7 +617,7 @@ void SharedFilesDialog::recommendFilesToMsg( std::string rsid )
|
|||||||
{
|
{
|
||||||
std::list<DirDetails> files_info ;
|
std::list<DirDetails> files_info ;
|
||||||
|
|
||||||
localModel->getFileInfoFromIndexList(ui.localDirTreeView->selectionModel()->selectedIndexes(),files_info);
|
localModel->getFileInfoFromIndexList(getLocalSelected(),files_info);
|
||||||
|
|
||||||
if(files_info.empty())
|
if(files_info.empty())
|
||||||
return ;
|
return ;
|
||||||
@ -556,7 +647,7 @@ void SharedFilesDialog::openfile()
|
|||||||
|
|
||||||
std::cerr << "SharedFilesDialog::openfile" << std::endl;
|
std::cerr << "SharedFilesDialog::openfile" << std::endl;
|
||||||
|
|
||||||
QModelIndexList qmil = ui.localDirTreeView->selectionModel()->selectedIndexes();
|
QModelIndexList qmil = getLocalSelected();
|
||||||
localModel->openSelected(qmil, false);
|
localModel->openSelected(qmil, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -565,7 +656,7 @@ void SharedFilesDialog::openfolder()
|
|||||||
{
|
{
|
||||||
std::cerr << "SharedFilesDialog::openfolder" << std::endl;
|
std::cerr << "SharedFilesDialog::openfolder" << std::endl;
|
||||||
|
|
||||||
QModelIndexList qmil = ui.localDirTreeView->selectionModel()->selectedIndexes();
|
QModelIndexList qmil = getLocalSelected();
|
||||||
localModel->openSelected(qmil, true);
|
localModel->openSelected(qmil, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "ui_SharedFilesDialog.h"
|
#include "ui_SharedFilesDialog.h"
|
||||||
|
|
||||||
class RemoteDirModel;
|
class RemoteDirModel;
|
||||||
|
class QSortFilterProxyModel;
|
||||||
|
|
||||||
class SharedFilesDialog : public RsAutoUpdatePage
|
class SharedFilesDialog : public RsAutoUpdatePage
|
||||||
{
|
{
|
||||||
@ -35,6 +36,7 @@ public:
|
|||||||
/** Default Constructor */
|
/** Default Constructor */
|
||||||
SharedFilesDialog(QWidget *parent = 0);
|
SharedFilesDialog(QWidget *parent = 0);
|
||||||
/** Default Destructor */
|
/** Default Destructor */
|
||||||
|
~SharedFilesDialog();
|
||||||
|
|
||||||
virtual void updatePage() { checkUpdate() ; }
|
virtual void updatePage() { checkUpdate() ; }
|
||||||
|
|
||||||
@ -94,8 +96,13 @@ private:
|
|||||||
|
|
||||||
//QMenu* contextMnu2;
|
//QMenu* contextMnu2;
|
||||||
|
|
||||||
|
void processSettings(bool bLoad);
|
||||||
|
|
||||||
void copyLink (const QModelIndexList& lst, bool remote);
|
void copyLink (const QModelIndexList& lst, bool remote);
|
||||||
|
|
||||||
|
QModelIndexList getRemoteSelected();
|
||||||
|
QModelIndexList getLocalSelected();
|
||||||
|
|
||||||
/** Defines the actions for the context menu for QTreeWidget */
|
/** Defines the actions for the context menu for QTreeWidget */
|
||||||
QAction* openfileAct;
|
QAction* openfileAct;
|
||||||
QAction* openfolderAct;
|
QAction* openfolderAct;
|
||||||
@ -116,7 +123,9 @@ private:
|
|||||||
|
|
||||||
/* RemoteDirModel */
|
/* RemoteDirModel */
|
||||||
RemoteDirModel *model;
|
RemoteDirModel *model;
|
||||||
|
QSortFilterProxyModel *proxyModel;
|
||||||
RemoteDirModel *localModel;
|
RemoteDirModel *localModel;
|
||||||
|
QSortFilterProxyModel *localProxyModel;
|
||||||
|
|
||||||
QString currentCommand;
|
QString currentCommand;
|
||||||
QString currentFile;
|
QString currentFile;
|
||||||
|
129
retroshare-gui/src/gui/common/RSTreeWidgetItem.cpp
Normal file
129
retroshare-gui/src/gui/common/RSTreeWidgetItem.cpp
Normal file
@ -0,0 +1,129 @@
|
|||||||
|
/****************************************************************
|
||||||
|
* This file is distributed under the following license:
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010, 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.
|
||||||
|
****************************************************************/
|
||||||
|
|
||||||
|
#include "RSTreeWidgetItem.h"
|
||||||
|
|
||||||
|
RSTreeWidgetItemCompareRole::RSTreeWidgetItemCompareRole()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void RSTreeWidgetItemCompareRole::addRole(int column, int role)
|
||||||
|
{
|
||||||
|
insert(column, role);
|
||||||
|
}
|
||||||
|
|
||||||
|
const int RSTreeWidgetItemCompareRole::findRole(const int column) const
|
||||||
|
{
|
||||||
|
RSTreeWidgetItemCompareRole::const_iterator it = find(column);
|
||||||
|
if (it == end()) {
|
||||||
|
return Qt::DisplayRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
return it.value();
|
||||||
|
}
|
||||||
|
|
||||||
|
RSTreeWidgetItem::RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, int type) : QTreeWidgetItem(type)
|
||||||
|
{
|
||||||
|
m_compareRole = compareRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
RSTreeWidgetItem::RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, const QStringList &strings, int type) : QTreeWidgetItem(strings, type)
|
||||||
|
{
|
||||||
|
m_compareRole = compareRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
RSTreeWidgetItem::RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidget *view, const QStringList &strings, int type) : QTreeWidgetItem(view, strings, type)
|
||||||
|
{
|
||||||
|
m_compareRole = compareRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
RSTreeWidgetItem::RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidget *view, QTreeWidgetItem *after, int type) : QTreeWidgetItem(view, after, type)
|
||||||
|
{
|
||||||
|
m_compareRole = compareRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
RSTreeWidgetItem::RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidgetItem *parent, const QStringList &strings, int type) : QTreeWidgetItem(parent, strings, type)
|
||||||
|
{
|
||||||
|
m_compareRole = compareRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
RSTreeWidgetItem::RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidgetItem *parent, QTreeWidgetItem *after, int type) : QTreeWidgetItem(parent, after, type)
|
||||||
|
{
|
||||||
|
m_compareRole = compareRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
RSTreeWidgetItem::RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, const QTreeWidgetItem &other) : QTreeWidgetItem(other)
|
||||||
|
{
|
||||||
|
m_compareRole = compareRole;
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint typeOfVariant(const QVariant &value)
|
||||||
|
{
|
||||||
|
//return 0 for integer, 1 for floating point and 2 for other
|
||||||
|
switch (value.userType()) {
|
||||||
|
case QVariant::Bool:
|
||||||
|
case QVariant::Int:
|
||||||
|
case QVariant::UInt:
|
||||||
|
case QVariant::LongLong:
|
||||||
|
case QVariant::ULongLong:
|
||||||
|
case QVariant::Char:
|
||||||
|
case QMetaType::Short:
|
||||||
|
case QMetaType::UShort:
|
||||||
|
case QMetaType::UChar:
|
||||||
|
case QMetaType::ULong:
|
||||||
|
case QMetaType::Long:
|
||||||
|
return 0;
|
||||||
|
case QVariant::Double:
|
||||||
|
case QMetaType::Float:
|
||||||
|
return 1;
|
||||||
|
default:
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool RSTreeWidgetItem::operator<(const QTreeWidgetItem &other) const
|
||||||
|
{
|
||||||
|
int column = treeWidget()->sortColumn();
|
||||||
|
int role = Qt::DisplayRole;
|
||||||
|
|
||||||
|
/* Own role for sort defined ? */
|
||||||
|
if (m_compareRole) {
|
||||||
|
role = m_compareRole->findRole(column);
|
||||||
|
}
|
||||||
|
|
||||||
|
// taken from "bool QTreeWidgetItem::operator<(const QTreeWidgetItem &other) const"
|
||||||
|
const QVariant v1 = data(column, role);
|
||||||
|
const QVariant v2 = other.data(column, role);
|
||||||
|
|
||||||
|
// taken from "bool QAbstractItemModelPrivate::variantLessThan(const QVariant &v1, const QVariant &v2)"
|
||||||
|
switch(qMax(typeOfVariant(v1), typeOfVariant(v2)))
|
||||||
|
{
|
||||||
|
case 0: //integer type
|
||||||
|
return v1.toLongLong() < v2.toLongLong();
|
||||||
|
case 1: //floating point
|
||||||
|
return v1.toReal() < v2.toReal();
|
||||||
|
default:
|
||||||
|
return (v1.toString().compare (v2.toString(), Qt::CaseInsensitive) < 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
// let the standard do the sort, this code should not reached
|
||||||
|
return QTreeWidgetItem::operator<(other);
|
||||||
|
}
|
56
retroshare-gui/src/gui/common/RSTreeWidgetItem.h
Normal file
56
retroshare-gui/src/gui/common/RSTreeWidgetItem.h
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
/****************************************************************
|
||||||
|
* This file is distributed under the following license:
|
||||||
|
*
|
||||||
|
* Copyright (c) 2010, 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 _RSTREEWIDGETITEM_H
|
||||||
|
#define _RSTREEWIDGETITEM_H
|
||||||
|
|
||||||
|
#include <QTreeWidgetItem>
|
||||||
|
|
||||||
|
/* For definition of the UserRole for comparing */
|
||||||
|
class RSTreeWidgetItemCompareRole : QMap<int, int>
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RSTreeWidgetItemCompareRole();
|
||||||
|
|
||||||
|
void addRole(int column, int role);
|
||||||
|
const int findRole(const int column) const;
|
||||||
|
};
|
||||||
|
|
||||||
|
class RSTreeWidgetItem : public QTreeWidgetItem
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole = NULL, int type = Type);
|
||||||
|
RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, const QStringList &strings, int type = Type);
|
||||||
|
RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidget *view, const QStringList &strings, int type = Type);
|
||||||
|
RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidget *view, QTreeWidgetItem *after, int type = Type);
|
||||||
|
RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidgetItem *parent, const QStringList &strings, int type = Type);
|
||||||
|
RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, QTreeWidgetItem *parent, QTreeWidgetItem *after, int type = Type);
|
||||||
|
RSTreeWidgetItem(const RSTreeWidgetItemCompareRole *compareRole, const QTreeWidgetItem &other);
|
||||||
|
|
||||||
|
bool operator<(const QTreeWidgetItem &other) const;
|
||||||
|
|
||||||
|
private:
|
||||||
|
const RSTreeWidgetItemCompareRole *m_compareRole;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue
Block a user