From 582d05e722d26a44a7b67bd3a1234ea90a1fd395 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sun, 20 Jan 2019 14:24:33 +0200 Subject: [PATCH] rename plasmoid Task Animations accordingly --- plasmoid/package/contents/ui/task/IconItem.qml | 10 +++++----- plasmoid/package/contents/ui/task/TaskItem.qml | 6 +++--- .../{TaskClickedAnimation.qml => ClickedAnimation.qml} | 0 ...stRestoreAnimation.qml => FastRestoreAnimation.qml} | 0 ...TaskLauncherAnimation.qml => LauncherAnimation.qml} | 0 ...skNewWindowAnimation.qml => NewWindowAnimation.qml} | 0 ...alRemovalAnimation.qml => RealRemovalAnimation.qml} | 0 ...nimation.qml => RemoveWindowFromGroupAnimation.qml} | 0 .../{TaskRestoreAnimation.qml => RestoreAnimation.qml} | 0 ...ShowWindowAnimation.qml => ShowWindowAnimation.qml} | 0 10 files changed, 8 insertions(+), 8 deletions(-) rename plasmoid/package/contents/ui/task/animations/{TaskClickedAnimation.qml => ClickedAnimation.qml} (100%) rename plasmoid/package/contents/ui/task/animations/{TaskFastRestoreAnimation.qml => FastRestoreAnimation.qml} (100%) rename plasmoid/package/contents/ui/task/animations/{TaskLauncherAnimation.qml => LauncherAnimation.qml} (100%) rename plasmoid/package/contents/ui/task/animations/{TaskNewWindowAnimation.qml => NewWindowAnimation.qml} (100%) rename plasmoid/package/contents/ui/task/animations/{TaskRealRemovalAnimation.qml => RealRemovalAnimation.qml} (100%) rename plasmoid/package/contents/ui/task/animations/{TaskRemoveWindowFromGroupAnimation.qml => RemoveWindowFromGroupAnimation.qml} (100%) rename plasmoid/package/contents/ui/task/animations/{TaskRestoreAnimation.qml => RestoreAnimation.qml} (100%) rename plasmoid/package/contents/ui/task/animations/{TaskShowWindowAnimation.qml => ShowWindowAnimation.qml} (100%) diff --git a/plasmoid/package/contents/ui/task/IconItem.qml b/plasmoid/package/contents/ui/task/IconItem.qml index 7a03a9964..abf1fafed 100644 --- a/plasmoid/package/contents/ui/task/IconItem.qml +++ b/plasmoid/package/contents/ui/task/IconItem.qml @@ -591,15 +591,15 @@ Item{ ///// Animations ///// - TaskAnimations.TaskClickedAnimation { id: clickedAnimation } + TaskAnimations.ClickedAnimation { id: clickedAnimation } - TaskAnimations.TaskLauncherAnimation { id:launcherAnimation } + TaskAnimations.LauncherAnimation { id:launcherAnimation } - TaskAnimations.TaskNewWindowAnimation { id: newWindowAnimation } + TaskAnimations.NewWindowAnimation { id: newWindowAnimation } - TaskAnimations.TaskRemoveWindowFromGroupAnimation { id: removingAnimation } + TaskAnimations.RemoveWindowFromGroupAnimation { id: removingAnimation } - TaskAnimations.TaskFastRestoreAnimation { id: fastRestoreAnimation } + TaskAnimations.FastRestoreAnimation { id: fastRestoreAnimation } //////////// States //////////////////// states: [ diff --git a/plasmoid/package/contents/ui/task/TaskItem.qml b/plasmoid/package/contents/ui/task/TaskItem.qml index 0ff5f2e4f..fe8c7b4ab 100644 --- a/plasmoid/package/contents/ui/task/TaskItem.qml +++ b/plasmoid/package/contents/ui/task/TaskItem.qml @@ -1452,9 +1452,9 @@ MouseArea{ /////Animations - TaskAnimations.TaskShowWindowAnimation{ id: showWindowAnimation } + TaskAnimations.ShowWindowAnimation{ id: showWindowAnimation } - TaskAnimations.TaskRestoreAnimation{ id: restoreAnimation} + TaskAnimations.RestoreAnimation{ id: restoreAnimation} //A Timer to check how much time the task is hovered in order to check if we must //show window previews @@ -1601,7 +1601,7 @@ MouseArea{ } ///Item's Removal Animation - ListView.onRemove: TaskAnimations.TaskRealRemovalAnimation{ id: taskRealRemovalAnimation } + ListView.onRemove: TaskAnimations.RealRemovalAnimation{ id: taskRealRemovalAnimation } }// main Item diff --git a/plasmoid/package/contents/ui/task/animations/TaskClickedAnimation.qml b/plasmoid/package/contents/ui/task/animations/ClickedAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskClickedAnimation.qml rename to plasmoid/package/contents/ui/task/animations/ClickedAnimation.qml diff --git a/plasmoid/package/contents/ui/task/animations/TaskFastRestoreAnimation.qml b/plasmoid/package/contents/ui/task/animations/FastRestoreAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskFastRestoreAnimation.qml rename to plasmoid/package/contents/ui/task/animations/FastRestoreAnimation.qml diff --git a/plasmoid/package/contents/ui/task/animations/TaskLauncherAnimation.qml b/plasmoid/package/contents/ui/task/animations/LauncherAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskLauncherAnimation.qml rename to plasmoid/package/contents/ui/task/animations/LauncherAnimation.qml diff --git a/plasmoid/package/contents/ui/task/animations/TaskNewWindowAnimation.qml b/plasmoid/package/contents/ui/task/animations/NewWindowAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskNewWindowAnimation.qml rename to plasmoid/package/contents/ui/task/animations/NewWindowAnimation.qml diff --git a/plasmoid/package/contents/ui/task/animations/TaskRealRemovalAnimation.qml b/plasmoid/package/contents/ui/task/animations/RealRemovalAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskRealRemovalAnimation.qml rename to plasmoid/package/contents/ui/task/animations/RealRemovalAnimation.qml diff --git a/plasmoid/package/contents/ui/task/animations/TaskRemoveWindowFromGroupAnimation.qml b/plasmoid/package/contents/ui/task/animations/RemoveWindowFromGroupAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskRemoveWindowFromGroupAnimation.qml rename to plasmoid/package/contents/ui/task/animations/RemoveWindowFromGroupAnimation.qml diff --git a/plasmoid/package/contents/ui/task/animations/TaskRestoreAnimation.qml b/plasmoid/package/contents/ui/task/animations/RestoreAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskRestoreAnimation.qml rename to plasmoid/package/contents/ui/task/animations/RestoreAnimation.qml diff --git a/plasmoid/package/contents/ui/task/animations/TaskShowWindowAnimation.qml b/plasmoid/package/contents/ui/task/animations/ShowWindowAnimation.qml similarity index 100% rename from plasmoid/package/contents/ui/task/animations/TaskShowWindowAnimation.qml rename to plasmoid/package/contents/ui/task/animations/ShowWindowAnimation.qml