~ubuntu-branches/ubuntu/trusty/gq/trusty

« back to all changes in this revision

Viewing changes to src/dt_binary.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2009-10-25 23:34:56 UTC
  • mfrom: (1.1.4 upstream) (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091025233456-i794n3yg2cff930j
Tags: 1.3.4-1
* QA upload.
  + Set maintainer to Debian QA Group <packages@qa.debian.org>.
* New upstream release. (Closes: #534705).
  + Does not segfault on amd64. (Closes: #444312).
  + Remove all existing patches and change patch system to quilt.
  + Replace dpatch build-dep with quilt.
* 01_desktop_file.diff - Remove encoding and bogus categories 
  from desktop file.
* Copy in config.{sub,guess} on configure, rm them on clean.
  + Add build-dep on autotools-dev.
* Make clean not ignore errors.
* Add copyright holders and version path to GPL (GPL-2).
* Update watch file to use SF redirector. (Closes: #449749).
* Bump debhelper build-dep and compat to 5.
* Bump Standards Version to 3.8.3.
  + Menu policy transition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
25
*/
26
26
 
27
 
/* $Id: dt_binary.h 937 2006-05-25 13:51:47Z herzi $ */
 
27
/* $Id$ */
28
28
 
29
29
#ifndef DT_BINARY_H_INCLUDED
30
30
#define DT_BINARY_H_INCLUDED
42
42
 
43
43
/* Methods, only to be used by subclasses */
44
44
GtkWidget *dt_binary_get_widget(int error_context,
45
 
                                struct formfill *form,
 
45
                                GqFormfill *form,
46
46
                                GByteArray *data,
47
 
                                GCallback *activatefunc,
 
47
                                GCallback  activatefunc,
48
48
                                gpointer funcdata);
49
49
 
50
 
GtkWidget *dt_binary_get_data_widget(struct formfill *form,
51
 
                                     GCallback *activatefunc,
 
50
GtkWidget *dt_binary_get_data_widget(GqFormfill *form,
 
51
                                     GCallback  activatefunc,
52
52
                                     gpointer funcdata);
53
 
GByteArray *dt_binary_get_data(struct formfill *form, GtkWidget *widget);
 
53
GByteArray *dt_binary_get_data(GqFormfill *form, GtkWidget *widget);
54
54
 
55
 
void dt_binary_store_data(struct formfill *form,
 
55
void dt_binary_store_data(GqFormfill *form,
56
56
                          GtkWidget *hbox,
57
57
                          GtkWidget *data_widget,
58
58
                          const GByteArray *data);
59
59
 
60
 
void dt_binary_delete_data(struct formfill *form,
 
60
void dt_binary_delete_data(GqFormfill *form,
61
61
                           GtkWidget *hbox,
62
62
                           GtkWidget *data_widget);
63
63