ecore: define Video XAtoms.
authorCedric BAIL <cedric.bail@free.fr>
Thu, 13 Oct 2011 07:41:55 +0000 (07:41 +0000)
committerCedric BAIL <cedric.bail@free.fr>
Thu, 13 Oct 2011 07:41:55 +0000 (07:41 +0000)
SVN revision: 64041

legacy/ecore/src/lib/ecore_x/Ecore_X_Atoms.h
legacy/ecore/src/lib/ecore_x/ecore_x_atoms_decl.h
legacy/ecore/src/lib/ecore_x/xcb/ecore_xcb_atoms.c
legacy/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c

index 4001436..6788a5e 100644 (file)
@@ -249,4 +249,7 @@ EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_COMP_FLUSH;
 EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_COMP_DUMP;
 EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_COMP_PIXMAP;
 
+EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_VIDEO_PARENT;
+EAPI extern Ecore_X_Atom ECORE_X_ATOM_E_VIDEO_POSITION;
+
 #endif /* _ECORE_X_ATOMS_H */
index 872f38e..3f22356 100644 (file)
@@ -275,3 +275,7 @@ EAPI Ecore_X_Atom ECORE_X_ATOM_E_COMP_SYNC_CANCEL = 0;
 EAPI Ecore_X_Atom ECORE_X_ATOM_E_COMP_FLUSH = 0;
 EAPI Ecore_X_Atom ECORE_X_ATOM_E_COMP_DUMP = 0;
 EAPI Ecore_X_Atom ECORE_X_ATOM_E_COMP_PIXMAP = 0;
+
+/* currently Emotion and E17 specific extension */
+EAPI Ecore_X_Atom ECORE_X_ATOM_E_VIDEO_PARENT = 0;
+EAPI Ecore_X_Atom ECORE_X_ATOM_E_VIDEO_POSITION = 0;
index 26fda8a..59d1c3a 100644 (file)
@@ -259,7 +259,9 @@ static Xcb_Atom atoms[] =
 
    { "_E_COMP_FLUSH", &ECORE_X_ATOM_E_COMP_FLUSH },
    { "_E_COMP_DUMP", &ECORE_X_ATOM_E_COMP_DUMP },
-   { "_E_COMP_PIXMAP", &ECORE_X_ATOM_E_COMP_PIXMAP }
+   { "_E_COMP_PIXMAP", &ECORE_X_ATOM_E_COMP_PIXMAP },
+   { "_E_VIDEO_PARENT", &ECORE_X_ATOM_E_VIDEO_PARENT },
+   { "_E_VIDEO_POSITION", &ECORE_X_ATOM_E_VIDEO_POSITION }
 };
 
 void 
index c43b270..09071db 100644 (file)
@@ -280,7 +280,9 @@ _ecore_x_atoms_init(void)
 
       { "_E_COMP_FLUSH", &ECORE_X_ATOM_E_COMP_FLUSH },
       { "_E_COMP_DUMP", &ECORE_X_ATOM_E_COMP_DUMP },
-      { "_E_COMP_PIXMAP", &ECORE_X_ATOM_E_COMP_PIXMAP }
+      { "_E_COMP_PIXMAP", &ECORE_X_ATOM_E_COMP_PIXMAP },
+      { "_E_VIDEO_PARENT", &ECORE_X_ATOM_E_VIDEO_PARENT },
+      { "_E_VIDEO_POSITION", &ECORE_X_ATOM_E_VIDEO_POSITION }
    };
    Atom *atoms;
    char **names;