~ubuntu-branches/ubuntu/dapper/file-roller/dapper-updates

« back to all changes in this revision

Viewing changes to src/fr-archive.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-12-13 00:19:53 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051213001953-0klipgnhk6vikhrt
Tags: 2.13.2-0ubuntu1
* New upstream version:
  - Fixed bug #323713: "Save as" should default to current archive filename
    (Ubuntu: #20132)
  - Fixed bug #315069: file-roller: drag 'n drop doesn't work for more
    than 1 file.
  - Fixed bug #323534: Passwords improperly escaped for zip files
  - Do not open a progress dialog when dragging files, use a progressbar
    in the statusbar instead.
  - Fixed bug #316364: Nautilus dependency should be optional
  - Fixed bug #311821: ascending and descending indicators are opposite
    from expected.
  - Fixed bug #317423: Conflicting mnemonic in "Extract" dialog.
  - Fixed bug #323068: file-roller fails in chosing extract-to directory
  - Fixed bug #322197: Improve Naming Filename when create new Archive file
  - Fixed bug #316564: needs unzip AND zip
    (Ubuntu: #15595)
  - Simplified the add dialog populating the file type combobox with the
    extensions instead of the descriptions.
  - Set progress dialog display delay to 1 second.
  - More HIG compliant progress dialog.
  - Use a single command execution to add many files and folders to an
    archive to speed up the operation.
  - Allow to stop creation of a new archive.
  - Correctly associate fr to 7zip files.
* debian/patches/03_lp-autoconf.patch:
  - updated

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
                                          * fr_archive_load is invoked, used
58
58
                                          * in batch mode. */
59
59
        gpointer     fake_load_data;
 
60
 
 
61
        FakeLoadFunc add_is_stoppable_func; /* Returns whether the add operation is 
 
62
                                             * stoppable. */
 
63
        gpointer     add_is_stoppable_data;
60
64
};
61
65
 
62
66
struct _FRArchiveClass {
130
134
                                                DoneFunc       done_func,
131
135
                                                gpointer       done_data);
132
136
 
 
137
VisitDirHandle * fr_archive_add_items          (FRArchive     *archive, 
 
138
                                                GList         *item_list,
 
139
                                                const char    *base_dir,
 
140
                                                const char    *dest_dir,
 
141
                                                gboolean       update,
 
142
                                                const char    *password,
 
143
                                                FRCompression  compression,
 
144
                                                DoneFunc       done_func,
 
145
                                                gpointer       done_data);
 
146
 
 
147
 
133
148
void             fr_archive_remove             (FRArchive     *archive,
134
149
                                                GList         *file_list,
135
150
                                                FRCompression  compression);
152
167
 
153
168
gboolean         fr_archive_fake_load          (FRArchive     *archive);
154
169
 
 
170
void             fr_archive_set_add_is_stoppable_func (FRArchive     *archive,
 
171
                                                       FakeLoadFunc   func,
 
172
                                                       gpointer       data);
 
173
 
155
174
void             fr_archive_stoppable          (FRArchive     *archive,
156
175
                                                gboolean       stoppable);
157
176