[gnome-photos/wip/rishi/collection: 49/51] Add PhotosImportDialog



commit 8bd65aa344c7281c3ee6b677986c1233c8b05cb0
Author: Debarshi Ray <debarshir gnome org>
Date:   Mon Feb 5 13:12:40 2018 +0100

    Add PhotosImportDialog
    
    https://gitlab.gnome.org/GNOME/gnome-photos/issues/29

 po/POTFILES.in              |   1 +
 src/Makefile.am             |   3 +
 src/photos-import-dialog.c  | 376 ++++++++++++++++++++++++++++++++++++++++++++
 src/photos-import-dialog.h  |  35 +++++
 src/photos-import-dialog.ui | 168 ++++++++++++++++++++
 src/photos.gresource.xml    |   1 +
 6 files changed, 584 insertions(+)
---
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 7859510e..fa44a457 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -17,6 +17,7 @@ src/photos-facebook-item.c
 src/photos-flickr-item.c
 src/photos-google-item.c
 src/photos-help-overlay.ui
+src/photos-import-dialog.ui
 src/photos-indexing-notification.c
 src/photos-local-item.c
 src/photos-main-toolbar.c
diff --git a/src/Makefile.am b/src/Makefile.am
index fbbf7f8b..22a33274 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -124,6 +124,8 @@ gnome_photos_SOURCES = \
        photos-image-view.h \
        photos-image-view-helper.c \
        photos-image-view-helper.h \
+       photos-import-dialog.c \
+       photos-import-dialog.h \
        photos-indexing-notification.c \
        photos-indexing-notification.h \
        photos-item-manager.c \
@@ -383,6 +385,7 @@ EXTRA_DIST = \
        photos-embed.ui \
        photos-export-dialog.ui \
        photos-help-overlay.ui \
+       photos-import-dialog.ui \
        photos-main-toolbar.ui \
        photos-main-window.ui \
        photos-marshalers.list \
