mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 00:37:36 -06:00
457a842cec
with any other apps that may have already bound to the default port used by CP.
67 lines
1.2 KiB
C++
67 lines
1.2 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2013, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// BrowserWindow.h - Declaration of the main window class
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef BROWSERWINDOW_H
|
|
#define BROWSERWINDOW_H
|
|
|
|
#include "pgAdmin4.h"
|
|
|
|
#include <QtGlobal>
|
|
|
|
#if QT_VERSION >= 0x050000
|
|
#include <QtWidgets>
|
|
#include <QtWebKitWidgets>
|
|
#else
|
|
#include <QMainWindow>
|
|
#include <QWebView>
|
|
#endif
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QAction;
|
|
class QMenu;
|
|
QT_END_NAMESPACE
|
|
|
|
class BrowserWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
BrowserWindow(quint16 port);
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *event);
|
|
|
|
protected slots:
|
|
void finishLoading(bool);
|
|
|
|
private slots:
|
|
void openUrl();
|
|
void about();
|
|
|
|
private:
|
|
QString m_appServerUrl;
|
|
QWebView *webView;
|
|
QMenu *fileMenu;
|
|
QMenu *helpMenu;
|
|
QAction *openUrlAction;
|
|
QAction *exitAction;
|
|
QAction *aboutAction;
|
|
|
|
bool m_initialLoad;
|
|
int m_loadAttempt;
|
|
|
|
void createActions();
|
|
void createMenus();
|
|
void pause(int seconds = 1);
|
|
};
|
|
|
|
#endif // BROWSERWINDOW_H
|