~ubuntu-branches/ubuntu/wily/mutter/wily

« back to all changes in this revision

Viewing changes to src/ui/tile-preview.h

  • Committer: Bazaar Package Importer
  • Author(s): Rico Tzschichholz
  • Date: 2011-04-10 22:27:59 UTC
  • mfrom: (0.7.1 upstream) (0.3.20 experimental)
  • Revision ID: james.westby@ubuntu.com-20110410222759-o6n1i5p0unsti44n
Tags: 3.0.0-0ubuntu1
* New upstream release

* Merge with debian experimental (LP: #742458), remaining changes:
  + debian/patches/03_link_gles2.patch: Link to clutter-glx-1.0
    explicitily at the end of link flags, to bring in libGLESv2 on armel.
* debian/control.in:
  + rename gir package to gir1.2-mutter-3.0
* debian/libmutter0.symbols:
  + updated
* debian/patches:
  + fix 03_link_gles2.patch 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
 
2
 
 
3
/* Meta tile preview */
 
4
 
 
5
/*
 
6
 * Copyright (C) 2010 Florian Müllner
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License as
 
10
 * published by the Free Software Foundation; either version 2 of the
 
11
 * License, or (at your option) any later version.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful, but
 
14
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software
 
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
21
 * 02111-1307, USA.
 
22
 */
 
23
#ifndef META_TILE_PREVIEW_H
 
24
#define META_TILE_PREVIEW_H
 
25
 
 
26
#include <meta/boxes.h>
 
27
 
 
28
typedef struct _MetaTilePreview MetaTilePreview;
 
29
 
 
30
MetaTilePreview   *meta_tile_preview_new    (int                screen_number,
 
31
                                             gboolean           composited);
 
32
void               meta_tile_preview_free   (MetaTilePreview   *preview);
 
33
void               meta_tile_preview_show   (MetaTilePreview   *preview,
 
34
                                             MetaRectangle     *rect);
 
35
void               meta_tile_preview_hide   (MetaTilePreview   *preview);
 
36
Window             meta_tile_preview_get_xwindow (MetaTilePreview   *preview,
 
37
                                                  gulong            *create_serial);
 
38
 
 
39
#endif /* META_TILE_PREVIEW_H */