~titan-lien/ubuntu/saucy/totem/totem.dev

« back to all changes in this revision

Viewing changes to src/backend/bacon-resize.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl, Sjoerd Simons, Michael Biebl, Josselin Mouette
  • Date: 2011-11-27 06:21:34 UTC
  • mfrom: (1.4.8) (5.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20111127062134-c3ikko9wdfn9m2av
Tags: 3.2.1-1
[ Sjoerd Simons ]
* New upstream release
* debian/control.in: Update build-depends
* debian/rules: Enable vala plugins
* debian/totem-plugins.install:
  - Add grilo and rotation plugins
  - Remove jamendo, thumbnail and tracker plugins

[ Michael Biebl ]
* debian/control.in:
  - Bump Depends on python-gobject to (>= 2.90.3).

[ Josselin Mouette ]
* Replace python-gobject dependencies by python-gi.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* bacon-resize.h
2
 
 * Copyright (C) 2003-2004, Bastien Nocera <hadess@hadess.net>
3
 
 * All rights reserved.
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Lesser General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Lesser General Public
16
 
 * License along with this library; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02139, USA.
18
 
 */
19
 
 
20
 
#ifndef BACON_RESIZE_H
21
 
#define BACON_RESIZE_H
22
 
 
23
 
#include <glib.h>
24
 
#include <glib-object.h>
25
 
#include <gtk/gtk.h>
26
 
 
27
 
G_BEGIN_DECLS
28
 
 
29
 
#define BACON_TYPE_RESIZE               (bacon_resize_get_type ())
30
 
#define BACON_RESIZE(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), BACON_TYPE_RESIZE, BaconResize))
31
 
#define BACON_RESIZE_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), BACON_TYPE_RESIZE, BaconResizeClass))
32
 
#define BACON_IS_RESIZE(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BACON_TYPE_RESIZE))
33
 
#define BACON_IS_RESIZE_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), BACON_TYPE_RESIZE))
34
 
 
35
 
typedef struct BaconResize              BaconResize;
36
 
typedef struct BaconResizeClass         BaconResizeClass;
37
 
typedef struct BaconResizePrivate       BaconResizePrivate;
38
 
 
39
 
struct BaconResize {
40
 
        GObject parent;
41
 
        BaconResizePrivate *priv;
42
 
};
43
 
 
44
 
struct BaconResizeClass {
45
 
        GObjectClass parent_class;
46
 
};
47
 
 
48
 
GType bacon_resize_get_type     (void);
49
 
BaconResize *bacon_resize_new   (GtkWidget *video_widget);
50
 
void bacon_resize_resize        (BaconResize *resize);
51
 
void bacon_resize_restore       (BaconResize *resize);
52
 
 
53
 
G_END_DECLS
54
 
 
55
 
#endif /* BACON_RESIZE_H */