~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/gtkmm/editable.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 09:25:06 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120928092506-9h63ais5o750a8sk
Tags: 3.5.13-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libglibmm-2.4-dev, libgtk-3-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
#include <glibmm/ustring.h>
8
8
#include <sigc++/sigc++.h>
9
9
 
10
 
/* $Id: editable.hg,v 1.3 2006/05/18 17:53:15 murrayc Exp $ */
11
 
 
12
10
/* Copyright (C) 1998-2002 The gtkmm Development Team
13
11
 *
14
12
 * This library is free software; you can redistribute it and/or
175
173
  
176
174
  /** Deletes a sequence of characters. The characters that are deleted are 
177
175
   * those characters at positions from @a start_pos up to, but not including 
178
 
   *  @a end_pos. If @a end_pos is negative, then the the characters deleted
 
176
   *  @a end_pos. If @a end_pos is negative, then the characters deleted
179
177
   * are those from @a start_pos to the end of the text.
180
178
   * 
181
179
   * Note that the positions are specified in characters, not bytes.
189
187
  
190
188
  /** Retrieves a sequence of characters. The characters that are retrieved 
191
189
   * are those characters at positions from @a start_pos up to, but not 
192
 
   * including @a end_pos. If @a end_pos is negative, then the the characters 
 
190
   * including @a end_pos. If @a end_pos is negative, then the characters
193
191
   * retrieved are those characters from @a start_pos to the end of the text.
194
192
   * 
195
193
   * Note that positions are specified in characters, not bytes.
204
202
  
205
203
  /** Selects a region of text. The characters that are selected are 
206
204
   * those characters at positions from @a start_pos up to, but not 
207
 
   * including @a end_pos. If @a end_pos is negative, then the the 
 
205
   * including @a end_pos. If @a end_pos is negative, then the
208
206
   * characters selected are those characters from @a start_pos to 
209
207
   * the end of the text.
210
208
   *