1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* This file was automatically generated.
*/
#pragma once
/* DO NOT EDIT THIS FILE MANUALLY! */
/*
* Desktop environment names from: data/desktop-environments.txt
* Environment/Style names from: data/desktop-style-ids.txt
*/
#include <glib/gi18n-lib.h>
#include "as-macros-private.h"
AS_BEGIN_PRIVATE_DECLS
/* clang-format off */
/**
* AsDesktopEnvData:
*
* Registered desktop environments.
*/
typedef struct {
const gchar *id;
const gchar *name;
} AsDesktopEnvData;
/**
* AsGUIEnvStyleData:
*
* Graphical environment/style IDs.
*/
typedef struct {
const gchar *id;
const gchar *name;
} AsGUIEnvStyleData;
AsDesktopEnvData as_desktop_env_data[] = {
@DE_DEFS@
};
AsGUIEnvStyleData as_gui_env_style_data[] = {
@GUI_ENV_STYLE_DEFS@
};
/* clang-format on */
AS_END_PRIVATE_DECLS
|