mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 06:05:49 -06:00
36 lines
788 B
C++
36 lines
788 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// dlgConnect.h - Connect to a database
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DLGCONNECT_H
|
|
#define DLGCONNECT_H
|
|
|
|
#include "dlg/dlgClasses.h"
|
|
|
|
// Class declarations
|
|
class dlgConnect : public DialogWithHelp
|
|
{
|
|
public:
|
|
dlgConnect(frmMain *form, const wxString &description, bool needPwd);
|
|
~dlgConnect();
|
|
wxString GetHelpPage() const;
|
|
|
|
|
|
wxString GetPassword();
|
|
bool GetStorePwd();
|
|
int Go();
|
|
|
|
private:
|
|
void OnOK(wxCommandEvent &ev);
|
|
void OnCancel(wxCommandEvent &ev);
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|