mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 06:05:49 -06:00
105 lines
2.1 KiB
C++
105 lines
2.1 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// pgGroup.h - PostgreSQL Group
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PGGROUP_H
|
|
#define PGGROUP_H
|
|
|
|
#include "pgServer.h"
|
|
|
|
|
|
class pgGroupFactory : public pgServerObjFactory
|
|
{
|
|
public:
|
|
pgGroupFactory();
|
|
virtual dlgProperty *CreateDialog(frmMain *frame, pgObject *node, pgObject *parent);
|
|
virtual pgObject *CreateObjects(pgCollection *obj, ctlTree *browser, const wxString &restr = wxEmptyString);
|
|
};
|
|
extern pgGroupFactory groupFactory;
|
|
|
|
|
|
// Class declarations
|
|
class pgGroup : public pgServerObject
|
|
{
|
|
public:
|
|
pgGroup(const wxString &newName = wxT(""));
|
|
wxString GetTranslatedMessage(int kindOfMessage) const;
|
|
|
|
// Group Specific
|
|
long GetGroupId() const
|
|
{
|
|
return groupId;
|
|
}
|
|
void iSetGroupId(const long l)
|
|
{
|
|
groupId = l;
|
|
}
|
|
long GetMemberCount() const
|
|
{
|
|
return memberCount;
|
|
}
|
|
void iSetMemberCount(const long l)
|
|
{
|
|
memberCount = l;
|
|
}
|
|
wxString GetMemberIds() const
|
|
{
|
|
return memberIds;
|
|
}
|
|
void iSetMemberIds(const wxString &s)
|
|
{
|
|
memberIds = s;
|
|
}
|
|
wxString GetMembers() const
|
|
{
|
|
return members;
|
|
}
|
|
void iSetMembers(const wxString &s)
|
|
{
|
|
members = s;
|
|
}
|
|
wxArrayString &GetUsersIn()
|
|
{
|
|
return usersIn;
|
|
}
|
|
|
|
void ShowTreeDetail(ctlTree *browser, frmMain *form = 0, ctlListView *properties = 0, ctlSQLBox *sqlPane = 0);
|
|
|
|
bool DropObject(wxFrame *frame, ctlTree *browser, bool cascaded);
|
|
wxString GetSql(ctlTree *browser);
|
|
pgObject *Refresh(ctlTree *browser, const wxTreeItemId item);
|
|
|
|
bool HasStats()
|
|
{
|
|
return false;
|
|
}
|
|
bool HasDepends()
|
|
{
|
|
return true;
|
|
}
|
|
bool HasReferences()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
long groupId, memberCount;
|
|
wxString memberIds, members, quotedMembers;
|
|
wxArrayString usersIn;
|
|
};
|
|
|
|
class pgGroupCollection : public pgServerObjCollection
|
|
{
|
|
public:
|
|
pgGroupCollection(pgaFactory *factory, pgServer *sv);
|
|
wxString GetTranslatedMessage(int kindOfMessage) const;
|
|
};
|
|
|
|
#endif
|