Softwareprojekt

Code der mainwindow.h-Datei

#ifndef MAINWINDOW_H

#define MAINWINDOW_H

#include

#include

class MyWindow : public QMainWindow

{

Q_OBJECT

public:

MyWindow ( );

protected slots:

void startLoading ( );

void whileLoading ( );

void setProgress ( int p );

void finishLoading ( bool );

void fontSize ( );

void noImage ( );

private:

QWebView *view;

QLineEdit *urlEdit;

int progress;

};

#endif