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

« back to all changes in this revision

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

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
                                    ClutterActor     *from,
87
87
                                    GtkDirectionType  direction);
88
88
  GType    (* get_accessible_type) (void);
 
89
 
 
90
  GList *  (* get_focus_chain)     (StWidget         *widget);
89
91
};
90
92
 
91
93
GType st_widget_get_type (void) G_GNUC_CONST;
117
119
                                                           StTheme         *theme);
118
120
StTheme *             st_widget_get_theme                 (StWidget        *actor);
119
121
 
120
 
void                  st_widget_set_has_tooltip           (StWidget        *widget,
121
 
                                                           gboolean         has_tooltip);
122
 
gboolean              st_widget_get_has_tooltip           (StWidget        *widget);
123
 
void                  st_widget_set_tooltip_text          (StWidget        *widget,
124
 
                                                           const gchar     *text);
125
 
const gchar*          st_widget_get_tooltip_text          (StWidget        *widget);
126
 
 
127
 
void                  st_widget_show_tooltip              (StWidget        *widget);
128
 
void                  st_widget_hide_tooltip              (StWidget        *widget);
129
 
 
130
122
void                  st_widget_set_track_hover           (StWidget        *widget,
131
123
                                                           gboolean         track_hover);
132
124
gboolean              st_widget_get_track_hover           (StWidget        *widget);
161
153
StThemeNode *         st_widget_get_theme_node            (StWidget        *widget);
162
154
StThemeNode *         st_widget_peek_theme_node           (StWidget        *widget);
163
155
 
 
156
GList *               st_widget_get_focus_chain           (StWidget        *widget);
 
157
void                  st_widget_paint_background          (StWidget        *widget);
 
158
 
 
159
 
164
160
/* debug methods */
165
161
char  *st_describe_actor       (ClutterActor *actor);
166
162
void   st_set_slow_down_factor (gfloat factor);
167
163
gfloat st_get_slow_down_factor (void);
168
164
 
169
 
void              st_set_ui_root (ClutterStage     *stage,
170
 
                                  ClutterContainer *container);
171
 
ClutterContainer *st_get_ui_root (ClutterStage     *stage);
172
 
 
173
165
G_END_DECLS
174
166
 
175
167
#endif /* __ST_WIDGET_H__ */