pgadmin3/include/dlg/dlgResourceGroup.h
2020-07-07 22:19:12 +05:00

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