mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
47 lines
957 B
C++
47 lines
957 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// dlgCheck.h - Check property
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef __DLG_CHECKPROP
|
|
#define __DLG_CHECKPROP
|
|
|
|
#include "dlg/dlgProperty.h"
|
|
|
|
class pgCheck;
|
|
class pgObject;
|
|
|
|
class dlgCheck : public dlgProperty
|
|
{
|
|
public:
|
|
dlgCheck(pgaFactory *factory, frmMain *frame, pgCheck *node = 0, pgObject *parentNode = 0);
|
|
|
|
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:
|
|
pgCheck *check;
|
|
pgObject *object;
|
|
|
|
void OnChangeValidate(wxCommandEvent &ev);
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
|
|
#endif
|