|
@@ -229,20 +229,35 @@ public class FileMenuFilter {
|
|
|
toShow.add(R.id.action_send_file);
|
|
|
}
|
|
|
|
|
|
- // FAVORITES
|
|
|
+ // Kept available offline
|
|
|
+ if (!allFiles() || synchronizing || allKeptAvailableOffline()) {
|
|
|
+ toHide.add(R.id.action_keep_files_offline);
|
|
|
+ } else {
|
|
|
+ toShow.add(R.id.action_keep_files_offline);
|
|
|
+ }
|
|
|
+
|
|
|
+ // Not kept available offline
|
|
|
+ if (!allFiles() || synchronizing || allNotKeptAvailableOffline()) {
|
|
|
+ toHide.add(R.id.action_unset_keep_files_offline);
|
|
|
+ } else {
|
|
|
+ toShow.add(R.id.action_unset_keep_files_offline);
|
|
|
+ }
|
|
|
+
|
|
|
+ // Favorite
|
|
|
if (!allFiles() || synchronizing || allFavorites()) {
|
|
|
- toHide.add(R.id.action_favorite_file);
|
|
|
+ toHide.add(R.id.action_favorite);
|
|
|
} else {
|
|
|
- toShow.add(R.id.action_favorite_file);
|
|
|
+ toShow.add(R.id.action_favorite);
|
|
|
}
|
|
|
|
|
|
- // UNFAVORITES
|
|
|
- if (!allFiles() || synchronizing || allUnfavorites()) {
|
|
|
- toHide.add(R.id.action_unfavorite_file);
|
|
|
+ // Unfavorite
|
|
|
+ if (!allFiles() || synchronizing || allNotFavorites()) {
|
|
|
+ toHide.add(R.id.action_unset_favorite);
|
|
|
} else {
|
|
|
- toShow.add(R.id.action_unfavorite_file);
|
|
|
+ toShow.add(R.id.action_unset_favorite);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
}
|
|
|
|
|
|
private boolean anyFileSynchronizing() {
|
|
@@ -320,7 +335,7 @@ public class FileMenuFilter {
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- private boolean allFavorites() {
|
|
|
+ private boolean allKeptAvailableOffline() {
|
|
|
for(OCFile file: mFiles) {
|
|
|
if(!file.isAvailableOffline()) {
|
|
|
return false;
|
|
@@ -329,7 +344,25 @@ public class FileMenuFilter {
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
- private boolean allUnfavorites() {
|
|
|
+ private boolean allFavorites() {
|
|
|
+ for(OCFile file: mFiles) {
|
|
|
+ if(!file.getIsFavorite()) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ private boolean allNotFavorites() {
|
|
|
+ for(OCFile file: mFiles) {
|
|
|
+ if(file.getIsFavorite()) {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ private boolean allNotKeptAvailableOffline() {
|
|
|
for(OCFile file: mFiles) {
|
|
|
if(file.isAvailableOffline()) {
|
|
|
return false;
|