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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ddTableNameDialog.h - Utility dialog class to allow user input of table name and short name
//
//////////////////////////////////////////////////////////////////////////
#ifndef DDTABLENAMEDIALOGS_H
#define DDTABLENAMEDIALOGS_H
#include "dlg/dlgClasses.h"
#include "dd/dditems/figures/ddTextTableItemFigure.h"
class ddTableNameDialog : public pgDialog
{
public:
ddTableNameDialog();
~ddTableNameDialog();
ddTableNameDialog(wxWindow *parent,
const wxString &defaultValue1 = wxEmptyString,
const wxString &defaultValue2 = wxEmptyString,
ddTextTableItemFigure *tableItem = NULL
);
// Member initialization
void Init();
// Sets the validators for the dialog controls
//void SetDialogValidators();
bool TransferDataToWindow();
bool TransferDataFromWindow();
// Sets the help text for the dialog controls
void SetDialogHelp();
// Value1 accessors
void SetValue1(wxString value)
{
m_value1 = value;
}
wxString GetValue1()
{
return m_value1;
}
// Value1 accessors
void SetValue2(wxString value)
{
m_value2 = value;
}
wxString GetValue2()
{
return m_value2;
}
// CheckBox accessors
void SetValueGenerate(bool value)
{
checkGenerate = value;
}
bool GetValueGenerate()
{
return checkGenerate;
}
//wxEVT_COMMAND_BUTTON_CLICKED event_handler for DDGENBUTTON
void OnGenButtonClicked( wxCommandEvent &event );
protected:
// Data members
wxString m_value1, m_value2;
wxString label1, label2;
bool checkGenerate;
ddTextTableItemFigure *tabItem;
DECLARE_EVENT_TABLE()
private:
};
#endif
|