From b919dd72718eb73a24f855402dbf07afafc6a28c Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 17 Dec 2010 08:11:11 -0500 Subject: [PATCH] shell-app-system.h: clean up (indentation, order, etc) https://bugzilla.gnome.org/show_bug.cgi?id=635089 --- src/shell-app-system.h | 96 ++++++++++++++++++++++-------------------- 1 file changed, 51 insertions(+), 45 deletions(-) diff --git a/src/shell-app-system.h b/src/shell-app-system.h index 696972b11..07684b791 100644 --- a/src/shell-app-system.h +++ b/src/shell-app-system.h @@ -34,63 +34,69 @@ struct _ShellAppSystemClass void (*favorites_changed)(ShellAppSystem *appsys, gpointer user_data); }; -GType shell_app_system_get_type (void) G_GNUC_CONST; -ShellAppSystem* shell_app_system_get_default(void); +GType shell_app_system_get_type (void) G_GNUC_CONST; +ShellAppSystem *shell_app_system_get_default (void); typedef struct _ShellAppInfo ShellAppInfo; #define SHELL_TYPE_APP_INFO (shell_app_info_get_type ()) -GType shell_app_info_get_type (void); +GType shell_app_info_get_type (void); -ShellAppInfo* shell_app_info_ref (ShellAppInfo *info); -void shell_app_info_unref (ShellAppInfo *info); +ShellAppInfo *shell_app_info_ref (ShellAppInfo *info); +void shell_app_info_unref (ShellAppInfo *info); -const char *shell_app_info_get_id (ShellAppInfo *info); -char *shell_app_info_get_name (ShellAppInfo *info); -char *shell_app_info_get_description (ShellAppInfo *info); -char *shell_app_info_get_executable (ShellAppInfo *info); -char *shell_app_info_get_desktop_file_path (ShellAppInfo *info); -GIcon *shell_app_info_get_icon (ShellAppInfo *info); -ClutterActor *shell_app_info_create_icon_texture (ShellAppInfo *info, float size); -char *shell_app_info_get_section (ShellAppInfo *info); -gboolean shell_app_info_get_is_nodisplay (ShellAppInfo *info); -gboolean shell_app_info_is_transient (ShellAppInfo *info); +const char *shell_app_info_get_id (ShellAppInfo *info); +char *shell_app_info_get_name (ShellAppInfo *info); +char *shell_app_info_get_description (ShellAppInfo *info); +char *shell_app_info_get_executable (ShellAppInfo *info); +char *shell_app_info_get_desktop_file_path (ShellAppInfo *info); +GIcon *shell_app_info_get_icon (ShellAppInfo *info); +ClutterActor *shell_app_info_create_icon_texture (ShellAppInfo *info, + float size); +char *shell_app_info_get_section (ShellAppInfo *info); +gboolean shell_app_info_get_is_nodisplay (ShellAppInfo *info); +gboolean shell_app_info_is_transient (ShellAppInfo *info); +MetaWindow *shell_app_info_get_source_window (ShellAppInfo *info); -MetaWindow *shell_app_info_get_source_window (ShellAppInfo *info); +gboolean shell_app_info_launch (ShellAppInfo *info, + GError **error); +gboolean shell_app_info_launch_full (ShellAppInfo *info, + guint timestamp, + GList *uris, + int workspace, + char **startup_id, + GError **error); -gboolean shell_app_info_launch_full (ShellAppInfo *info, - guint timestamp, - GList *uris, - int workspace, - char **startup_id, - GError **error); -gboolean shell_app_info_launch (ShellAppInfo *info, - GError **error); -ShellAppInfo *shell_app_system_load_from_desktop_file (ShellAppSystem *system, const char *filename, GError **error); +GList *shell_app_system_get_sections (ShellAppSystem *system); +GSList *shell_app_system_get_flattened_apps (ShellAppSystem *system); +GSList *shell_app_system_get_all_settings (ShellAppSystem *system); -GList *shell_app_system_get_sections (ShellAppSystem *system); -ShellApp *shell_app_system_get_app (ShellAppSystem *system, const char *id); -ShellApp *shell_app_system_get_app_for_path (ShellAppSystem *system, const char *desktop_path); -ShellApp *shell_app_system_get_app_for_window (ShellAppSystem *self, MetaWindow *window); +ShellApp *shell_app_system_get_app (ShellAppSystem *system, + const char *id); +ShellApp *shell_app_system_get_app_for_path (ShellAppSystem *system, + const char *desktop_path); +ShellApp *shell_app_system_get_app_for_window (ShellAppSystem *self, + MetaWindow *window); +ShellApp *shell_app_system_lookup_heuristic_basename (ShellAppSystem *system, + const char *id); -void _shell_app_system_register_app (ShellAppSystem *self, ShellApp *app); +ShellAppInfo *shell_app_system_load_from_desktop_file (ShellAppSystem *system, + const char *filename, + GError **error); +ShellAppInfo *shell_app_system_create_from_window (ShellAppSystem *system, + MetaWindow *window); -ShellApp *shell_app_system_lookup_heuristic_basename (ShellAppSystem *system, const char *id); +GSList *shell_app_system_initial_search (ShellAppSystem *system, + gboolean prefs, + GSList *terms); +GSList *shell_app_system_subsearch (ShellAppSystem *system, + gboolean prefs, + GSList *previous_results, + GSList *terms); -ShellAppInfo *shell_app_system_create_from_window (ShellAppSystem *system, MetaWindow *window); - -GSList *shell_app_system_get_flattened_apps (ShellAppSystem *system); - -GSList *shell_app_system_get_all_settings (ShellAppSystem *system); - -GSList *shell_app_system_initial_search (ShellAppSystem *system, - gboolean prefs, - GSList *terms); - -GSList *shell_app_system_subsearch (ShellAppSystem *system, - gboolean prefs, - GSList *previous_results, - GSList *terms); +/* internal API */ +void _shell_app_system_register_app (ShellAppSystem *self, + ShellApp *app); #endif /* __SHELL_APP_SYSTEM_H__ */