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

« back to all changes in this revision

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

Tags: upstream-3.3.90
ImportĀ upstreamĀ versionĀ 3.3.90

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