~ubuntu-branches/ubuntu/raring/nautilus/raring

« back to all changes in this revision

Viewing changes to libnautilus-private/nautilus-idle-queue.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher, Jeremy Bicha
  • Date: 2012-01-31 13:45:01 UTC
  • mfrom: (1.17.25)
  • Revision ID: package-import@ubuntu.com-20120131134501-yn7mqny7fgzx9fao
Tags: 1:3.3.4-0ubuntu1
* New upstream version which fixes:
  - "Opening Popupmenu in Context of Folder with List-View impossible?"
    (lp: #126540)
  - "'Create folder in here' context menu option for nautilus" (lp: #61786)
  - the file count and the size count change in opposite direction.
    (lp: #503330)
  - the mounts in the place menu should have a properties entry.
    (lp: #846289)
  - add command line option to select file (lp: #575719)
  - Media in 'Places' side bar should have same context menu as in 
    'Computer' (lp: #230098)
* debian/nautilus-data.install:
  - updated, ui and icons have been moved into gresources
* debian/patches/05_desktop_menu_export.patch:
   - updated to correctly include the gresources desktop definition

[ Jeremy Bicha ]
* New upstream release.
* debian/control.in:
  - Bump minimum GTK and glib
* Refreshed patches
* Dropped upstream patches:
  - 17_dont_allow_new_tab_on_desktop.patch
  - 18_fix_crash_in_get_current_uri.patch
  - 19_lazily_initialize_notification_service.patch
  - git_sideplace_sorting.patch
  - git_next_row.patch
  - git_dont_document_browser_option.patch
  - git_browser_compat.patch
  - git_bookmarks_reordering.patch
  - git_listview_context_menus.patch
  - git_use_gtk_grid.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: 8; c-basic-offset: 8 -*- */
2
 
 
3
 
/*
4
 
 *  libnautilus: A library for nautilus view implementations.
5
 
 *
6
 
 *  Copyright (C) 2001 Eazel, Inc.
7
 
 *
8
 
 *  This library is free software; you can redistribute it and/or
9
 
 *  modify it under the terms of the GNU Library General Public
10
 
 *  License as published by the Free Software Foundation; either
11
 
 *  version 2 of the License, or (at your option) any later version.
12
 
 *
13
 
 *  This library is distributed in the hope that it will be useful,
14
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16
 
 *  Library General Public License for more details.
17
 
 *
18
 
 *  You should have received a copy of the GNU Library General Public
19
 
 *  License along with this library; if not, write to the Free
20
 
 *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
 
 *
22
 
 *  Author: Darin Adler <darin@bentspoon.com>
23
 
 *
24
 
 */
25
 
 
26
 
#ifndef NAUTILUS_IDLE_QUEUE_H
27
 
#define NAUTILUS_IDLE_QUEUE_H
28
 
 
29
 
#include <glib.h>
30
 
 
31
 
G_BEGIN_DECLS
32
 
 
33
 
typedef struct NautilusIdleQueue NautilusIdleQueue;
34
 
 
35
 
NautilusIdleQueue *nautilus_idle_queue_new     (void);
36
 
void               nautilus_idle_queue_add     (NautilusIdleQueue *queue,
37
 
                                                GFunc              callback,
38
 
                                                gpointer           data,
39
 
                                                gpointer           callback_data,
40
 
                                                GFreeFunc          free_callback_data);
41
 
void               nautilus_idle_queue_destroy (NautilusIdleQueue *queue);
42
 
 
43
 
G_END_DECLS
44
 
 
45
 
#endif /* NAUTILUS_IDLE_QUEUE_H */