~ubuntu-branches/ubuntu/maverick/gnome-terminal/maverick-proposed

« back to all changes in this revision

Viewing changes to src/terminal-screen-container.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-06-18 10:33:45 UTC
  • mfrom: (1.3.20 upstream)
  • Revision ID: james.westby@ubuntu.com-20080618103345-ife89bdnaa2ttfyk
Tags: 2.23.4.2-0ubuntu1
* new upstream version
* changed debian/patches/01_lpi.patch to work with GtkUIManager
* dropped debian/patches/03_ubuntu_lpi_fix_crash.diff because the
  UIManager makes it obsolete
* updated and renamed debian/patches/02_autoconf.patch to
  debian/patches/99_autoreconf.patch
* debian/control.in:
  - add Vcs-Bzr header
* debian/watch:
  - look for uneven version numbers too to make bzr-buildpackage
    auto download the right tarball
* debian/gnome-terminal-data.install:
  - drop /usr/share/pixmaps, its no longer used

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2008 Christian Persch
 
3
*
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef TERMINAL_SCREEN_CONTAINER_H
 
21
#define TERMINAL_SCREEN_CONTAINER_H
 
22
 
 
23
#include <gtk/gtk.h>
 
24
#include "terminal-screen.h"
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
GtkWidget *terminal_screen_container_new (TerminalScreen *screen);
 
29
 
 
30
TerminalScreen *terminal_screen_container_get_screen (GtkWidget *container);
 
31
 
 
32
void terminal_screen_container_set_policy (GtkWidget *container,
 
33
                                           GtkPolicyType hpolicy,
 
34
                                           GtkPolicyType vpolicy);
 
35
 
 
36
void terminal_screen_container_set_placement (GtkWidget *container,
 
37
                                              GtkCornerType corner);
 
38
 
 
39
G_END_DECLS
 
40
 
 
41
#endif /* TERMINAL_SCREEN_CONTAINER_H */