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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
//////////////////////////////////////////////////////////////////////////
//
// 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 DDSELECTKINDFKSDIALOG_H
#define DDSELECTKINDFKSDIALOG_H
#include <wx/statline.h>
#include "dd/dditems/figures/ddRelationshipFigure.h"
class hdDrawingView;
enum
{
DDSELECTKINDFKSDIALOG = 10000,
DDSELECTKINDFK = 10001,
DDCHOICESELECTBASE = 30000
};
class ddSelectFkKindLine : public hdObject
{
public:
wxStaticText *sourceCtrl;
wxChoice *destinationCtrl;
ddSelectFkKindLine(wxWindow *parent, wxString sourceColumn, wxArrayString possibleTargets, wxWindowID eventId);
ddSelectFkKindLine();
~ddSelectFkKindLine();
};
WX_DECLARE_STRING_HASH_MAP( ddSelectFkKindLine *, choicesControlsHashMap );
class ddSelectKindFksDialog : public wxDialog
{
DECLARE_CLASS( ddSelectKindFksDialog )
DECLARE_EVENT_TABLE()
public:
ddSelectKindFksDialog();
~ddSelectKindFksDialog();
ddSelectKindFksDialog( wxWindow *parent,
ddRelationshipFigure *relation,
wxWindowID id = DDSELECTKINDFKSDIALOG,
const wxPoint &pos = wxDefaultPosition,
const wxSize &size = wxDefaultSize,
long style = wxCAPTION
);
// Member initialization
void Init();
// Creation
bool Create( wxWindow *parent,
wxWindowID id,
const wxPoint &pos,
const wxSize &size,
long style);
// Creates the controls and sizers
void CreateControls();
// Sets the validators for the dialog controls
bool TransferDataToWindow();
bool TransferDataFromWindow();
// Sets the help text for the dialog controls
void SetDialogHelp();
//wxEVT_COMMAND_TEXT_ENTER event_handle for DDVALUE1
void OnEnterPressed( wxCommandEvent &event );
void OnOkButtonClicked( wxCommandEvent &event );
void OnCancelButtonClicked( wxCommandEvent &event );
protected:
//methods
void populateColumnsControls(bool primaryKey, int useUkIndex);
void deleteColsControls();
void OnChoiceFkKind(wxCommandEvent &event);
// Data members
ddRelationshipFigure *tablesRelation;
// Dialog controls
choicesControlsHashMap choices;
wxBoxSizer *topSizer, *linesSizer, *okCancelBox, *colsTopSizer;
wxChoice *kindFkCtrl;
wxButton *ok, *cancel;
wxStaticLine *line;
private:
};
#endif
|