~oem-solutions-group/unity-2d/clutter-1.0

« back to all changes in this revision

Viewing changes to clutter/x11/clutter-stage-x11.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2010-03-21 13:27:56 UTC
  • mto: (2.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20100321132756-nf8yd30yxo3zzwcm
Tags: upstream-1.2.2
ImportĀ upstreamĀ versionĀ 1.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 * Lesser General Public License for more details.
15
15
 *
16
16
 * You should have received a copy of the GNU Lesser General Public
17
 
 * License along with this library; if not, write to the
18
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19
 
 * Boston, MA 02111-1307, USA.
 
17
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 
18
 *
 
19
 *
20
20
 */
21
21
 
22
22
#ifndef __CLUTTER_STAGE_X11_H__
50
50
{
51
51
  ClutterGroup parent_instance;
52
52
 
53
 
  guint        is_foreign_xwin    : 1;
54
 
  guint        fullscreen_on_map  : 1;
55
 
  guint        is_cursor_visible  : 1;
 
53
  guint        is_foreign_xwin      : 1;
 
54
  guint        fullscreening        : 1;
 
55
  guint        is_cursor_visible    : 1;
 
56
  guint        viewport_initialized : 1;
56
57
 
57
 
  Display     *xdpy;
58
 
  Window       xwin_root;
59
 
  int          xscreen;
60
 
  XVisualInfo *xvisinfo;
61
 
  Window       xwin;  
 
58
  Window       xwin;
62
59
  gint         xwin_width;
63
60
  gint         xwin_height; /* FIXME target_width / height */
64
 
  Pixmap       xpixmap;
65
61
  gchar       *title;
66
62
 
67
 
  ClutterBackendX11 *backend;
68
63
  ClutterStageState  state;
69
64
 
70
65
  ClutterStageX11State wm_state;