5,666,979 members and growing! (17,233 online)
Email Password   helpLost your password?
General Programming » String handling » General     Intermediate

Text Formatter

By Doga Arinir

A class to block the size of a given text.
VC6, C++Windows, Win2K, WinXP, MFC, VS6, Visual Studio, Dev

Posted: 19 Sep 2005
Updated: 19 Sep 2005
Views: 14,139
Bookmarked: 8 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
7 votes for this Article.
Popularity: 2.58 Rating: 3.05 out of 5
2 votes, 28.6%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
2 votes, 28.6%
4
3 votes, 42.9%
5

Introduction

I wrote this code back in times where most of the user interfaces were text based. But some years ago, I again had to use this code for formatting emails which were automatically generated and sent to our customers. So I grabbed the change, and rewrote the whole thing in C++. The outcome of this refactoring process is an easy to use class called TextFormatter which provides row justification with a modifiable block size. It also has a special table formatting feature which avoids using tabs between its columns, thus providing a character based column size control and alignment.

How does it work?

The idea behind the row justification is, to automatically wrap the words if the length of one row is greater than the given block size. The diagram below shows the technique of wrapping the line into parts where each part's length is less than the block size. This job is done in makeRowsUnderBlockMax().

Once each row isn't greater than block size anymore, spaces are inserted between words by calculating the amount of characters needed to let the row fit exactly into the block size.

Using the class

The constructor of TextFormatter expects an output stream and a block size for row justifying. You can use either output streams. After an instance of this class is created you can call print(const char *text) as often as you want. This operation will print the given text to the output stream while row justifying it. By calling createTable(), you initiate table formatting. Before you can print the rows of the table, you have to define the column size and alignment. Please refer to the example below. You are also able to print text while you are printing tables. Just modify the code below and try it out. Hope you find this class useful.

void CTextformatterDialogDlg::OnButTesttable() 
{
    std::stringstream out;
    TF::TextFormatter tf(out, m_ColumnWidthControl.GetPos());
    tf.print(standard_text);

    tf.newLines(3);

    tf.createTable();
    tf.addColumn("Name", 10); tf.addColumn("First Name", 14); 
    tf.addColumn("Age", 6);
    tf.setColumnAlignment(2, TF::TextFormatter::right);
    tf.printHeader(true);

    tf.printRow(3, "Kandinsky", "Wassily", "139");
    tf.printRow(3, "Marc", "Franz", "125");
    tf.printRow(3, "Mueller", "Otto", "1131");
    tf.printRow(3, "Dali", "Salvador", "101");
    tf.printRowLine();
    tf.print("Mr.Mueller's age was slightly modified.");

    tf.newLines(5);

    tf.setBlockMax(m_ColumnWidthControl.GetPos()*2);
    tf.print(standard_text);

    m_Output = out.str().c_str();

    this->UpdateData(FALSE);
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Doga Arinir


-Since 1th August 2007: Chief Technology Officer of W3L
-2002/08/01-2007/07/31: PhD student
-1997/10/15-2002/07/31: Studied Electrical Engineering and Computer Science
Occupation: Chief Technology Officer
Company: W3L
Location: Germany Germany

Other popular String handling articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 2 of 2 (Total in Forum: 2) (Refresh)FirstPrevNext
GeneralGreat ,Did u wrote it in c#???memberqueen_Of_Hearts10:06 21 Feb '06  
GeneralStandalone methodmemberRavi Bhavnani15:30 19 Sep '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Sep 2005
Editor: Smitha Vijayan
Copyright 2005 by Doga Arinir
Everything else Copyright © CodeProject, 1999-2008
Web12 | Advertise on the Code Project