04d7069d83
Back in the day, there was a proposed system of tracking apps in a specific context. The inspiration was that you may have used apps in multiple modes: Firefox may have been used in both "Programmer Reference" and "Kitten Videos" contexts. Early user response to the feedback wasn't too positive - context switching is something that humans have trouble doing implicitly, let alone explicitly. The old codebase still has a few remnants of this around; let's finally put them to rest. Note that we still write out a dummy context tag to the XML file - old versions of the shell will flat out crash if you don't have one of those in there, so just leave it in for compatibility sake. https://bugzilla.gnome.org/show_bug.cgi?id=673767
24 lines
690 B
C
24 lines
690 B
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
#ifndef __SHELL_APP_USAGE_H__
|
|
#define __SHELL_APP_USAGE_H__
|
|
|
|
#include "shell-app.h"
|
|
#include "shell-window-tracker.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define SHELL_TYPE_APP_USAGE (shell_app_usage_get_type ())
|
|
G_DECLARE_FINAL_TYPE (ShellAppUsage, shell_app_usage,
|
|
SHELL, APP_USAGE, GObject)
|
|
|
|
ShellAppUsage* shell_app_usage_get_default(void);
|
|
|
|
GSList *shell_app_usage_get_most_used (ShellAppUsage *usage);
|
|
int shell_app_usage_compare (ShellAppUsage *self,
|
|
const char *id_a,
|
|
const char *id_b);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __SHELL_APP_USAGE_H__ */
|