mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 22:02:24 -06:00
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// dlgForeignKey.h - ForeignKey property
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef __DLG_FOREIGNKEYPROP
|
|
#define __DLG_FOREIGNKEYPROP
|
|
|
|
#include "dlg/dlgProperty.h"
|
|
|
|
|
|
class pgForeignKey;
|
|
class pgTable;
|
|
|
|
class dlgForeignKey : public dlgCollistProperty
|
|
{
|
|
public:
|
|
dlgForeignKey(pgaFactory *factory, frmMain *frame, pgForeignKey *node, pgTable *parentNode);
|
|
dlgForeignKey(pgaFactory *factory, frmMain *frame, ctlListView *colList);
|
|
|
|
void CheckChange();
|
|
wxString GetSql();
|
|
wxString GetDefinition();
|
|
pgObject *CreateObject(pgCollection *collection);
|
|
pgObject *GetObject();
|
|
wxString GetHelpPage() const
|
|
{
|
|
return wxT("pg/sql-altertable");
|
|
}
|
|
|
|
int Go(bool modal);
|
|
|
|
private:
|
|
pgForeignKey *foreignKey;
|
|
wxString savedIndexName, savedFKName;
|
|
|
|
wxString DefaultIndexName(const wxString &name);
|
|
|
|
#ifdef __WXMAC__
|
|
void OnChangeSize(wxSizeEvent &ev);
|
|
#endif
|
|
void OnChangeValidate(wxCommandEvent &ev);
|
|
void OnSelChangeCol(wxListEvent &ev);
|
|
void OnSelChangeRef(wxCommandEvent &ev);
|
|
void OnSelChangeRefCol(wxCommandEvent &ev);
|
|
void OnAddRef(wxCommandEvent &ev);
|
|
void OnRemoveRef(wxCommandEvent &ev);
|
|
void OnOK(wxCommandEvent &ev);
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
|
|
#endif
|