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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ddPrecisionScaleDialog.h - Utility dialog class to allow user input of precision and scale
//
//////////////////////////////////////////////////////////////////////////
#ifndef DDPRECISIONSCALEDIALOG_H
#define DDPRECISIONSCALEDIALOG_H
class ddPrecisionScaleDialog : public pgDialog
{
public:
ddPrecisionScaleDialog();
~ddPrecisionScaleDialog();
ddPrecisionScaleDialog( wxWindow *parent,
const wxString &defaultValue1 = wxT("0"),
const wxString &defaultValue2 = wxT("0")
);
// 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;
}
//wxEVT_COMMAND_TEXT_ENTER event_handle for DDVALUE1
void OnEnterPressed( wxCommandEvent &event );
protected:
// Data members
wxString m_value1, m_value2;
DECLARE_EVENT_TABLE()
};
#endif
|