~ubuntu-branches/ubuntu/raring/gtk+2.0/raring-proposed

« back to all changes in this revision

Viewing changes to .pc/009_gtk-export-filechooser.patch/gtk/gtkquery.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2011-12-13 19:29:04 UTC
  • mfrom: (72.5.19 sid)
  • Revision ID: package-import@ubuntu.com-20111213192904-3a0r14iwsgdjt5lp
Tags: 2.24.8-2ubuntu1
* debian/patches/git_buggy_icon_view_update.patch:
  - git commit reverting a buggy icon view patch leading to 
    segfaults in lxappearance (lp: #899322)
* Resynchronize on Debian
* debian/libgtk2.0-0.symbols:
  - Add Ubuntu specific symbols
* debian/rules:
  - Use dh_autoreconf
  - Use -XNEWS -Xchangelog.Debian -XREADME to dh_compress calls to 
    workaround a gzip issue leading to different md5sum between builds
* debian/patches/012_ubuntu-set-grab-add.patch
  - Added ubuntu_gtk_widget_set_has_grab so we can grab sliders and 
    things in menus, needed by ido
* debian/patches/043_menu_proxy.patch
  - Add GtkMenuProxy support for remoting menus.
* debian/patches/044_grips.patch:
  - Backport from the gtk3 resize grips to the natty gtk2 version
* debian/patches/061_use_pdf_as_default_printing_standard.patch:
  - dropped, the issue has been fixed upstream differently since
* debian/patches/062_dnd_menubar.patch:
  - Allow click on menubars for dnd
* debian/patches/063_treeview_almost_fixed.patch:
  - Add an ubuntu-almost-fixed-height-mode property, (required for
    software-center)
* debian/patches/065_gir_set_packages.patch
  - Added _gir_PACKAGES for each gir created, to match gir to pkg which is
    needed by vapigen-0.12
* debian/patches/070_mandatory-relibtoolize.patch:
  - Dropped, we are using dh-autoreconf instead
* debian/patches/071_no_offscreen_widgets_grabbing.patch:
  - Don't let offscreen widgets do grabbing
* debian/patches/072_indicator_menu_update.patch:
  - change by Cody Russell to send an update event on menu changes,
    should make the bluetooth indicator refresh correctly
* debian/patches/091_bugzilla_tooltip_refresh.patch:
  - Upstream bugzilla change to have better looking tooltips the gtk theme
    need to set "new-tooltip-style" to use those
* debian/patches/092_default_to_xdg_document_dir.patch:
  - Use $XDG_DOCUMENTS_DIR as default directory rather than the home
    directory for the 'Print to File' function.
* debian/patches/093_gtk3_gtkimage_fallbacks_use.patch:
  - Backported gtk3 patch to add a "use-fallback" property to GtkImage, using 
    it "icon-name and GIcon type of GtkImages can use automatic fallback 
    names.", it will be useful for the indicator stack
* debian/patches/095_git_menus_scrolling.patch:
  - backported gtk3 commit to fix menu scrolling issues
* debian/patches/096_git_gtkprintsettings.patch:
  - upstream git commit backported from the gtk3 serie, don't ignore the 
    gtkprintsettings resolution settings 
* debian/patches/097_statusicon_image_fallback.patch: Make GtkStatusIcon
  images use fallbacks by default if the property is available.
* debian/patches/100_overlay_scrollbar_loading.patch
  - support for dynamically loading overlay scrollbars
* debian/patches/gailitem-set-alt-name.patch: Extend the GailItem object
  so applications can set an alternative textual description for a menu
  item that has an icon, where the icon is used to give the user more
  information about the item in question. This textual description is
  used by assistive technologies such as Orca to label the menu item.
* Dropped changes:
* debian/control.in:
  - don't keep an old conflicts on appmenu-gtk, it was a transitional thing   

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2005 Novell, Inc.
3
 
 *
4
 
 * This library is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU Lesser General Public
6
 
 * License as published by the Free Software Foundation; either
7
 
 * version 2 of the License, or (at your option) any later version.
8
 
 *
9
 
 * This library is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 * Lesser General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU Lesser General Public
15
 
 * License along with this library; if not, write to the
16
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 *
18
 
 * Author: Anders Carlsson <andersca@imendio.com>
19
 
 *
20
 
 * Based on nautilus-query.h
21
 
 */
22
 
 
23
 
#ifndef __GTK_QUERY_H__
24
 
#define __GTK_QUERY_H__
25
 
 
26
 
#include <glib-object.h>
27
 
 
28
 
G_BEGIN_DECLS
29
 
 
30
 
#define GTK_TYPE_QUERY          (_gtk_query_get_type ())
31
 
#define GTK_QUERY(obj)          (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_QUERY, GtkQuery))
32
 
#define GTK_QUERY_CLASS(klass)  (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_QUERY, GtkQueryClass))
33
 
#define GTK_IS_QUERY(obj)               (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_QUERY))
34
 
#define GTK_IS_QUERY_CLASS(klass)       (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_QUERY))
35
 
#define GTK_QUERY_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_QUERY, GtkQueryClass))
36
 
 
37
 
typedef struct _GtkQuery GtkQuery;
38
 
typedef struct _GtkQueryClass GtkQueryClass;
39
 
typedef struct _GtkQueryPrivate GtkQueryPrivate;
40
 
 
41
 
struct _GtkQuery 
42
 
{
43
 
  GObject parent;
44
 
 
45
 
  GtkQueryPrivate *priv;
46
 
};
47
 
 
48
 
struct _GtkQueryClass
49
 
{
50
 
  GObjectClass parent_class;
51
 
};
52
 
 
53
 
GType     _gtk_query_get_type       (void);
54
 
gboolean  _gtk_query_enabled        (void);
55
 
 
56
 
GtkQuery* _gtk_query_new            (void);
57
 
 
58
 
gchar*    _gtk_query_get_text       (GtkQuery    *query);
59
 
void      _gtk_query_set_text       (GtkQuery    *query, 
60
 
                                     const gchar *text);
61
 
 
62
 
gchar*    _gtk_query_get_location   (GtkQuery    *query);
63
 
void      _gtk_query_set_location   (GtkQuery    *query, 
64
 
                                     const gchar *uri);
65
 
 
66
 
GList*    _gtk_query_get_mime_types (GtkQuery    *query);
67
 
void      _gtk_query_set_mime_types (GtkQuery    *query, 
68
 
                                     GList       *mime_types);
69
 
void      _gtk_query_add_mime_type  (GtkQuery    *query, 
70
 
                                     const gchar *mime_type);
71
 
 
72
 
G_END_DECLS
73
 
 
74
 
#endif /* __GTK_QUERY_H__ */