1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ctlSeclabelPanel.h - Panel with security label information
//
//////////////////////////////////////////////////////////////////////////
#ifndef CTL_SECLBLPANEL_H
#define CTL_SECLBLPANEL_H
#include <wx/wx.h>
#include <wx/notebook.h>
enum
{
CTL_LBSECLABEL = 250,
CTL_ADDSECLABEL,
CTL_DELSECLABEL,
CTL_PROVIDER,
CTL_SECLABEL
};
DECLARE_LOCAL_EVENT_TYPE(EVT_SECLABELPANEL_CHANGE, -1)
class pgConn;
class ctlSeclabelPanel : public wxPanel
{
public:
ctlSeclabelPanel(wxNotebook *nb);
~ctlSeclabelPanel();
ctlListView *lbSeclabels;
void SetConnection(pgConn *conn);
void SetObject(pgObject *obj);
void Disable();
wxString GetSqlForSecLabels(wxString objecttype = wxEmptyString, wxString objectname = wxEmptyString);
protected:
wxNotebook *nbNotebook;
pgConn *connection;
pgObject *object;
wxButton *btnAddSeclabel, *btnDelSeclabel;
wxTextCtrl *txtProvider, *txtSeclabel;
void OnSeclabelSelChange(wxListEvent &ev);
void OnAddSeclabel(wxCommandEvent &ev);
void OnDelSeclabel(wxCommandEvent &ev);
void OnProviderChange(wxCommandEvent &ev);
void OnSeclabelChange(wxCommandEvent &ev);
DECLARE_EVENT_TABLE()
};
#endif
|