e941e8088b
The two parts were mapping windows to applications, and recording application usage statistics. The latter part (now called ShellAppUsage) is much more naturally built on top of the former (now called ShellWindowTracker). ShellWindowTracker retains the startup-notification handling. ShellWindowTracker also gains a focus-app property, which is what most things in the shell UI are interested in (instead of window focus). ShellAppSystem moves to exporting ShellApp from more of its public API, rather than ShellAppInfo. ShellAppSystem also ensures that ShellApp instances are unique by holding a hash on the ids. ShellApp's private API is split off into a shell-app-private.h, so shell-app.h can be included in shell-app-system.h. Favorites handling is removed from ShellAppSystem, now inside appFavorites.js. Port all of the JavaScript for these changes. https://bugzilla.gnome.org/show_bug.cgi?id=598646
58 lines
2.4 KiB
C
58 lines
2.4 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
#ifndef __SHELL_WINDOW_TRACKER_H__
|
|
#define __SHELL_WINDOW_TRACKER_H__
|
|
|
|
#include <glib-object.h>
|
|
#include <glib.h>
|
|
|
|
#include "window.h"
|
|
#include "shell-app.h"
|
|
#include "shell-app-system.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _ShellWindowTracker ShellWindowTracker;
|
|
typedef struct _ShellWindowTrackerClass ShellWindowTrackerClass;
|
|
typedef struct _ShellWindowTrackerPrivate ShellWindowTrackerPrivate;
|
|
|
|
#define SHELL_TYPE_WINDOW_TRACKER (shell_window_tracker_get_type ())
|
|
#define SHELL_WINDOW_TRACKER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), SHELL_TYPE_WINDOW_TRACKER, ShellWindowTracker))
|
|
#define SHELL_WINDOW_TRACKER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SHELL_TYPE_WINDOW_TRACKER, ShellWindowTrackerClass))
|
|
#define SHELL_IS_WINDOW_TRACKER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), SHELL_TYPE_WINDOW_TRACKER))
|
|
#define SHELL_IS_WINDOW_TRACKER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SHELL_TYPE_WINDOW_TRACKER))
|
|
#define SHELL_WINDOW_TRACKER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SHELL_TYPE_WINDOW_TRACKER, ShellWindowTrackerClass))
|
|
|
|
struct _ShellWindowTrackerClass
|
|
{
|
|
GObjectClass parent_class;
|
|
};
|
|
|
|
GType shell_window_tracker_get_type (void) G_GNUC_CONST;
|
|
|
|
ShellWindowTracker* shell_window_tracker_get_default(void);
|
|
|
|
GSList * shell_window_tracker_get_running_apps (ShellWindowTracker *monitor,
|
|
const char *context);
|
|
|
|
ShellApp *shell_window_tracker_get_window_app (ShellWindowTracker *monitor, MetaWindow *metawin);
|
|
|
|
gboolean shell_window_tracker_is_window_interesting (MetaWindow *window);
|
|
|
|
const char *_shell_window_tracker_get_app_context (ShellWindowTracker *tracker, ShellApp *app);
|
|
|
|
GSList *shell_window_tracker_get_startup_sequences (ShellWindowTracker *tracker);
|
|
|
|
/* Hidden typedef for SnStartupSequence */
|
|
typedef struct _ShellStartupSequence ShellStartupSequence;
|
|
#define SHELL_TYPE_STARTUP_SEQUENCE (shell_startup_sequence_get_type ())
|
|
GType shell_startup_sequence_get_type (void);
|
|
|
|
const char *shell_startup_sequence_get_id (ShellStartupSequence *sequence);
|
|
const char *shell_startup_sequence_get_name (ShellStartupSequence *sequence);
|
|
gboolean shell_startup_sequence_get_completed (ShellStartupSequence *sequence);
|
|
ClutterActor *shell_startup_sequence_create_icon (ShellStartupSequence *sequence, guint size);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __SHELL_WINDOW_TRACKER_H__ */
|