source: trunk/examples/rot13/rot13.h@ 59

Last change on this file since 59 was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

  • Property svn:keywords set to Id
File size: 776 bytes
Line 
1/****************************************************************************
2** $Id: rot13.h 2 2005-11-16 15:49:26Z dmik $
3**
4** Definition of something or other
5**
6** Created : 979899
7**
8** Copyright (C) 1997 by Trolltech AS. All rights reserved.
9**
10** This file is part of an example program for Qt. This example
11** program may be used, distributed and modified without limitation.
12**
13*****************************************************************************/
14
15#ifndef ROT13_H
16#define ROT13_H
17
18#include <qwidget.h>
19
20class QMultiLineEdit;
21
22class Rot13: public QWidget {
23 Q_OBJECT
24public:
25 Rot13();
26
27 QString rot13( const QString & ) const;
28
29private slots:
30 void changeLeft();
31 void changeRight();
32
33private:
34 QMultiLineEdit * left, * right;
35};
36
37#endif
Note: See TracBrowser for help on using the repository browser.