mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-21 06:45:27 -06:00
init
This commit is contained in:
commit
9c6f9f3405
1784 changed files with 440662 additions and 0 deletions
43
include/dlg/dlgMoveTablespace.h
Normal file
43
include/dlg/dlgMoveTablespace.h
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// pgAdmin III - PostgreSQL Tools
|
||||
//
|
||||
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
||||
// This software is released under the PostgreSQL Licence
|
||||
//
|
||||
// dlgMoveTablespace.h - Reassign or drop owned objects
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef dlgMoveTablespace_H
|
||||
#define dlgMoveTablespace_H
|
||||
|
||||
// wxWindows headers
|
||||
#include <wx/wx.h>
|
||||
#include <wx/settings.h>
|
||||
|
||||
|
||||
#include "dlg/dlgClasses.h"
|
||||
class pgConn;
|
||||
class pgTablespace;
|
||||
|
||||
// Class declarations
|
||||
class dlgMoveTablespace : public pgDialog
|
||||
{
|
||||
public:
|
||||
dlgMoveTablespace(frmMain *win, pgConn *conn, pgTablespace *tblspc);
|
||||
~dlgMoveTablespace();
|
||||
wxString GetTablespace();
|
||||
wxArrayString GetKind();
|
||||
wxString GetOwner();
|
||||
private:
|
||||
pgConn *connection;
|
||||
frmMain *parent;
|
||||
|
||||
void OnOK(wxCommandEvent &ev);
|
||||
void OnCancel(wxCommandEvent &ev);
|
||||
void OnChange(wxCommandEvent &ev);
|
||||
DECLARE_EVENT_TABLE()
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue