~mfisch/brasero/update-to-3.8.0

« back to all changes in this revision

Viewing changes to libbrasero-utils/brasero-jacket-background.h

  • Committer: Bazaar Package Importer
  • Author(s): Rodrigo Moya
  • Date: 2011-05-18 17:53:39 UTC
  • mfrom: (1.1.47 upstream) (1.4.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20110518175339-so6a6fejezs5i1pc
Tags: 3.0.0-1ubuntu1
* Rebase from Debian and GNOME3 PPA. Remaining Ubuntu changes:
* debian/control:
  - Build-Depend on dh-autoreconf, libappindicator3-dev and
    liblaunchpad-integration-3.0-dev
  - Recommends: brasero-cdrkit
  - libbrasero-media3-1 Depends on dvd+rw-tools not growisofs and
    Suggests rather than Recommends gstreamer plugin packages
* debian/patches/010_lpi.patch:
  - Launchpad integration patch
* debian/patches/012_appindicator.patch:
  - Use application indicators
* debian/rules:
  - Include autoreconf.mk
* debian/watch:
  - Watch unstable releases also

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
G_BEGIN_DECLS
39
39
 
40
40
typedef enum {
41
 
        BRASERO_JACKET_IMAGE_CENTER     = 0,
 
41
        BRASERO_JACKET_IMAGE_NONE       = 0,
 
42
        BRASERO_JACKET_IMAGE_CENTER     = 1,
42
43
        BRASERO_JACKET_IMAGE_TILE,
43
44
        BRASERO_JACKET_IMAGE_STRETCH
44
45
} BraseroJacketImageStyle;
45
46
 
46
47
typedef enum {
47
 
        BRASERO_JACKET_COLOR_SOLID      = 0,
48
 
        BRASERO_JACKET_COLOR_HGRADIENT  = 1,
49
 
        BRASERO_JACKET_COLOR_VGRADIENT  = 2
 
48
        BRASERO_JACKET_COLOR_NONE       = 0,
 
49
        BRASERO_JACKET_COLOR_SOLID      = 1,
 
50
        BRASERO_JACKET_COLOR_HGRADIENT,
 
51
        BRASERO_JACKET_COLOR_VGRADIENT
50
52
} BraseroJacketColorStyle;
51
53
 
52
54
#define BRASERO_TYPE_JACKET_BACKGROUND             (brasero_jacket_background_get_type ())