~ubuntu-branches/ubuntu/trusty/gnome-shell/trusty-proposed

« back to all changes in this revision

Viewing changes to src/st/st-container.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-03-14 13:47:20 UTC
  • mfrom: (1.1.36) (18.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20120314134720-202sbjbu4a3z1fru
Tags: 3.3.90-0ubuntu1
* Sync with Debian experimental svn packaging (LP: #941755, #937709).
  Remaining changes:
  - debian/gnome-shell.gsettings-override: Update for Ubuntu defaults
  - debian/control.in: Recommend cups-pk-helper
  - debian/patches/10-make-NetworkManager-optional.patch: Disabled
  - Don't run dh-autoreconf

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
struct _StContainer {
44
44
  StWidget parent;
45
 
  StContainerPrivate *priv;
46
45
};
47
46
 
48
47
struct _StContainerClass {
49
48
  StWidgetClass parent_class;
50
 
 
51
 
  GList * (*get_focus_chain) (StContainer *container);
52
49
};
53
50
 
54
51
GType   st_container_get_type             (void) G_GNUC_CONST;
55
52
 
56
 
void    st_container_destroy_children     (StContainer *container);
57
 
 
58
 
GList * st_container_get_focus_chain      (StContainer *container);
59
 
 
60
53
/* Only to be used by subclasses of StContainer */
61
 
void    st_container_move_child           (StContainer  *container,
62
 
                                           ClutterActor *actor,
63
 
                                           int           pos);
64
 
void    st_container_move_before          (StContainer  *container,
65
 
                                           ClutterActor *actor,
66
 
                                           ClutterActor *sibling);
67
54
GList * st_container_get_children_list    (StContainer *container);
68
55
 
69
56
G_END_DECLS