diff --git a/src/photos-import-dialog.c b/src/photos-import-dialog.c
new file mode 100644
index 00000000..ebec07f2
--- /dev/null
+++ b/src/photos-import-dialog.c
@@ -0,0 +1,376 @@
+/*
+ * Photos - access, organize and share your photos on GNOME
+ * Copyright © 2018 Red Hat, Inc.
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#include "config.h"
+
+#include <dazzle.h>
+#include <gio/gio.h>
+#include <tracker-sparql.h>
+
+#include "photos-filterable.h"
+#include "photos-import-dialog.h"
+#include "photos-item-manager.h"
+#include "photos-query.h"
+#include "photos-query-builder.h"
+#include "photos-search-context.h"
+#include "photos-tracker-queue.h"
+#include "photos-utils.h"
+
+
+struct _PhotosImportDialog
+{
+  GtkDialog parent_instance;
+  DzlFuzzyMutableIndex *index;
+  GCancellable *cancellable;
+  GHashTable *collections;
+  GSimpleActionGroup *action_group;
+  GtkWidget *add_existing_button;
+  GtkWidget *add_existing_collection_name_button;
+  GtkWidget *add_existing_collection_name_label;
+  GtkWidget *add_existing_label;
+  GtkWidget *collections_popover;
+  GtkWidget *collections_popover_grid;
+  GtkWidget *collections_popover_search_entry;
+  GtkWidget *create_new_button;
+  GtkWidget *create_new_entry;
+  GtkWidget *create_new_label;
+  PhotosBaseManager *item_mngr;
+  PhotosTrackerQueue *queue;
+  gint64 time;
+};
+
+enum
+{
+  PROP_0,
+  PROP_TIME
+};
+
+
+G_DEFINE_TYPE (PhotosImportDialog, photos_import_dialog, GTK_TYPE_DIALOG);
+
+
+static void
+photos_import_dialog_fetch_collections_local_cursor_next (GObject *source_object,
+                                                          GAsyncResult *res,
+                                                          gpointer user_data)
+{
+  PhotosImportDialog *self;
+  g_autoptr (PhotosBaseItem) item = NULL;
+  TrackerSparqlCursor *cursor = TRACKER_SPARQL_CURSOR (source_object);
+  gboolean success;
+
+  {
+    g_autoptr (GError) error = NULL;
+
+    /* Note that tracker_sparql_cursor_next_finish can return FALSE even
+     * without an error.
+     */
+    success = tracker_sparql_cursor_next_finish (cursor, res, &error);
+    if (error != NULL)
+      {
+        if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
+          g_warning ("Unable to fetch local collections: %s", error->message);
+
+        goto out;
+      }
+  }
+
+  self = PHOTOS_IMPORT_DIALOG (user_data);
+
+  if (!success)
+    goto out;
+
+  item = photos_item_manager_create_item (PHOTOS_ITEM_MANAGER (self->item_mngr), G_TYPE_NONE, cursor, FALSE);
+
+ out:
+  return;
+}
+
+
+static void
+photos_import_dialog_fetch_collections_local_query_executed (GObject *source_object,
+                                                             GAsyncResult *res,
+                                                             gpointer user_data)
+{
+  PhotosImportDialog *self;
+  TrackerSparqlConnection *connection = TRACKER_SPARQL_CONNECTION (source_object);
+  TrackerSparqlCursor *cursor = NULL; /* TODO: use g_autoptr */
+
+  {
+    g_autoptr (GError) error = NULL;
+
+    cursor = tracker_sparql_connection_query_finish (connection, res, &error);
+    if (error != NULL)
+      {
+        if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
+          g_warning ("Unable to fetch local collections: %s", error->message);
+
+        goto out;
+      }
+  }
+
+  self = PHOTOS_IMPORT_DIALOG (user_data);
+
+  if (cursor == NULL)
+    goto out;
+
+  tracker_sparql_cursor_next_async (cursor,
+                                    self->cancellable,
+                                    photos_import_dialog_fetch_collections_local_cursor_next,
+                                    self);
+
+ out:
+  g_clear_object (&cursor);
+  return;
+}
+
+
+static void
+photos_import_dialog_select_existing_notify_state (GSimpleAction *action, GParamSpec *pspec, gpointer 
user_data)
+{
+  PhotosImportDialog *self = PHOTOS_IMPORT_DIALOG (user_data);
+  g_autoptr (GVariant) state = NULL;
+  PhotosBaseItem *item;
+  const gchar *id;
+  const gchar *name;
+
+  state = g_action_get_state (G_ACTION (action));
+  g_return_if_fail (state != NULL);
+
+  id = g_variant_get_string (state, NULL);
+  item = g_hash_table_lookup (self->collections, id);
+  g_return_if_fail (PHOTOS_IS_BASE_ITEM (item));
+
+  name = photos_base_item_get_name (item);
+  gtk_label_set_label (GTK_LABEL (self->add_existing_collection_name_label), name);
+}
+
+
+static void
+photos_import_dialog_constructed (GObject *object)
+{
+  //PhotosImportDialog *self = PHOTOS_IMPORT_DIALOG (object);
+
+  G_OBJECT_CLASS (photos_import_dialog_parent_class)->constructed (object);
+}
+
+
+static void
+photos_import_dialog_dispose (GObject *object)
+{
+  PhotosImportDialog *self = PHOTOS_IMPORT_DIALOG (object);
+
+  if (self->cancellable != NULL)
+    {
+      g_cancellable_cancel (self->cancellable);
+      g_clear_object (&self->cancellable);
+    }
+
+  g_clear_object (&self->action_group);
+  g_clear_object (&self->item_mngr);
+  g_clear_object (&self->queue);
+  g_clear_pointer (&self->index, (GDestroyNotify) dzl_fuzzy_mutable_index_unref);
+  g_clear_pointer (&self->collections, (GDestroyNotify) g_hash_table_unref);
+
+  G_OBJECT_CLASS (photos_import_dialog_parent_class)->dispose (object);
+}
+
+
+static void
+photos_import_dialog_finalize (GObject *object)
+{
+  //PhotosImportDialog *self = PHOTOS_IMPORT_DIALOG (object);
+
+  G_OBJECT_CLASS (photos_import_dialog_parent_class)->finalize (object);
+}
+
+
+static void
+photos_import_dialog_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
+{
+  PhotosImportDialog *self = PHOTOS_IMPORT_DIALOG (object);
+
+  switch (prop_id)
+    {
+    case PROP_TIME:
+      self->time = g_value_get_int64 (value);
+      break;
+
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+      break;
+    }
+}
+
+
+static void
+photos_import_dialog_init (PhotosImportDialog *self)
+{
+  GApplication *app;
+  g_autoptr (GSimpleAction) action = NULL;
+  GVariant *initial_state;
+  PhotosBaseManager *item_mngr_chld;
+  PhotosSearchContextState *state;
+  guint i;
+  guint n_buttons = 0;
+  guint n_items;
+
+  gtk_widget_init_template (GTK_WIDGET (self));
+
+  app = g_application_get_default ();
+  state = photos_search_context_get_state (PHOTOS_SEARCH_CONTEXT (app));
+
+  self->index = dzl_fuzzy_mutable_index_new_with_free_func (FALSE, g_object_unref);
+  self->cancellable = g_cancellable_new ();
+  self->collections = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, g_object_unref);
+
+  self->action_group = g_simple_action_group_new ();
+  gtk_widget_insert_action_group (GTK_WIDGET (self), "dialog", G_ACTION_GROUP (self->action_group));
+
+  initial_state = g_variant_new_string ("");
+  action = g_simple_action_new_stateful ("select-existing", G_VARIANT_TYPE_STRING, initial_state);
+  g_signal_connect (action,
+                    "notify::state",
+                    G_CALLBACK (photos_import_dialog_select_existing_notify_state),
+                    self);
+  g_action_map_add_action (G_ACTION_MAP (self->action_group), G_ACTION (action));
+
+  self->item_mngr = g_object_ref (state->item_mngr);
+
+  /* We are only interested in local collections. Since
+   * PHOTOS_SOURCE_STOCK_LOCAL is built-in, we don't need to worry
+   * about it coming or going during the lifetime of the
+   * application. Secondly, even though the collections are loaded
+   * asynchronously as a result of querying Tracker, they should be in
+   * place before the user gets to use the ImportDialog.
+   */
+
+  dzl_fuzzy_mutable_index_begin_bulk_insert (self->index);
+  item_mngr_chld = photos_item_manager_get_for_mode (PHOTOS_ITEM_MANAGER (self->item_mngr),
+                                                     PHOTOS_WINDOW_MODE_COLLECTIONS);
+  n_items = g_list_model_get_n_items (G_LIST_MODEL (item_mngr_chld));
+
+  for (i = n_items - 1; ; i--)
+    {
+      g_autoptr (PhotosBaseItem) item = NULL;
+      const gchar *id;
+      const gchar *identifier;
+
+      item = PHOTOS_BASE_ITEM (g_list_model_get_object (G_LIST_MODEL (item_mngr_chld), i));
+      g_assert_true (photos_base_item_is_collection (item));
+
+      id = photos_filterable_get_id (PHOTOS_FILTERABLE (item));
+      identifier = photos_base_item_get_identifier (item);
+      if (g_strcmp0 (id, PHOTOS_COLLECTION_SCREENSHOT) == 0
+          || (identifier != NULL && g_str_has_prefix (identifier, 
PHOTOS_QUERY_LOCAL_COLLECTIONS_IDENTIFIER)))
+        {
+          const gchar *name;
+
+          name = photos_base_item_get_name (item);
+          dzl_fuzzy_mutable_index_insert (self->index, name, g_object_ref (item));
+          g_hash_table_insert (self->collections, (gpointer) id, g_object_ref (item));
+
+          if (n_buttons < 4)
+            {
+              GtkWidget *collection_button;
+
+              collection_button = gtk_model_button_new ();
+              gtk_actionable_set_action_name (GTK_ACTIONABLE (collection_button), "dialog.select-existing");
+              gtk_actionable_set_action_target (GTK_ACTIONABLE (collection_button), "s", id);
+              gtk_container_add (GTK_CONTAINER (self->collections_popover_grid), collection_button);
+              n_buttons++;
+            }
+        }
+
+      if (i == 0)
+        break;
+    }
+
+  dzl_fuzzy_mutable_index_end_bulk_insert (self->index);
+
+  {
+    g_autoptr (GError) error = NULL;
+
+    self->queue = photos_tracker_queue_dup_singleton (NULL, &error);
+    if (G_UNLIKELY (error != NULL))
+      g_warning ("Unable to create PhotosTrackerQueue: %s", error->message);
+  }
+
+  if (G_LIKELY (self->queue != NULL))
+    {
+      g_autoptr (PhotosQuery) query = NULL;
+
+      query = photos_query_builder_fetch_collections_local (state);
+      photos_tracker_queue_select (self->queue,
+                                   query,
+                                   self->cancellable,
+                                   photos_import_dialog_fetch_collections_local_query_executed,
+                                   self,
+                                   NULL);
+    }
+}
+
+
+static void
+photos_import_dialog_class_init (PhotosImportDialogClass *class)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (class);
+  GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
+
+  object_class->constructed = photos_import_dialog_constructed;
+  object_class->dispose = photos_import_dialog_dispose;
+  object_class->finalize = photos_import_dialog_finalize;
+  object_class->set_property = photos_import_dialog_set_property;
+
+  g_object_class_install_property (object_class,
+                                   PROP_TIME,
+                                   g_param_spec_int64 ("time",
+                                                       "Time",
+                                                       "The timestamp for the default new collection name",
+                                                       0,
+                                                       G_MAXINT64,
+                                                       0,
+                                                       G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE));
+
+  gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/Photos/import-dialog.ui");
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, add_existing_button);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, 
add_existing_collection_name_button);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, 
add_existing_collection_name_label);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, add_existing_label);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, collections_popover);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, collections_popover_grid);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, collections_popover_search_entry);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, create_new_button);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, create_new_entry);
+  gtk_widget_class_bind_template_child (widget_class, PhotosImportDialog, create_new_label);
+}
+
+
+GtkWidget *
+photos_import_dialog_new (GtkWindow *parent, gint64 time)
+{
+  g_return_val_if_fail (GTK_IS_WINDOW (parent), NULL);
+  g_return_val_if_fail (time >= 0, NULL);
+
+  return g_object_new (PHOTOS_TYPE_IMPORT_DIALOG,
+                       "time", time,
+                       "transient-for", parent,
+                       "use-header-bar", TRUE,
+                       NULL);
+}
diff --git a/src/photos-import-dialog.h b/src/photos-import-dialog.h
new file mode 100644
index 00000000..a1683568
--- /dev/null
+++ b/src/photos-import-dialog.h
@@ -0,0 +1,35 @@
+/*
+ * Photos - access, organize and share your photos on GNOME
+ * Copyright © 2018 Red Hat, Inc.
+ *
+ * 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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef PHOTOS_IMPORT_DIALOG_H
+#define PHOTOS_IMPORT_DIALOG_H
+
+#include <gtk/gtk.h>
+
+#include "photos-base-item.h"
+
+G_BEGIN_DECLS
+
+#define PHOTOS_TYPE_IMPORT_DIALOG (photos_import_dialog_get_type ())
+G_DECLARE_FINAL_TYPE (PhotosImportDialog, photos_import_dialog, PHOTOS, IMPORT_DIALOG, GtkDialog);
+
+GtkWidget          *photos_import_dialog_new                (GtkWindow *parent, gint64 time);
+
+G_END_DECLS
+
+#endif /* PHOTOS_IMPORT_DIALOG_H */
diff --git a/src/photos-import-dialog.ui b/src/photos-import-dialog.ui
new file mode 100644
index 00000000..773628de
--- /dev/null
+++ b/src/photos-import-dialog.ui
@@ -0,0 +1,168 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Photos - access, organize and share your photos on GNOME
+ Copyright © 2018 Red Hat, Inc.
+
+ 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 3 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, see <http://www.gnu.org/licenses/>.
+-->
+<interface domain="gnome-photos">
+  <template class="PhotosImportDialog" parent="GtkDialog">
+    <property name="border_width">18</property>
+    <property name="title" translatable="yes" context="dialog title">Name Album</property>
+    <property name="resizable">0</property>
+    <property name="modal">1</property>
+    <property name="type_hint">dialog</property>
+    <property name="skip_taskbar_hint">1</property>
+    <child internal-child="vbox">
+      <object class="GtkBox">
+        <property name="orientation">vertical</property>
+        <child>
+          <object class="GtkGrid">
+            <property name="column_spacing">12</property>
+            <property name="margin">12</property>
+            <property name="row_spacing">12</property>
+            <child>
+              <object class="GtkRadioButton" id="create_new_button">
+                <property name="active">1</property>
+                <property name="halign">start</property>
+                <property name="no_show_all">1</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="create_new_label">
+                <property name="halign">end</property>
+                <property name="label" translatable="yes">_Create New</property>
+                <property name="mnemonic_widget">create_new_entry</property>
+                <property name="use_underline">1</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">0</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkEntry" id="create_new_entry">
+                <property name="activates_default">1</property>
+                <property name="width_chars">30</property>
+              </object>
+              <packing>
+                <property name="left_attach">2</property>
+                <property name="top_attach">0</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkRadioButton" id="add_existing_button">
+                <property name="halign">start</property>
+                <property name="group">create_new_button</property>
+                <property name="no_show_all">1</property>
+              </object>
+              <packing>
+                <property name="left_attach">0</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkLabel" id="add_existing_label">
+                <property name="halign">end</property>
+                <property name="label" translatable="yes">Add to _Existing</property>
+                <property name="mnemonic_widget">add_existing_button</property>
+                <property name="no_show_all">1</property>
+                <property name="use_underline">1</property>
+              </object>
+              <packing>
+                <property name="left_attach">1</property>
+                <property name="top_attach">1</property>
+              </packing>
+            </child>
+            <child>
+              <object class="GtkMenuButton" id="add_existing_collection_name_button">
+                <property name="no_show_all">1</property>
+                <property name="popover">collections_popover</property>
+                <child>
+                  <object class="GtkGrid">
+                    <property name="column-spacing">12</property>
+                    <child>
+                      <object class="GtkLabel" id="add_existing_collection_name_label">
+                        <property name="ellipsize">PANGO_ELLIPSIZE_MIDDLE</property>
+                        <property name="valign">GTK_ALIGN_CENTER</property>
+                        <property name="vexpand">1</property>
+                      </object>
+                    </child>
+                    <child>
+                      <object class="GtkImage">
+                        <property name="icon-name">pan-down-symbolic</property>
+                        <property name="pixel-size">16</property>
+                        <property name="valign">GTK_ALIGN_CENTER</property>
+                        <property name="vexpand">1</property>
+                      </object>
+                    </child>
+                  </object>
+                </child>
+              </object>
+              <packing>
+                <property name="left_attach">2</property>
+                <property name="top_attach">1</property>
+                <property name="width">2</property>
+              </packing>
+            </child>
+          </object>
+          <packing>
+            <property name="expand">1</property>
+          </packing>
+        </child>
+      </object>
+    </child>
+    <child type="action">
+      <object class="GtkButton" id="cancel_button">
+        <property name="label" translatable="yes">_Cancel</property>
+        <property name="use_underline">1</property>
+      </object>
+    </child>
+    <child type="action">
+      <object class="GtkButton" id="ok_button">
+        <property name="can_default">1</property>
+        <property name="label" translatable="yes">_Add</property>
+        <property name="use_underline">1</property>
+      </object>
+    </child>
+    <action-widgets>
+      <action-widget response="cancel">cancel_button</action-widget>
+      <action-widget response="ok" default="true">ok_button</action-widget>
+    </action-widgets>
+  </template>
+  <object class="GtkPopoverMenu" id="collections_popover">
+    <child>
+      <object class="GtkGrid">
+        <property name="margin">10</property>
+        <property name="orientation">GTK_ORIENTATION_VERTICAL</property>
+        <property name="row_spacing">12</property>
+        <child>
+          <object class="GtkSearchEntry" id="collections_popover_search_entry">
+            <property name="width_chars">30</property>
+          </object>
+        </child>
+        <child>
+          <object class="GtkGrid" id="collections_popover_grid">
+            <property name="orientation">GTK_ORIENTATION_VERTICAL</property>
+          </object>
+        </child>
+      </object>
+    </child>
+  </object>
+</interface>
diff --git a/src/photos.gresource.xml b/src/photos.gresource.xml
index dc959b8d..76a81df4 100644
--- a/src/photos.gresource.xml
+++ b/src/photos.gresource.xml
@@ -24,6 +24,7 @@
     <file alias="dropdown.ui" preprocess="xml-stripblanks" compressed="true">photos-dropdown.ui</file>
     <file alias="embed.ui" preprocess="xml-stripblanks" compressed="true">photos-embed.ui</file>
     <file alias="export-dialog.ui" preprocess="xml-stripblanks" 
compressed="true">photos-export-dialog.ui</file>
+    <file alias="import-dialog.ui" preprocess="xml-stripblanks" 
compressed="true">photos-import-dialog.ui</file>
     <file alias="main-toolbar.ui" preprocess="xml-stripblanks" 
compressed="true">photos-main-toolbar.ui</file>
     <file alias="main-window.ui" preprocess="xml-stripblanks" compressed="true">photos-main-window.ui</file>
     <file alias="preview-menu.ui" preprocess="xml-stripblanks" 
compressed="true">photos-preview-menu.ui</file>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]