1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// frmPgpassConfig.h - Pgpass.conf editor
//
//////////////////////////////////////////////////////////////////////////
#ifndef frmPgpassConfig_H
#define frmPgpassConfig_H
#include "frm/frmConfig.h"
#include "utils/pgconfig.h"
class pgConn;
class pgServer;
class ctlListView;
WX_DECLARE_OBJARRAY(pgPassConfigLine, pgPassConfigLineArray);
class frmPgpassConfig : public frmConfig
{
public:
frmPgpassConfig(const wxString &title, const wxString &configFile);
frmPgpassConfig(frmMain *parent);
~frmPgpassConfig();
protected:
void DisplayFile(const wxString &str);
void WriteFile(pgConn *conn = 0);
wxString GetHintString();
wxString GetHelpPage() const;
private:
void Init();
void UpdateDisplay(pgPassConfigLine &line);
void OnContents(wxCommandEvent &event);
void OnUndo(wxCommandEvent &event);
void OnDelete(wxCommandEvent &event);
void OnEditSetting(wxListEvent &event);
void OnSelectSetting(wxListEvent &event);
ctlListView *listEdit;
pgPassConfigLineArray lines;
DECLARE_EVENT_TABLE()
};
class pgpassConfigFileFactory : public actionFactory
{
public:
pgpassConfigFileFactory(menuFactoryList *list, wxMenu *mnu, ctlMenuToolbar *toolbar);
wxWindow *StartDialog(frmMain *form, pgObject *obj);
};
#endif
|