New ListView style
This commit is contained in:
parent
cffa47cf6e
commit
37b0b93d56
8 changed files with 151 additions and 84 deletions
|
@ -9,6 +9,7 @@
|
|||
#include <QMenu>
|
||||
#include <QAction>
|
||||
#include <QCollator>
|
||||
#include <QDBusInterface>
|
||||
#include <QStandardPaths>
|
||||
#include <QApplication>
|
||||
#include <QDesktopWidget>
|
||||
|
@ -16,7 +17,7 @@
|
|||
#include <QClipboard>
|
||||
#include <QPainter>
|
||||
#include <QDrag>
|
||||
#include <QDBusInterface>
|
||||
#include <QDir>
|
||||
|
||||
// Qt Quick
|
||||
#include <QQuickItem>
|
||||
|
@ -70,9 +71,9 @@ FolderModel::FolderModel(QObject *parent)
|
|||
sort(m_sortMode, m_sortDesc ? Qt::DescendingOrder : Qt::AscendingOrder);
|
||||
createActions();
|
||||
|
||||
connect(this, SIGNAL(rowsInserted(QModelIndex,int,int)), SIGNAL(statusTextChanged()));
|
||||
connect(this, SIGNAL(rowsRemoved(QModelIndex,int,int)), SIGNAL(statusTextChanged()));
|
||||
connect(this, SIGNAL(modelReset()), SIGNAL(statusTextChanged()));
|
||||
connect(this, SIGNAL(rowsInserted(QModelIndex, int, int)), SIGNAL(countChanged()));
|
||||
connect(this, SIGNAL(rowsRemoved(QModelIndex, int, int)), SIGNAL(countChanged()));
|
||||
connect(this, SIGNAL(modelReset()), SIGNAL(countChanged()));
|
||||
}
|
||||
|
||||
FolderModel::~FolderModel()
|
||||
|
@ -106,8 +107,10 @@ QHash<int, QByteArray> FolderModel::staticRoleNames()
|
|||
roleNames[IsDirRole] = "isDir";
|
||||
roleNames[UrlRole] = "url";
|
||||
roleNames[FileNameRole] = "fileName";
|
||||
roleNames[FileSizeRole] = "fileSize";
|
||||
roleNames[IconNameRole] = "iconName";
|
||||
roleNames[ThumbnailRole] = "thumbnail";
|
||||
roleNames[ModifiedRole] = "modified";
|
||||
return roleNames;
|
||||
}
|
||||
|
||||
|
@ -128,6 +131,14 @@ QVariant FolderModel::data(const QModelIndex &index, int role) const
|
|||
case FileNameRole: {
|
||||
return item.url().fileName();
|
||||
}
|
||||
case FileSizeRole: {
|
||||
if (item.isDir()) {
|
||||
uint count = QDir(item.url().toLocalFile()).count();
|
||||
return count == 1 ? tr("%1 item").arg(count) : tr("%1 items").arg(count);
|
||||
}
|
||||
|
||||
return KIO::convertSize(item.size());
|
||||
}
|
||||
case IconNameRole:
|
||||
return item.iconName();
|
||||
case ThumbnailRole: {
|
||||
|
@ -144,6 +155,9 @@ QVariant FolderModel::data(const QModelIndex &index, int role) const
|
|||
|
||||
return QVariant();
|
||||
}
|
||||
case ModifiedRole: {
|
||||
return item.timeString(KFileItem::ModificationTime);
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -405,23 +419,9 @@ KFileItem FolderModel::rootItem() const
|
|||
return m_dirModel->dirLister()->rootItem();
|
||||
}
|
||||
|
||||
QString FolderModel::statusText()
|
||||
int FolderModel::count() const
|
||||
{
|
||||
if (m_selectionModel && m_selectionModel->hasSelection()) {
|
||||
if (m_selectionModel->selectedIndexes().size() == 1) {
|
||||
KFileItem item = itemForIndex(m_selectionModel->selectedIndexes().first());
|
||||
return item.name();
|
||||
}
|
||||
|
||||
return tr("%1 selected").arg(m_selectionModel->selectedIndexes().size());
|
||||
}
|
||||
|
||||
if (m_dirModel->rowCount() == 1) {
|
||||
return tr("%1 item").arg(m_dirModel->rowCount());
|
||||
} else if (m_dirModel->rowCount() <= 0)
|
||||
return "";
|
||||
|
||||
return tr("%1 items").arg(m_dirModel->rowCount());
|
||||
return rowCount();
|
||||
}
|
||||
|
||||
int FolderModel::selectionCound() const
|
||||
|
@ -909,8 +909,6 @@ void FolderModel::selectionChanged(const QItemSelection &selected, const QItemSe
|
|||
|
||||
updateActions();
|
||||
|
||||
// 选中状态信息
|
||||
emit statusTextChanged();
|
||||
emit selectionCoundChanged();
|
||||
}
|
||||
|
||||
|
|
|
@ -25,8 +25,9 @@ class FolderModel : public QSortFilterProxyModel, public QQmlParserStatus
|
|||
Q_PROPERTY(bool sortDirsFirst READ sortDirsFirst WRITE setSortDirsFirst NOTIFY sortDirsFirstChanged)
|
||||
Q_PROPERTY(bool dragging READ dragging NOTIFY draggingChanged)
|
||||
Q_PROPERTY(QObject *viewAdapter READ viewAdapter WRITE setViewAdapter NOTIFY viewAdapterChanged)
|
||||
Q_PROPERTY(QString statusText READ statusText NOTIFY statusTextChanged)
|
||||
Q_PROPERTY(bool isDesktop READ isDesktop WRITE setIsDesktop NOTIFY isDesktopChanged)
|
||||
Q_PROPERTY(int selectionCound READ selectionCound NOTIFY selectionCoundChanged)
|
||||
Q_PROPERTY(int count READ count NOTIFY countChanged)
|
||||
|
||||
public:
|
||||
enum DataRole {
|
||||
|
@ -35,8 +36,10 @@ public:
|
|||
IsDirRole,
|
||||
UrlRole,
|
||||
FileNameRole,
|
||||
FileSizeRole,
|
||||
IconNameRole,
|
||||
ThumbnailRole
|
||||
ThumbnailRole,
|
||||
ModifiedRole
|
||||
};
|
||||
|
||||
enum FilterMode {
|
||||
|
@ -103,7 +106,7 @@ public:
|
|||
|
||||
KFileItem rootItem() const;
|
||||
|
||||
QString statusText();
|
||||
int count() const;
|
||||
int selectionCound() const;
|
||||
|
||||
Q_INVOKABLE QString homePath() const;
|
||||
|
@ -164,9 +167,9 @@ signals:
|
|||
void requestRename();
|
||||
void draggingChanged();
|
||||
void viewAdapterChanged();
|
||||
void statusTextChanged();
|
||||
void isDesktopChanged();
|
||||
void selectionCoundChanged();
|
||||
void countChanged();
|
||||
|
||||
private slots:
|
||||
void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
|
||||
|
|
|
@ -13,7 +13,7 @@ Item {
|
|||
height: GridView.view.cellHeight
|
||||
|
||||
property Item iconArea: _image.visible ? _image : _icon
|
||||
property Item textArea: _label
|
||||
property Item labelArea: _label
|
||||
property Item background: _background
|
||||
|
||||
property int index: model.index
|
||||
|
@ -96,7 +96,7 @@ Item {
|
|||
anchors.topMargin: Meui.Units.smallSpacing
|
||||
maximumLineCount: 2
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
width: parent.width - Meui.Units.largeSpacing * 2
|
||||
width: parent.width - Meui.Units.largeSpacing * 2 - Meui.Units.smallSpacing
|
||||
textFormat: Text.PlainText
|
||||
elide: Qt.ElideRight
|
||||
wrapMode: Text.Wrap
|
||||
|
|
|
@ -58,6 +58,7 @@ GridView {
|
|||
|
||||
function cancelRename() {
|
||||
if (editor) {
|
||||
editor.cancel()
|
||||
editor.targetItem = null;
|
||||
}
|
||||
}
|
||||
|
@ -113,6 +114,14 @@ GridView {
|
|||
cPress = mapToItem(control.contentItem, pressX, pressY)
|
||||
}
|
||||
|
||||
onContentXChanged: {
|
||||
cancelRename()
|
||||
}
|
||||
|
||||
onContentYChanged: {
|
||||
cancelRename()
|
||||
}
|
||||
|
||||
onCachedRectangleSelectionChanged: {
|
||||
if (cachedRectangleSelection === null)
|
||||
return
|
||||
|
@ -360,8 +369,8 @@ GridView {
|
|||
continue
|
||||
}
|
||||
|
||||
var labelRect = Qt.rect(itemX + item.textArea.x, itemY + item.textArea.y,
|
||||
item.textArea.width, item.textArea.height)
|
||||
var labelRect = Qt.rect(itemX + item.labelArea.x, itemY + item.labelArea.y,
|
||||
item.labelArea.width, item.labelArea.height)
|
||||
|
||||
if (control.rubberBand.intersects(labelRect)) {
|
||||
indices.push(index)
|
||||
|
@ -421,18 +430,20 @@ GridView {
|
|||
|
||||
onTargetItemChanged: {
|
||||
if (targetItem != null) {
|
||||
var pos = control.mapFromItem(targetItem, targetItem.textArea.x, targetItem.textArea.y)
|
||||
x = targetItem.x + Math.abs(Math.min(control.contentX, control.originX))
|
||||
y = pos.y + Meui.Units.smallSpacing
|
||||
var pos = control.mapFromItem(targetItem, targetItem.labelArea.x, targetItem.labelArea.y)
|
||||
width = targetItem.width - Meui.Units.smallSpacing
|
||||
height = Meui.Units.fontMetrics.height * 2
|
||||
text = targetItem.textArea.text
|
||||
targetItem.textArea.visible = false
|
||||
height = targetItem.labelArea.paintedHeight + Meui.Units.largeSpacing * 2
|
||||
x = targetItem.x + Math.abs(Math.min(control.contentX, control.originX))
|
||||
y = pos.y - Meui.Units.largeSpacing
|
||||
text = targetItem.labelArea.text
|
||||
targetItem.labelArea.visible = false
|
||||
_editor.select(0, folderModel.fileExtensionBoundary(targetItem.index))
|
||||
visible = true
|
||||
} else {
|
||||
x: 0
|
||||
y: 0
|
||||
x = 0
|
||||
y = 0
|
||||
width = 0
|
||||
height = 0
|
||||
visible = false
|
||||
}
|
||||
}
|
||||
|
@ -444,11 +455,7 @@ GridView {
|
|||
commit()
|
||||
break
|
||||
case Qt.Key_Escape:
|
||||
if (targetItem) {
|
||||
targetItem.textArea.visible = true
|
||||
targetItem = null
|
||||
event.accepted = true
|
||||
}
|
||||
cancel()
|
||||
break
|
||||
}
|
||||
}
|
||||
|
@ -462,12 +469,19 @@ GridView {
|
|||
|
||||
function commit() {
|
||||
if (targetItem) {
|
||||
targetItem.textArea.visible = true
|
||||
targetItem.labelArea.visible = true
|
||||
folderModel.rename(targetItem.index, text)
|
||||
control.currentIndex = targetItem.index
|
||||
targetItem = null
|
||||
}
|
||||
}
|
||||
|
||||
function cancel() {
|
||||
if (targetItem) {
|
||||
targetItem.labelArea.visible = true
|
||||
targetItem = null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,13 +6,14 @@ import MeuiKit 1.0 as Meui
|
|||
Item {
|
||||
id: _listItem
|
||||
width: ListView.view.width - ListView.view.leftMargin - ListView.view.rightMargin
|
||||
height: 40
|
||||
height: Meui.Units.fontMetrics.height * 2 + Meui.Units.largeSpacing
|
||||
|
||||
Accessible.name: fileName
|
||||
Accessible.role: Accessible.Canvas
|
||||
|
||||
property Item iconArea: _image.visible ? _image : _icon
|
||||
property Item textArea: _label
|
||||
property Item labelArea: _label
|
||||
property Item labelArea2: _label2
|
||||
|
||||
property int index: model.index
|
||||
property bool hovered: ListView.view.hoveredItem === _listItem
|
||||
|
@ -80,6 +81,9 @@ Item {
|
|||
}
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
spacing: 0
|
||||
|
||||
Label {
|
||||
id: _label
|
||||
text: model.fileName
|
||||
|
@ -87,5 +91,18 @@ Item {
|
|||
color: Meui.Theme.textColor
|
||||
elide: Qt.ElideMiddle
|
||||
}
|
||||
|
||||
Label {
|
||||
id: _label2
|
||||
text: model.fileSize
|
||||
color: Meui.Theme.disabledTextColor
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
}
|
||||
|
||||
Label {
|
||||
text: model.modified
|
||||
color: Meui.Theme.disabledTextColor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -88,9 +88,11 @@ ListView {
|
|||
}
|
||||
|
||||
function cancelRename() {
|
||||
if (control.editor)
|
||||
if (control.editor) {
|
||||
control.editor.cancel()
|
||||
control.editor = null
|
||||
}
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
id: _mouseArea
|
||||
|
@ -303,6 +305,7 @@ ListView {
|
|||
wrapMode: Text.NoWrap
|
||||
textMargin: 0
|
||||
verticalAlignment: TextEdit.AlignVCenter
|
||||
leftPadding: 0
|
||||
|
||||
property Item targetItem: null
|
||||
|
||||
|
@ -310,13 +313,14 @@ ListView {
|
|||
|
||||
onTargetItemChanged: {
|
||||
if (targetItem != null) {
|
||||
var pos = control.mapFromItem(targetItem, targetItem.textArea.x, control.contentY)
|
||||
var pos = control.mapFromItem(targetItem, targetItem.labelArea.x, targetItem.labelArea.y)
|
||||
width = targetItem.width - targetItem.iconArea.width * 2
|
||||
height = targetItem.height
|
||||
x = pos.x
|
||||
x = control.mapFromItem(targetItem.labelArea, 0, 0).x
|
||||
y = pos.y
|
||||
text = targetItem.textArea.text
|
||||
targetItem.textArea.visible = false
|
||||
text = targetItem.labelArea.text
|
||||
targetItem.labelArea.visible = false
|
||||
targetItem.labelArea2.visible = false
|
||||
_editor.select(0, folderModel.fileExtensionBoundary(targetItem.index))
|
||||
visible = true
|
||||
} else {
|
||||
|
@ -333,11 +337,7 @@ ListView {
|
|||
commit()
|
||||
break
|
||||
case Qt.Key_Escape:
|
||||
if (targetItem) {
|
||||
targetItem.textArea.visible = true
|
||||
targetItem = null
|
||||
event.accepted = true
|
||||
}
|
||||
cancel()
|
||||
break
|
||||
}
|
||||
}
|
||||
|
@ -351,12 +351,21 @@ ListView {
|
|||
|
||||
function commit() {
|
||||
if (targetItem) {
|
||||
targetItem.textArea.visible = true
|
||||
targetItem.labelArea.visible = true
|
||||
targetItem.labelArea2.visible = true
|
||||
folderModel.rename(targetItem.index, text)
|
||||
control.currentIndex = targetItem.index
|
||||
targetItem = null
|
||||
}
|
||||
}
|
||||
|
||||
function cancel() {
|
||||
if (targetItem) {
|
||||
targetItem.labelArea.visible = true
|
||||
targetItem.labelArea2.visible = true
|
||||
targetItem = null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -98,11 +98,22 @@ Item {
|
|||
anchors.leftMargin: Meui.Units.largeSpacing
|
||||
anchors.rightMargin: Meui.Units.largeSpacing
|
||||
anchors.bottomMargin: 1
|
||||
spacing: Meui.Units.largeSpacing
|
||||
|
||||
Label {
|
||||
text: folderModel.statusText
|
||||
Layout.alignment: Qt.AlignLeft
|
||||
elide: Text.ElideMiddle
|
||||
text: folderModel.count == 1 ? qsTr("%1 item").arg(folderModel.count)
|
||||
: qsTr("%1 items").arg(folderModel.count)
|
||||
}
|
||||
|
||||
Label {
|
||||
Layout.alignment: Qt.AlignLeft
|
||||
text: qsTr("%1 selected").arg(folderModel.selectionCound)
|
||||
visible: folderModel.selectionCound >= 1
|
||||
}
|
||||
|
||||
Item {
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
||||
Button {
|
||||
|
@ -147,6 +158,7 @@ Item {
|
|||
id: _folderListView
|
||||
model: folderModel
|
||||
|
||||
topMargin: Meui.Units.largeSpacing
|
||||
leftMargin: Meui.Units.largeSpacing
|
||||
rightMargin: Meui.Units.largeSpacing + Meui.Theme.smallRadius
|
||||
spacing: Meui.Units.largeSpacing
|
||||
|
|
|
@ -14,12 +14,12 @@
|
|||
<translation>名称</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Dialogs/CreateFolderDialog.qml" line="48"/>
|
||||
<location filename="../qml/Dialogs/CreateFolderDialog.qml" line="49"/>
|
||||
<source>Cancel</source>
|
||||
<translation>取消</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/Dialogs/CreateFolderDialog.qml" line="54"/>
|
||||
<location filename="../qml/Dialogs/CreateFolderDialog.qml" line="55"/>
|
||||
<source>OK</source>
|
||||
<translation>确定</translation>
|
||||
</message>
|
||||
|
@ -35,82 +35,81 @@
|
|||
<context>
|
||||
<name>FolderModel</name>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="415"/>
|
||||
<source>%1 selected</source>
|
||||
<translation>选中了 %1 项</translation>
|
||||
<translation type="vanished">选中了 %1 项</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="419"/>
|
||||
<location filename="../model/foldermodel.cpp" line="137"/>
|
||||
<source>%1 item</source>
|
||||
<translation>%1 项</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="423"/>
|
||||
<location filename="../model/foldermodel.cpp" line="137"/>
|
||||
<source>%1 items</source>
|
||||
<translation>%1 项</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="791"/>
|
||||
<location filename="../model/foldermodel.cpp" line="805"/>
|
||||
<source>Select All</source>
|
||||
<translation>全选</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="984"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1007"/>
|
||||
<source>Open</source>
|
||||
<translation>打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="987"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1010"/>
|
||||
<source>Cut</source>
|
||||
<translation>剪切</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="990"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1013"/>
|
||||
<source>Copy</source>
|
||||
<translation>复制</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="993"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1016"/>
|
||||
<source>Paste</source>
|
||||
<translation>粘贴</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="996"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1019"/>
|
||||
<source>New Folder</source>
|
||||
<translation>新建文件夹</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="999"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1022"/>
|
||||
<source>Move To Trash</source>
|
||||
<translation>移动到回收站</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="1002"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1025"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>清空回收站</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="1005"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1028"/>
|
||||
<source>Delete</source>
|
||||
<translation>删除</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="1008"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1031"/>
|
||||
<source>Rename</source>
|
||||
<translation>重命名</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="1011"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1034"/>
|
||||
<source>Open in Terminal</source>
|
||||
<translation>在终端中打开</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="1014"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1037"/>
|
||||
<source>Set as Wallpaper</source>
|
||||
<translation>设置为壁纸</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../model/foldermodel.cpp" line="1017"/>
|
||||
<location filename="../model/foldermodel.cpp" line="1040"/>
|
||||
<source>Properties</source>
|
||||
<translation>属性</translation>
|
||||
</message>
|
||||
|
@ -123,7 +122,22 @@
|
|||
<translation>无文件</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/FolderPage.qml" line="108"/>
|
||||
<location filename="../qml/FolderPage.qml" line="105"/>
|
||||
<source>%1 item</source>
|
||||
<translation>%1 项</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/FolderPage.qml" line="106"/>
|
||||
<source>%1 items</source>
|
||||
<translation>%1 项</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/FolderPage.qml" line="111"/>
|
||||
<source>%1 selected</source>
|
||||
<translation>选中了 %1 项</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/FolderPage.qml" line="122"/>
|
||||
<source>Empty Trash</source>
|
||||
<translation>清空回收站</translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in a new issue