summaryrefslogtreecommitdiffstats
path: root/ksirc/kstextviewtest.cpp
blob: 7dcc2d7427b70844d7801fa1d5eb8a0cba3c49a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <tdeapplication.h>

#include "kstextview.h"


class Timer : public TQObject
{
public:
    Timer( KSirc::TextView *view )
	: m_view( view ), m_lines( 0 )
    {
        //startTimer( 5000 );
    }
    void timerEvent( TQTimerEvent * )
    {
	m_lines++;
	if ( m_lines > 15 )
	    m_view->removeParag( m_view->firstParag() );
        m_view->appendParag( TQString::fromLatin1( "<font color=#0000ff>color test</font><font color=#00ff00>color test</font><font color=#ff0000>color test</font><font color=#000088>color test</font><font color=#008800>color test</font><font color=#880000>color test</font><font color=#0000ff>color test</font><font color=#02ff00>color test</font><font color=#2000ff>color test</font>" ) );
        m_view->appendParag( TQString::fromLatin1( "<r>aaaaaa</r> bbbbbb cccccccc ddddddddd eeeeeee " ) );
	m_view->setContentsPos( 0, m_view->contentsHeight() );
    }
private:
    KSirc::TextView *m_view;
    int m_lines;
};

int main( int argc, char **argv )
{
    TDEApplication app( argc, argv, "kstextviewtest" );

    KSirc::TextView view( 0 );
    app.setMainWidget( &view );

    view.show();
    view.appendParag( TQString::fromLatin1( "<b>bold</b>Normal<i>Italic hey!</i><r>reverse!</r>" ) );
    view.appendParag( TQString::fromLatin1( "bleh foo hey bar schubidu bliep blop" ) );
    view.appendParag( TQString::fromLatin1( "more longish paragraphs .. yaddayadda yadda" ) );
    view.appendParag( TQString::fromLatin1( "&lt;tronical&gt; hah! &amp;" ) );
    view.appendParag( TQString::fromLatin1( "<a href=\"http://www.kde.org/\">url</a>" ) );
    view.appendParag( TQString::fromLatin1( "<font color=#0000ff bgcolor=#ff0000>color test</font>" ) );
    view.appendParag( TQString::fromLatin1( "<font color=\"#00ff00\">another color test</font>" ) );
    view.appendParag( TQString::fromLatin1( "<font color=\"#00ff00\" bgcolor=\"#ff0000\">another color test</font>" ) );
    view.appendParag( TQString::fromLatin1( "<i bleh>simple attr test</i><b leh foo=15 doo=\"&amp; > 123 \" oof>complicated attr test</b>" ) );
    view.appendParag( TQString::fromLatin1( "\"<b doo=\"&amp; > 123 \" oof>\"third attr test 2</b>\"" ) );
    view.appendParag( TQString::fromLatin1( "aaaaaa bbbbbb cccccccc ddddddddd eeeeeee" ) );
    Timer t( &view );

    return app.exec();
}