summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2018-07-08Replace remaining uses of margin-left and margin-right propertiesFelix Riemann1-3/+3
Replaced with margin-start and margin-end, which should make EomMetadataSidebar's layout in RTL environments more similar to the LTR layout. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/00641d2
2018-07-08EomMetadataSidebar: Allow filename to be wrapped at char boundariesFelix Riemann1-0/+4
It is possible for this field to contain no "word". Enable wrapping at char boundaries as fallback so that such files don't cause the sidebar enlarging too much. https://bugzilla.gnome.org/show_bug.cgi?id=700717 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/cee1f77
2018-07-08sidebar: fix a deprecationraveit651-1/+1
don't use gtk_image_menu_item_new_with_label There isn't any menuitem with an icon in the sidebar. So this can be replaced.
2018-07-08EomMetadataSidebar: Fix deprecation warning with newer GTK+Felix Riemann1-2/+1
origin commit: https://gitlab.gnome.org/GNOME/eog/commit/823493f
2018-07-08MetadataSidebar: Add a tooltip to the folder buttonFelix Riemann1-0/+2
origin commit: https://gitlab.gnome.org/GNOME/eog/commit/d82064e
2018-07-08MetadataSidebar: Change layout of the data valuesFelix Riemann1-10/+22
Move the value labels in their own line below their key labels. That improves the visibility of the values and takes away less horizontal space for image viewing. Unfortunately scrolling could be necessary now as the vertical space requirement increased. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/00aad08
2018-07-08Make metadata values in MetadataSidebar selectableFelix Riemann1-0/+1
origin commit: https://gitlab.gnome.org/GNOME/eog/commit/b6b0641
2018-07-08Fix build when not building with libexif and/or exempiFelix Riemann1-8/+41
There were quite some #ifdefs missing. https://bugzilla.gnome.org/show_bug.cgi?id=666556 Origin commit: https://gitlab.gnome.org/GNOME/eog/commit/deb2b63
2018-07-08Don't force-enable the sidebar on startup once a page is addedFelix Riemann1-4/+0
https://bugzilla.gnome.org/show_bug.cgi?id=668178 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/6b28ca6
2018-07-08Make Exif/XMP summaries available as sidebarFelix Riemann8-121/+851
Makes the data from the properties dialog available as a sidebar. A button opens the details tab in the properties dialog. This is graphically still a bit roughg. Committing it in hopes to get some early feedback. https://bugzilla.gnome.org/show_bug.cgi?id=616438 origin commit: https://git.gnome.org/browse/eog/commit/?id=7ac112f
2018-07-08Use GtkApplication to inhibit the screensaver during slideshowsFelix Riemann4-44/+37
Realized in a similar fashion as in Evince and Totem. https://bugzilla.gnome.org/show_bug.cgi?id=684581 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/e8b50ab
2018-07-08Ensure UI action sensitivity is set at least onceFelix Riemann1-0/+2
Beforehand empty windows had all UI actions active. Activation could then spawn critical warnings. This was probably caused by the switch to GtkApplication. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/0c82590
2018-07-08Remove leftover DBus service description fileFelix Riemann1-23/+0
It's not needed anymore after switching to GtkApplication. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/71c7a06
2018-07-08Remove spurious g_object_unrefFelix Riemann1-2/+0
The released reference isn't owned by the job. Could cause a segfault upon closing an EogWindow. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/757699b
2018-07-08Port EomApplication to GtkApplicationClaudio Saavedra7-298/+100
This removes the direct dependency on dbus and makes use of the GApplication/GtkApplication facilities for uniqueness and activation. Bump the glib requirement to 2.29.4, since we need G_APPLICATION_NON_UNIQUE. https://bugzilla.gnome.org/show_bug.cgi?id=622876 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/3d39587 Enable TotemScreensaver unconditionally It uses GDBus instead of libdbus now. It can be enabled even if libdbus is not available as GDBus/GIO is always present. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/4c32882
2018-07-08Make the displayed EomImage a property of EomScrollViewFelix Riemann2-0/+43
Besides the more obvious object orientation it also allows watch the property for changes. Might be useful for plugins. https://bugzilla.gnome.org/show_bug.cgi?id=544068 origin commit: https://git.gnome.org/browse/eog/commit/?h=gnome-3-4&id=4c0b5c8
2018-07-03EomPropertiesDialog: Make details view expand verticallyFelix Riemann1-0/+1
Otherwise it would only be large enough for roughly one line. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/c4a025e
2018-07-03Enable more Drag&Drop actions when eom is drag sourceFelix Riemann2-2/+6
Enable the link and ask actions allowing to create symlinks in Caja or triggering a menu asking what to do. Also enable the move action, which was not specifically enabled before but still worked anyway. https://bugzilla.gnome.org/show_bug.cgi?id=667076 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/bcf7817
2018-07-03Use new DBus API to show the current image in the file browserFelix Riemann3-34/+96
This improves the functionality implemented with commit 9df5fd43. The new API that will be included in Nautilus 3.3.4 not only opens a view for the containing folder but also marks the image in the view. The old behaviour is still available as fallback if the new API is not offered on the system. https://bugzilla.gnome.org/show_bug.cgi?id=650402 origin commit: https://git.gnome.org/browse/eog/commit/?h=gnome-3-4&id=fa74473
2018-07-03Add an "Open containing folder" commandAkshay Gupta1-0/+54
https://bugzilla.gnome.org/show_bug.cgi?id=650402 origin commit: https://git.gnome.org/browse/eog/commit/?id=9df5fd43
2018-05-18toolbar: add missing popup menu for launching toolbar editormonsta1-0/+1
2018-05-13sidebar: replace deprecated gtk_menu_popupraveit651-30/+10
2018-05-07svg: Fix offset coordinates when transforming SVG images on HiDPI displaysVictor Kareh1-5/+6
2018-05-04plugins: Use Python 3.x for Python pluginsFelix Riemann1-1/+1
2018-05-03replace deprecated gdk_flushraveit651-1/+1
2018-05-03fix some -Wincompatible-pointer-types warningsraveit653-3/+3
2018-05-01Scale HiDPI images correctlyVictor Kareh1-21/+19
2018-02-17eom-window.c: avoid deprecated GtkButton:use-stockPablo Barciela1-5/+2
2018-02-12avoid deprecated GtkStockPablo Barciela3-36/+40
2018-01-30require GTK+ 3.22 and GLib 2.50monsta8-100/+0
and drop additional checks for min/max GLib versions, it's not needed
2018-01-09update copyright year to 2018monsta1-1/+1
2017-12-29print-preview: replace custom code with GDK function callmonsta1-93/+3
taken from: https://git.gnome.org/browse/eog/commit/?id=c1ac983bf3bdbd7d8ab4ab34208f1f399bdacbfc
2017-08-23gtk 3.22: avoid deprecated gdk_screen_get_monitor... functions:ZenWalker1-0/+21
avoid deprecated: gdk_screen_get_monitor_geometry gdk_screen_get_monitor_at_window
2017-07-23don't use deprecated gtk_show_uriraveit651-0/+4
2017-07-20avoid deprecated gdk_screen_get_numberZenWalker1-2/+2
2017-05-11fix warning on closing empty window with multiple eom windowsmonsta1-1/+1
2017-04-27EomThumbView: Replace deprecated gtk_menu_popup functionraveit651-15/+10
2017-04-27error-message: replace usage of GtkStockraveit651-3/+3
2017-04-26A bunch of instrospection warning fixesEmmanuel Pacaud1-0/+18
taken from: https://git.gnome.org/browse/eog/commit/?id=1b22c52
2017-04-26EomScrollView: fix override_background deprecated callEmmanuel Pacaud1-15/+17
Do the necessary background drawing in draw callback. taken from: https://git.gnome.org/browse/eog/commit/?id=aea6404
2017-04-26EomPropertiesDialog: Fix deprecation warningsEmmanuel Pacaud1-4/+10
Implementation as suggested in the GTK+ documentation. taken from: https://git.gnome.org/browse/eog/commit/?id=a57e788
2017-04-26EomThumbNav: Fix deprecated function warningFelix Riemann1-1/+2
Just call the callback function directly as that's why the signal was manually triggered in the first place. taken from: https://git.gnome.org/browse/eog/commit/?id=4c86268
2017-04-26EomScrollView: Replace deprecated gtk_menu_popup functionAlexei Sorokin1-22/+11
2017-04-26EomScrollView: Switch from GtkDeviceManager to GdkSeatFelix Riemann1-2/+11
taken from: https://git.gnome.org/browse/eog/commit/?id=3de58ce
2017-05-08fix typo in function annotationmonsta1-1/+1
2017-05-07use different css files for < gtk+=3.20raveit651-0/+4
2017-05-06EomWindow: Set file open dialog transient for its parent windowFelix Riemann1-0/+1
taken from: https://git.gnome.org/browse/eog/commit/?id=a54b3a8
2017-04-25update copyright year to 2017monsta1-1/+1
2017-04-23EomCloseConfirmationDialog: set max width chars for primary labelraveit651-0/+2
This reduce the width of the confirmation dialog
2017-04-23EomCloseConfirmationDialog: Fix size request for the image listFelix Riemann1-1/+1
Change the size request of the encasing ScrolledWindow instead of the TreeView itself. Otherwise the list would hardly show one row. https://bugzilla.gnome.org/show_bug.cgi?id=679505 taken from: https://git.gnome.org/browse/eog/commit/?id=46fb713