~ubuntu-branches/ubuntu/natty/vte/natty

« back to all changes in this revision

Viewing changes to src/vte.h

  • Committer: Bazaar Package Importer
  • Author(s): Baptiste Mille-Mathias
  • Date: 2010-02-03 21:37:20 UTC
  • mfrom: (1.1.52 upstream)
  • Revision ID: james.westby@ubuntu.com-20100203213720-8i71qo23f8uqr2sa
Tags: 1:0.23.5-0ubuntu1
* New upstream version (LP: #516770):
  - Fix unintented soversion bump
  - Add public API vte_terminal_write_contents()
  - Update docs
  - Disable symbol deprecation stuff since they were broken
  - Merge pangocairo draw impl into vtedraw
  - Bugs fixed in this release:
  - Flickering when resizing a vte widget
  - Support xterm bracketed paste mode
* debian/patches/90_autoreconf.patch: refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2001,2002,2003 Red Hat, Inc.
 
2
 * Copyright (C) 2001,2002,2003,2009,2010 Red Hat, Inc.
3
3
 *
4
4
 * This is free software; you can redistribute it and/or modify it under
5
5
 * the terms of the GNU Library General Public License as published by
20
20
#define vte_vte_h_included
21
21
 
22
22
#include <glib.h>
 
23
#include <gio/gio.h>
 
24
#include <pango/pango.h>
23
25
#include <gtk/gtk.h>
24
 
#include <pango/pango.h>
25
26
 
26
27
#include <sys/types.h> /* for pid_t */
27
28
 
417
418
 
418
419
int vte_terminal_get_child_exit_status(VteTerminal *terminal);
419
420
 
 
421
 
 
422
/* Writing contents out */
 
423
 
 
424
typedef enum {
 
425
  VTE_TERMINAL_WRITE_DEFAULT = 0
 
426
} VteTerminalWriteFlags;
 
427
 
 
428
gboolean vte_terminal_write_contents (VteTerminal *terminal,
 
429
                                      GOutputStream *stream,
 
430
                                      VteTerminalWriteFlags flags,
 
431
                                      GCancellable *cancellable,
 
432
                                      GError **error);
 
433
 
 
434
 
420
435
#ifndef VTE_DISABLE_DEPRECATED
421
436
 
422
437
#define VTE_IS_TERMINAL_ERASE_BINDING(obj)  (FALSE)