mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
90 lines
1.9 KiB
C++
90 lines
1.9 KiB
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgAdmin III - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
// frmRestore.h - Restore database dialogue
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef FRMRESTORE_H
|
|
#define FRMRESTORE_H
|
|
|
|
#include "dlg/dlgClasses.h"
|
|
#include "utils/factory.h"
|
|
|
|
class pgServer;
|
|
class frmRestore : public ExternProcessDialog
|
|
{
|
|
public:
|
|
frmRestore(frmMain *_form, pgObject *_object);
|
|
~frmRestore();
|
|
|
|
void Go();
|
|
wxString GetDisplayCmd(int step);
|
|
wxString GetCmd(int step);
|
|
|
|
private:
|
|
wxString GetHelpPage() const;
|
|
void OnChangeName(wxCommandEvent &ev);
|
|
void OnChange(wxCommandEvent &ev);
|
|
void OnSelectFilename(wxCommandEvent &ev);
|
|
void OnView(wxCommandEvent &ev);
|
|
void OnOK(wxCommandEvent &ev);
|
|
void OnChangeFormat(wxCommandEvent &ev);
|
|
void OnChangeData(wxCommandEvent &ev);
|
|
void OnChangeSchema(wxCommandEvent &ev);
|
|
void OnChangeSection(wxCommandEvent &ev);
|
|
void OnChangeList(wxListEvent &ev);
|
|
void OnEndProcess(wxProcessEvent &event);
|
|
|
|
wxString getCmdPart1();
|
|
wxString getCmdPart2(int step);
|
|
|
|
frmMain *form;
|
|
pgObject *object;
|
|
pgServer *server;
|
|
bool viewRunning, filenameValid;
|
|
wxString processedFile;
|
|
wxString restoreExecutable;
|
|
wxString restoreTOCFilename;
|
|
int numberOfTOCItems;
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
|
|
class restoreFactory : public contextActionFactory
|
|
{
|
|
public:
|
|
restoreFactory(menuFactoryList *list, wxMenu *mnu, ctlMenuToolbar *toolbar);
|
|
wxWindow *StartDialog(frmMain *form, pgObject *obj);
|
|
bool CheckEnable(pgObject *obj);
|
|
};
|
|
|
|
|
|
class restoreTreeItemData : public wxTreeItemData
|
|
{
|
|
public:
|
|
restoreTreeItemData(int id, const wxString &desc);
|
|
|
|
int GetId()
|
|
{
|
|
return restoreId;
|
|
}
|
|
wxString GetDesc()
|
|
{
|
|
return restoreDesc;
|
|
}
|
|
|
|
private:
|
|
int restoreId;
|
|
wxString restoreDesc;
|
|
};
|
|
|
|
|
|
|
|
#endif
|