GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Text::Flow::Wrap(3) User Contributed Perl Documentation Text::Flow::Wrap(3)

Text::Flow::Wrap - Flexible word wrapping for not just ASCII output.

  use Text::Flow::Wrap;
  
  # for regular ASCII usage ...
  my $wrapper = Text::Flow::Wrap->new(
      check_width => sub { length($_[0]) < 70 },
  );
  
  # for non-ASCII usage ...
  my $wrapper = Text::Flow::Wrap->new(
      check_width => sub { $pdf->get_text_width($_[0]) < 500 },
  );
  
  my $text = $wrapper->wrap($text);

The main purpose of this module is to provide text wrapping features without being tied down to ASCII based output and fixed-width fonts.

My needs were for sophisticated test control in PDF and GIF output formats in particular.

new (%params)
This constructs a new Text::Flow::Wrap module whose %params set the values of the attributes listed below.
wrap ($text)
This method will accept a bunch of text, it will then return a new string which is wrapped to the expected width.

check_width (\&code)
This attribute is required, and must be a CODE reference. This will be used to determine if the width of the text is appropriate. It will get as an argument, a string which is should check the width of. It should return a Boolean value, true if the string is not exceeded the max width and false if it has.
line_break ($str)
This is the line break character used when assembling and disassembling the text, it defaults to the newline character "\n".
paragraph_boundry ($str)
This is the paragraph boundry marker used when disassembling the text, it defaults to the string "\n".
paragraph_break ($str)
This is the paragraph breaker used when re-assembling the text, it defaults to the string "\n\n".
word_boundry ($str)
This is the word boundry marker used when disassembling the text, it defaults to a single space character.
word_break ($str)
This is the paragraph breaker used when re-assembling the text, it defaults to a single space character.

These methods deal with breaking up the paragraphs into its parts, which can then be processed through the re-assembling methods.

These methods are mostly used internally, but more sophisticated tools might need to access them as well (see Text::Flow).

disassemble_paragraph
disassemble_paragraphs

These methods deal with putting the paragraph parts back together after the disassembling methods have done thier work.

These methods are mostly used internally, but more sophisticated tools might need to access them as well (see Text::Flow)

reassemble_paragraph
reassemble_paragraphs

meta
Returns the Moose meta object associated with this class.

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

Stevan Little <stevan@iinteractive.com>

Copyright 2007 by Infinity Interactive, Inc.

<http://www.iinteractive.com>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2007-05-21 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.