TestQGeckoEmbed from the embedding/browser/qt/tests. Build patch sr=jst, r=biesi. Rest: r=dbaron,biesi git-svn-id: svn://10.0.0.236/trunk@163516 18797224-902f-48f8-a5cc-f745e15eee43
22 lines
299 B
C++
22 lines
299 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <qmainwindow.h>
|
|
|
|
class QGeckoEmbed;
|
|
|
|
class MyMainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MyMainWindow();
|
|
|
|
public slots:
|
|
void fileOpen();
|
|
void startURIOpen(const QString &, bool &);
|
|
public:
|
|
QGeckoEmbed *qecko;
|
|
};
|
|
|
|
#endif
|