~ubuntu-branches/ubuntu/wily/almanah/wily

« back to all changes in this revision

Viewing changes to src/widgets/eggwrapbox-enums.h

  • Committer: Package Import Robot
  • Author(s): Angel Abad
  • Date: 2013-05-14 10:27:40 UTC
  • mfrom: (1.4.3)
  • Revision ID: package-import@ubuntu.com-20130514102740-51ms12655c04devm
Tags: 0.10.8-1
* Imported Upstream version 0.10.8
* debian/control:
  - Build-Depends on versioned libgtk-3-dev (>= 3.5.6)
  - Remove libedataserverui-3.0-dev from Build-Depends
  - Build-Depends on libgtkspell3-3-dev
* debian/patches/desktop_keywords:
  - Add Keywords entry in .desktop file
* debian/patches/spellchecking_error:
  - Fix spellchecking errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
#ifndef EGG_WRAPBOX_ENUMS_H_
 
5
#define EGG_WRAPBOX_ENUMS_H_
 
6
 
 
7
#include <glib-object.h>
 
8
 
 
9
G_BEGIN_DECLS
 
10
 
 
11
/* enumerations from eggwrapbox.h */
 
12
GType egg_wrap_allocation_mode_get_type (void) G_GNUC_CONST;
 
13
#define EGG_TYPE_WRAP_ALLOCATION_MODE (egg_wrap_allocation_mode_get_type())
 
14
GType egg_wrap_box_spreading_get_type (void) G_GNUC_CONST;
 
15
#define EGG_TYPE_WRAP_BOX_SPREADING (egg_wrap_box_spreading_get_type())
 
16
GType egg_wrap_box_packing_get_type (void) G_GNUC_CONST;
 
17
#define EGG_TYPE_WRAP_BOX_PACKING (egg_wrap_box_packing_get_type())
 
18
G_END_DECLS
 
19
 
 
20
#endif /* EGG_WRAPBOX_ENUMS_H_ */
 
21
 
 
22
 
 
23