Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/journal/journalactivity.py
Commit message (Collapse)AuthorAgeFilesLines
* refactoring based on lasted commits upstreamWalter Bender2013-06-091-5/+6
|
* Journal key: do only reveal Journal without focusing the search entry, SL #3988Simon Schampijer2012-10-091-7/+2
| | | | | | | Follow up of 7d039ea4d3ec1af00e19d99c4517fbde90fc9d67 Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Journal: defocus the search entry by defaultManuel Quiñones2012-10-021-2/+20
| | | | | | | | | | | | | | | | | Do the same behavior as in the shell views, explained in detail in commit 1570f774 . - add signals to ListView to inform the JournalActivity when a title edit starts and finishes, to skip the autosearch when typing - make MainToolBox search_entry a public attribute to make it visible from JournalActivity - as a consequence of the previous item, remove give_entry_focus method from MainToolBox and use the attribute directly Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
* Remove unneeded call in Journal toolbar, left from old toolbarManuel Quiñones2012-09-071-1/+0
| | | | | | | | Is giving AttributeError. Was left by accident in commit f1590970b884a4dab44bbdabc885f883bbc8bae0 . Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
* Use foreign_new_for_display API in GdkX11Simon Schampijer2012-09-071-1/+4
| | | | | | | | | | | gdk-window-foreign-new has been deprecated [1], so we have to use gdk-x11-window-foreign-new-for-display [2]. [1] http://developer.gnome.org/gdk/stable/gdk-X-Window-System-Interaction.html#gdk-window-foreign-new [2] http://developer.gnome.org/gdk/stable/gdk-X-Window-System-Interaction.html#gdk-x11-window-foreign-new-for-display Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel Quiñones <manuq@laptop.org>
* Journal: initial portManuel Quiñones2012-09-071-1/+1
| | | | | | | | | | | | | | | | | | | - pack_start: we have to pass all arguments now with the dynamic bindings - Gtk.widget_get_default_direction() -> Gtk.Widget.get_default_direction() - window.window -> window.get_window() - ListModel: on_* -> do_* and fix up the arguments and return values Gtk.TREE_MODEL_ITERS_PERSIST, Gtk.TREE_MODEL_LIST_ONLY -> Gtk.TreeModelFlags.ITERS_PERSIST, Gtk.TreeModelFlags.LIST_ONLY - replace Pango.PIXELS(width) and use Pango.Layout get_pixel_size - Gtk.TreeViewColumn: get_cell_renderers -> get_cells - Gio.volume_monitor_get() -> Gio.VolumeMonitor.get() - Volume BaseButton: fixup drag_dest_set - Gtk.Alignment: pass all required arguments - Gio.content_type_guess: pass all required arguments as named parameters - MimeRegistry: fix issue introduced by the automatic conversion Signed-off-by: Manuel Quiñones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
*