mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-15 04:00:12 +01:00
35 lines
536 B
C++
35 lines
536 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <qmainwindow.h>
|
|
|
|
class QGeckoEmbed;
|
|
class QLineEdit;
|
|
|
|
class MyMainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MyMainWindow();
|
|
|
|
public slots:
|
|
void fileOpen();
|
|
void startURIOpen(const QString &, bool &);
|
|
void changeLocation();
|
|
void goBack();
|
|
void goForward();
|
|
void stop();
|
|
|
|
public:
|
|
QGeckoEmbed *qecko;
|
|
|
|
private slots:
|
|
void slotProgress(int, int);
|
|
void slotProgress(const QString &, int, int);
|
|
|
|
private:
|
|
QLineEdit *location;
|
|
};
|
|
|
|
#endif
|