~ubuntu-branches/ubuntu/wily/epiphany-browser/wily

« back to all changes in this revision

Viewing changes to lib/ephy-file-chooser.h

  • Committer: Package Import Robot
  • Author(s): Gustavo Noronha Silva, Jeremy Bicha, Emilio Pozuelo Monfort, Gustavo Noronha Silva
  • Date: 2012-12-10 11:40:01 UTC
  • mfrom: (1.8.8) (105.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20121210114001-42jjyg3qw3eyz00a
Tags: 3.6.1-1
[ Jeremy Bicha ]
* New upstream unstable release
* debian/control.in:
  - Bump minimum intltool to 0.50
* debian/epiphany-browser-data.install:
  - The developers no longer provide help files to install since they were
    too outdated
* Dropped upstream patches:
  - 01_email-as-user-for-password-remembering.patch
  - 13_toolbar_size_fixes.patch
* debian/watch: Watch for unstable releases.

[ Emilio Pozuelo Monfort ]
* New upstream release.
  + debian/patches/14_pkglibdir.patch:
    - Removed, applied upstream.
  + debian/control.in:
    - Update (build-)dependencies.

[ Gustavo Noronha Silva ]
* debian/control.in:
- Build-Depend on gnome-common >= 3.6, needed for the code
  coverage feature

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#define EPHY_FILE_CHOOSER_GET_CLASS(o)  (G_TYPE_INSTANCE_GET_CLASS ((o), EPHY_TYPE_FILE_CHOOSER, EphyFileChooserClass))
39
39
 
40
40
typedef struct _EphyFileChooser         EphyFileChooser;
41
 
typedef struct _EphyFileChooserPrivate  EphyFileChooserPrivate;
42
41
typedef struct _EphyFileChooserClass    EphyFileChooserClass;
43
42
 
44
43
typedef enum
54
53
struct _EphyFileChooser
55
54
{
56
55
        GtkFileChooserDialog parent;
57
 
 
58
 
        /*< private >*/
59
 
        EphyFileChooserPrivate *priv;
60
56
};
61
57
 
62
58
struct _EphyFileChooserClass
69
65
EphyFileChooser *ephy_file_chooser_new                  (const char *title,
70
66
                                                         GtkWidget *parent,
71
67
                                                         GtkFileChooserAction action,
72
 
                                                         const char *persist_key,
73
68
                                                         EphyFileFilterDefault default_filter);
74
69
 
75
 
void             ephy_file_chooser_set_persist_key      (EphyFileChooser *dialog,
76
 
                                                         const char *key);
77
 
 
78
 
const char      *ephy_file_chooser_get_persist_key      (EphyFileChooser *dialog);
79
 
 
80
70
GtkFileFilter   *ephy_file_chooser_add_pattern_filter   (EphyFileChooser *dialog,
81
71
                                                         const char *title,
82
72
                                                         const char *first_pattern,