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

« back to all changes in this revision

Viewing changes to gtk/gtkmm/textview.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:
9
9
#include <glibmm/ustring.h>
10
10
#include <sigc++/sigc++.h>
11
11
 
12
 
/* $Id: textview.hg,v 1.10 2006/04/12 11:11:25 murrayc Exp $ */
13
 
 
14
12
/* Copyright(C) 2002 The gtkmm Development Team
15
13
 *
16
14
 * This library is free software; you can redistribute it and/or
283
281
   * @return Whether the insertion mark is visible.
284
282
   */
285
283
  bool get_cursor_visible() const;
286
 
  
 
284
 
287
285
  
288
286
  /** Given an @a iter within a text layout, determine the positions of the
289
287
   * strong and weak cursors if the insertion point is at that
772
770
  bool get_accepts_tab() const;
773
771
 
774
772
  
 
773
  /** Sets the Gtk::TextView::property_input_purpose() property which
 
774
   * can be used by on-screen keyboards and other input
 
775
   * methods to adjust their behaviour.
 
776
   * 
 
777
   * @newin{3,6}
 
778
   * @param purpose The purpose.
 
779
   */
775
780
  void set_input_purpose(InputPurpose purpose);
776
781
  
 
782
  /** Gets the value of the Gtk::TextView::property_input_purpose() property.
 
783
   * 
 
784
   * @newin{3,6}
 
785
   */
777
786
  InputPurpose get_input_purpose() const;
778
787
 
779
788
  
 
789
  /** Sets the Gtk::TextView::property_input_hints() property, which
 
790
   * allows input methods to fine-tune their behaviour.
 
791
   * 
 
792
   * @newin{3,6}
 
793
   * @param hints The hints.
 
794
   */
780
795
  void set_input_hints(InputHints hints);
781
796
  
 
797
  /** Gets the value of the Gtk::TextView::property_input_hints() property.
 
798
   * 
 
799
   * @newin{3,6}
 
800
   */
782
801
  InputHints get_input_hints() const;
783
802
 
784
803
  
1175
1194
 
1176
1195
};
1177
1196
 
1178
 
} /* namespace Gtk */
 
1197
} //namespace Gtk
1179
1198
 
1180
1199
 
1181
1200
namespace Glib