File: ddColumnTextTool.cpp

package info (click to toggle)
pgadmin3 1.20.0~beta2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 73,704 kB
  • ctags: 18,591
  • sloc: cpp: 193,786; ansic: 18,736; sh: 5,154; pascal: 1,120; yacc: 927; makefile: 516; lex: 421; xml: 126; perl: 40
file content (83 lines) | stat: -rw-r--r-- 2,394 bytes parent folder | download
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
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ddColumnTextTool.cpp - Modification of simple text tool for editing composite figure columns
//
//////////////////////////////////////////////////////////////////////////

#include "pgAdmin3.h"

// wxWindows headers
#include <wx/wx.h>
#include <wx/textctrl.h>
#include <wx/choicdlg.h>

// App headers
#include "dd/dditems/tools/ddColumnTextTool.h"
#include "dd/dditems/figures/ddTextTableItemFigure.h"
#include "dd/dditems/figures/ddTableFigure.h"
#include "dd/dditems/utilities/ddTableNameDialog.h"

class hdDrawingEditor;


ddColumnTextTool::ddColumnTextTool(hdDrawingView *view, hdIFigure *fig, hdITool *dt, bool fastEdit , wxString dialogCaption, wxString dialogMessage):
	hdSimpleTextTool(view, fig, dt, fastEdit, dialogCaption, dialogMessage)
{
	if(colTextFigure->ms_classInfo.IsKindOf(&ddTextTableItemFigure::ms_classInfo))
		colTextFigure = (ddTextTableItemFigure *) fig;
	else
		colTextFigure = NULL;
}

ddColumnTextTool::~ddColumnTextTool()
{
}

void ddColumnTextTool::mouseDown(hdMouseEvent &event)
{
	hdSimpleTextTool::mouseDown(event);
}

bool ddColumnTextTool::callDialog(hdDrawingView *view)
{
	if(colTextFigure->getOwnerColumn() == NULL)
	{
		wxString colName = colTextFigure->getText();
		wxString colShortName = colTextFigure->getAlias();
		ddTableNameDialog *nameAliasDialog = new ddTableNameDialog(
		    view,
		    colName,
		    colShortName,
		    colTextFigure
		);

		int answer =	nameAliasDialog->ShowModal();
		bool change = false;

		if(answer == wxOK)
		{
			//check if names changed
			change =  ! (colShortName.IsSameAs(nameAliasDialog->GetValue1()) && colShortName.IsSameAs(nameAliasDialog->GetValue2()));
			if(change)
			{
				colTextFigure->setText(nameAliasDialog->GetValue1());
				colTextFigure->setAlias(nameAliasDialog->GetValue2());
				view->notifyChanged();
			}
		}
		delete nameAliasDialog;
		return change;
	}
	else
	{
		bool change = hdSimpleTextTool::callDialog(view);
		if(  change && colTextFigure->getOwnerColumn()->isGeneratedForeignKey()) //after a manual user column rename, deactivated automatic generation of fk name.
			colTextFigure->getOwnerColumn()->deactivateGenFkName();
		return change;
	}
}