summaryrefslogtreecommitdiff
path: root/obt/link.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2010-05-21 20:03:21 -0400
committerDana Jansens <danakj@orodu.net>2010-05-21 20:03:21 -0400
commit0c8c9caba6f529c11b04643d24a5a503f49a245b (patch)
treedf20d71b526229f964212facfc5fdea33d5f71a4 /obt/link.h
parent632eb082277eb74d5e64beda779eee5b4456ca18 (diff)
parse OnlyShowIn/NotShowIn
Diffstat (limited to 'obt/link.h')
-rw-r--r--obt/link.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/obt/link.h b/obt/link.h
index b0193297..4c1fb8aa 100644
--- a/obt/link.h
+++ b/obt/link.h
@@ -37,6 +37,18 @@ typedef enum {
OBT_LINK_APP_STARTUP_LEGACY_SUPPORT
} ObtLinkAppStartup;
+/*! These bit flags are environments for links. Some links are used or not
+ used in various environments. */
+typedef enum {
+ OBT_LINK_ENV_OPENBOX = 1 << 0,
+ OBT_LINK_ENV_GNOME = 1 << 1,
+ OBT_LINK_ENV_KDE = 1 << 2,
+ OBT_LINK_ENV_LXDE = 1 << 3,
+ OBT_LINK_ENV_ROX = 1 << 4,
+ OBT_LINK_ENV_XFCE = 1 << 5,
+ OBT_LINK_ENV_OLD = 1 << 6
+} ObtLinkEnvFlags;
+
typedef enum {
/*! The app can be launched with a single local file */
OBT_LINK_APP_SINGLE_LOCAL = 1 << 0,