~ubuntu-dev/ubuntu/lucid/mutter/lucid-201002110959

« back to all changes in this revision

Viewing changes to src/mutter-enum-types.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-09-05 16:23:00 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090905162300-uh014j826cs7xe76
Tags: 2.27.4-0ubuntu1
* New upstream release
* add debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    {
39
39
      static const GEnumValue values[] = {
40
40
        { META_EDGE_WINDOW, "META_EDGE_WINDOW", "window" },
41
 
        { META_EDGE_XINERAMA, "META_EDGE_XINERAMA", "xinerama" },
 
41
        { META_EDGE_MONITOR, "META_EDGE_MONITOR", "monitor" },
42
42
        { META_EDGE_SCREEN, "META_EDGE_SCREEN", "screen" },
43
43
        { 0, NULL, NULL }
44
44
      };
275
275
        { META_GRAB_OP_CLICKING_UNABOVE, "META_GRAB_OP_CLICKING_UNABOVE", "clicking-unabove" },
276
276
        { META_GRAB_OP_CLICKING_STICK, "META_GRAB_OP_CLICKING_STICK", "clicking-stick" },
277
277
        { META_GRAB_OP_CLICKING_UNSTICK, "META_GRAB_OP_CLICKING_UNSTICK", "clicking-unstick" },
 
278
        { META_GRAB_OP_COMPOSITOR, "META_GRAB_OP_COMPOSITOR", "compositor" },
278
279
        { 0, NULL, NULL }
279
280
      };
280
281
      GType g_enum_type_id;
1338
1339
  return g_enum_type_id__volatile;
1339
1340
}
1340
1341
 
 
1342
/* enumerations from "include/mutter-plugin.h" */
 
1343
#include "include/mutter-plugin.h"
 
1344
 
 
1345
GType
 
1346
meta_modal_options_get_type (void)
 
1347
{
 
1348
  static volatile gsize g_enum_type_id__volatile = 0;
 
1349
 
 
1350
  if (g_once_init_enter (&g_enum_type_id__volatile))
 
1351
    {
 
1352
      static const GFlagsValue values[] = {
 
1353
        { META_MODAL_POINTER_ALREADY_GRABBED, "META_MODAL_POINTER_ALREADY_GRABBED", "pointer-already-grabbed" },
 
1354
        { META_MODAL_KEYBOARD_ALREADY_GRABBED, "META_MODAL_KEYBOARD_ALREADY_GRABBED", "keyboard-already-grabbed" },
 
1355
        { 0, NULL, NULL }
 
1356
      };
 
1357
      GType g_enum_type_id;
 
1358
 
 
1359
      g_enum_type_id =
 
1360
        g_flags_register_static (g_intern_static_string ("MetaModalOptions"), values);
 
1361
 
 
1362
      g_once_init_leave (&g_enum_type_id__volatile, g_enum_type_id);
 
1363
    }
 
1364
 
 
1365
  return g_enum_type_id__volatile;
 
1366
}
 
1367
 
1341
1368
/* Generated data ends here */
1342
1369