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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>
Qt Toolkit - rot13/rot13.cpp example file
</title><style type="text/css"><!--
h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm; }
a:link { color: #004faf; text-decoration: none }
a:visited { color: #672967; text-decoration: none }body { background: white; color: black; }
--></style>
</head><body bgcolor="#ffffff">
<table width="100%">
<tr><td><a href="index.html">
<img width="100" height="100" src="qtlogo.png"
alt="Home" border="0"><img width="100"
height="100" src="face.png" alt="Home" border="0">
</a><td valign=top><div align=right><img src="dochead.png" width="472" height="27"><br>
<a href="classes.html"><b>Classes</b></a>
-<a href="annotated.html">Annotated</a>
- <a href="hierarchy.html">Tree</a>
-<a href="functions.html">Functions</a>
-<a href="index.html">Home</a>
-<a href="topicals.html"><b>Structure</b></a>
</div>
</table>
<h1 align=center>Rot13</h1><br clear="all">
In this example you can enter a text in one Mulitilineedit widget
and it is displayed in the edit widget at the right transformed using
the rot13 algorithm.
<hr>
Header file: <pre>/****************************************************************************
** $Id: qt/examples/rot13/rot13.h 2.3.2 edited 2001-01-26 $
**
** Definition of something or other
**
** Created : 979899
**
** Copyright (C) 1997 by Trolltech AS. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#ifndef ROT13_H
#define ROT13_H
#include <<a href="qwidget-h.html">qwidget.h</a>>
class QMultiLineEdit;
class Rot13: public QWidget {
Q_OBJECT
public:
Rot13();
<a href="qstring.html">QString</a> rot13( const QString & ) const;
private slots:
void changeLeft();
void changeRight();
private:
<a href="qmultilineedit.html">QMultiLineEdit</a> * left, * right;
};
#endif
</pre>
<hr>
Implementation:
<pre>/****************************************************************************
** $Id: qt/examples/rot13/rot13.cpp 2.3.2 edited 2001-06-12 $
**
** Copyright (C) 1992-2000 Trolltech AS. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include "rot13.h"
#include <<a name="qmultilineedit.h"></a><a href="qmultilineedit-h.html">qmultilineedit.h</a>>
#include <<a name="qpushbutton.h"></a><a href="qpushbutton-h.html">qpushbutton.h</a>>
#include <<a name="qapplication.h"></a><a href="qapplication-h.html">qapplication.h</a>>
#include <<a name="qlayout.h"></a><a href="qlayout-h.html">qlayout.h</a>>
Rot13::Rot13()
{
left = new <a name="QMultiLineEdit"></a><a href="qmultilineedit.html">QMultiLineEdit</a>( this, "left" );
right = new <a href="qmultilineedit.html">QMultiLineEdit</a>( this, "right" );
<a name="connect"></a><a href="qobject.html#7f8e37">connect</a>( left, SIGNAL(textChanged()), this, SLOT(<a name="changeRight"></a><a href="#336">changeRight</a>()) );
<a href="qobject.html#7f8e37">connect</a>( right, SIGNAL(textChanged()), this, SLOT(<a name="changeLeft"></a><a href="#335">changeLeft</a>()) );
<a name="QPushButton"></a><a href="qpushbutton.html">QPushButton</a> * quit = new <a href="qpushbutton.html">QPushButton</a>( "&Quit", this );
quit-><a name="setFocusPolicy"></a><a href="qwidget.html#f92b0f">setFocusPolicy</a>( NoFocus );
<a href="qobject.html#7f8e37">connect</a>( quit, SIGNAL(clicked()), qApp, SLOT(quit()) );
<a name="QGridLayout"></a><a href="qgridlayout.html">QGridLayout</a> * l = new <a href="qgridlayout.html">QGridLayout</a>( this, 2, 2, 5 );
l-><a name="addWidget"></a><a href="qgridlayout.html#dac29c">addWidget</a>( left, 0, 0 );
l-><a href="qgridlayout.html#dac29c">addWidget</a>( right, 0, 1 );
l-><a href="qgridlayout.html#dac29c">addWidget</a>( quit, 1, 1, AlignRight );
left->setFocus();
}
void <a name="335"></a>Rot13::changeLeft()
{
left->blockSignals( TRUE );
left->setText( <a name="rot13"></a><a href="#337">rot13</a>( right->text() ) );
left->blockSignals( FALSE );
}
void <a name="336"></a>Rot13::changeRight()
{
right->blockSignals( TRUE );
right->setText( <a href=#337>rot13</a>( left->text() ) );
right->blockSignals( FALSE );
}
<a name="QString"></a><a href="qstring.html">QString</a> <a name="337"></a>Rot13::rot13( const QString & input ) const
{
<a href="qstring.html">QString</a> r = input;
int i = r.length();
while( i-- ) {
if ( r[i] >= QChar('A') && r[i] <= QChar('M') ||
r[i] >= QChar('a') && r[i] <= QChar('m') )
r[i] = (char)((int)QChar(r[i]) + 13);
else if ( r[i] >= QChar('N') && r[i] <= QChar('Z') ||
r[i] >= QChar('n') && r[i] <= QChar('z') )
r[i] = (char)((int)QChar(r[i]) - 13);
}
return r;
}
int main( int argc, char ** argv )
{
<a name="QApplication"></a><a href="qapplication.html">QApplication</a> a( argc, argv );
Rot13 r;
r.<a name="resize"></a><a href="qwidget.html#8fcbbe">resize</a>( 400, 400 );
a.<a name="setMainWidget"></a><a href="qapplication.html#7ad759">setMainWidget</a>( &r );
r.<a name="setCaption"></a><a href="qwidget.html#d6a291">setCaption</a>("Qt Example - ROT13");
r.<a name="show"></a><a href="qwidget.html#200ee5">show</a>();
return a.<a name="exec"></a><a href="qapplication.html#84c7bf">exec</a>();
}
</pre>
<p><address><hr><div align="center">
<table width="100%" cellspacing="0" border="0"><tr>
<td>Copyright 2001 Trolltech<td><a href="http://www.trolltech.com/trademarks.html">Trademarks</a>
<td align="right"><div align="right">Qt version 2.3.2</div>
</table></div></address></body></html>
|