mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
44 lines
1,005 B
C++
44 lines
1,005 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// dlgResourceGroup.h - Resource Group property
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __DLG_RESOURCEGROUPPROP
|
|
#define __DLG_RESOURCEGROUPPROP
|
|
|
|
#include "dlg/dlgProperty.h"
|
|
|
|
class edbResourceGroup;
|
|
|
|
class dlgResourceGroup : public dlgProperty
|
|
{
|
|
public:
|
|
dlgResourceGroup(pgaFactory *factory, frmMain *frame, edbResourceGroup *node = 0);
|
|
wxString GetSql();
|
|
wxString GetSql2();
|
|
pgObject *CreateObject(pgCollection *collection);
|
|
pgObject *GetObject();
|
|
|
|
void CheckChange();
|
|
int Go(bool modal);
|
|
|
|
private:
|
|
void OnChange(wxCommandEvent &event);
|
|
void OnOK(wxCommandEvent &ev);
|
|
|
|
private:
|
|
edbResourceGroup *resourceGroup;
|
|
wxString m_cpuRate;
|
|
wxString m_dirtyRate;
|
|
bool m_isNameChange;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|