Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
Commit message (Collapse)AuthorAgeFilesLines
* [shell] Add an action to edit menu to save current settings as defaultCarlos Garcia Campos2010-07-271-118/+224
| | | | | Default settings will be used only for new documents that don't have metadata. Fixes bug #620325.
* [shell] Add ev_metadata_is_empty()Carlos Garcia Campos2010-07-272-0/+7
| | | | It can be used to know whether a document has already metadata
* [build] Rename DATADIR with EVINCEDATADIRHib Eris2010-07-263-6/+3
| | | | | Defining DATADIR conflicts with win32 api (ObjIdl.h), so this define is renamed to EVINCEDATADIR.
* [shell] Do not leak settings objects when document reloadsCarlos Garcia Campos2010-07-261-10/+14
|
* [shell] Migrate lockdown to gsettingsCarlos Garcia Campos2010-07-261-48/+30
|
* Preliminary support for adding new annotationsCarlos Garcia Campos2010-07-206-27/+673
| | | | At the moment only Text annotations can be added. See bug #168304.
* [shell] Flush DBus connection after emitting closed signal for the last windowCarlos Garcia Campos2010-07-121-4/+8
|
* [shell] Add ev_application_get_n_windows()Carlos Garcia Campos2010-07-122-0/+19
|
* [shell] Optimize ev_application_has_window()Carlos Garcia Campos2010-07-121-3/+10
|
* [shell] Focus the selected annotation in the sidebarCarlos Garcia Campos2010-07-123-0/+63
|
* [shell] Add a sidebar page to show the list of annotationsCarlos Garcia Campos2010-07-124-0/+426
|
* [shell] Add GetWindowList DBus method to EvWindowJose Aliste2010-07-091-40/+60
| | | | It returns the list of currently opened windows
* [shell] Add ev_window_get_dbus_object_path()Jose Aliste2010-07-092-0/+11
|
* [shell] Emit a DBus signal when window is closedJose Aliste2010-07-091-0/+36
|
* [ev-daemon] Add FindDocument method to the daemon DBus interfaceJose Aliste2010-07-091-1/+24
| | | | | It returns the name owner of the evince process for the given document URI.
* Switch to GTK+ 3Carlos Garcia Campos2010-07-082-11/+12
|
* [shell] Add synctex supportCarlos Garcia Campos2010-06-281-0/+143
|
* [shell] Add ev_application_get_dbus_connection()Carlos Garcia Campos2010-06-282-0/+11
|
* [shell] Rename OpenURI dbus method as Reload and remove uri argumentCarlos Garcia Campos2010-06-281-30/+13
|
* [shell] Free dbus introspection data on application shutdownCarlos Garcia Campos2010-06-281-3/+4
|
* [printing] Don't save print document settings into global fileCarlos Garcia Campos2010-06-191-10/+27
| | | | Fixes bug #530018.
* [shell] Track media keys proxy name owner to enable/disable itCarlos Garcia Campos2010-06-181-0/+37
|
* [shell] Use new gdbus API for the mediaplayerkeysClaudio Saavedra2010-06-181-34/+22
| | | | This partially fixes the build with latest glib from master.
* [shell] Reload presentation view when document changesCarlos Garcia Campos2010-06-161-0/+6
| | | | Fixes bug #621750.
* Remove hard-coded reason in totem-scrsaverBastien Nocera2010-06-131-0/+3
| | | | | | | We should now be able to share it between totem and evince without changes. https://bugzilla.gnome.org/show_bug.cgi?id=621386
* [shell] Don't show the loading window when loading remote filesCarlos Garcia Campos2010-06-091-1/+1
| | | | We already have a progress bar in the message area.
* Use a dynamic pixbuf cache size based on document page sizeCarlos Garcia Campos2010-05-311-11/+38
| | | | | | | Instead of using a static number of pages to cache, we use a size in bytes, and the number of pages that will be cached depends on the current zoom level. It allows us caching more pages for lower scale factors and increase zoom level by caching fewer pages. See bug #303365.
* [shell] Remove unused variable and codeHib Eris2010-05-271-6/+0
|
* [doc] Fix shell api docs buildCarlos Garcia Campos2010-05-251-1/+0
|
* Remove some code duplicationHib Eris2010-05-252-31/+1
|
* [windows] Fix localization on WindowsHib Eris2010-05-251-1/+30
| | | | Fixes bgo#610548
* [shell] Use async GDBus api in ev-applicationCarlos Garcia Campos2010-05-252-154/+271
|
* [shell] Make sure we have a proxy before using it in ev-media-player-keysCarlos Garcia Campos2010-05-251-3/+3
|
* [shell] Update to current GDBus APICarlos Garcia Campos2010-05-251-0/+3
| | | | And bump glib requirements
* [shell] Use g_bus_unwatch_proxy() instead of g_bus_unwatch_name()Carlos Garcia Campos2010-05-251-1/+1
|
* [shell] Fix build with dbus disabledCarlos Garcia Campos2010-05-251-1/+1
|
* [shell] Use g_bus_watch_proxy instead of g_bus_watch_name in media-keysCarlos Garcia Campos2010-05-253-114/+52
|
* [totem-screensaver] Use g_bus_watch_proxy instead of g_bus_watch_nameCarlos Garcia Campos2010-05-251-1/+1
| | | | | This way we don't need a GDBusConnection ref, since the proxy created by GDBus contains the shared connection.
* Use g_bus_own_name and register object on bus acquired callbackCarlos Garcia Campos2010-05-251-59/+60
| | | | | It simplifies the code and we don't need to take care about connection refcount
* Use always the session bus instead of starterCarlos Garcia Campos2010-05-251-1/+1
| | | | I'm not sure it makes sense using the system bus
* Update to current GDBus APICarlos Garcia Campos2010-05-252-2/+0
|
* [shell] Update ©Christian Persch2010-05-252-0/+2
|
* [shell] Remove DBUS conditionals from TotemScrsaverChristian Persch2010-05-251-1/+1
| | | | | | Now that GDBus is in GIO, there's no need to conditionally compile this code. Just allow passing %NULL for @connection in totem_scrsaver_new() to disable using DBUS to inhibit the screensaver.
* [shell] Use g_bus_watch_name_on_connection()Christian Persch2010-05-251-6/+6
| | | | We already have the bus connection here, so just pass it along.
* [shell] Pass the GDBusConnection to TotemScrsaverChristian Persch2010-05-251-2/+4
| | | | We already have a connection, so just pass it to TotemScrsaver.
* [shell] Pass the GDBusConnection to EvMediaPlayerKeysChristian Persch2010-05-253-26/+72
| | | | We already have a connection, so just pass it to EvMediaPlayerKeys.
* [shell] Fix name watchingChristian Persch2010-05-251-0/+3
|
* [shell] Fix for GDBus API changesChristian Persch2010-05-252-24/+24
|
* [shell] Don't autostart the daemon just to unregisterChristian Persch2010-05-251-1/+1
|
* [daemon] Add debug output to name watcherChristian Persch2010-05-251-0/+5
|