00001
00002
00003 #ifndef TELETEXTMAINWIN_H
00004 #define TELETEXTMAINWIN_H
00005
00006 #include <qvbox.h>
00007
00008 class QLineEdit;
00009 class TeletextWidget;
00010 class KAnimWidget;
00011
00017 class TeletextMainWin : public QVBox
00018 {
00019 Q_OBJECT
00020
00021 public:
00022 TeletextMainWin();
00023 virtual ~TeletextMainWin();
00024
00025 public slots:
00026 void returnPressed();
00027 void setPage( const QString &page );
00028 void foundPage();
00029
00030 private:
00031 TeletextWidget *view;
00032 QLineEdit *edit;
00033 KAnimWidget *anim;
00034 };
00035
00036 #endif // TELETEXTMAINWIN_H
00037