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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ddColumnKindIcon.cpp - Figure container for kind of Column Images (fk,pk,uk) only used
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
// wxWindows headers
#include <wx/wx.h>
#include <wx/dcbuffer.h>
#include <wx/pen.h>
// App headers
#include "dd/dditems/figures/ddColumnKindIcon.h"
#include "hotdraw/main/hdDrawingView.h"
#include "dd/dditems/figures/ddColumnFigure.h"
#include "dd/dditems/figures/ddTableFigure.h"
//Images
#include "images/ddforeignkey.pngc"
#include "images/ddprimarykey.pngc"
#include "images/ddunique.pngc"
#include "images/ddprimaryforeignkey.pngc"
#include "images/ddprimarykeyuniquekey.pngc"
#include "images/ddforeignkeyfromuk.pngc"
#include "images/ddprimaryforeignkeyfromuk.pngc"
#include "images/ddforeignkeyuniquekey.pngc"
#include "images/ddforeignkeyuniquekeyfromuk.pngc"
ddColumnKindIcon::ddColumnKindIcon(ddColumnFigure *owner)
{
setKindId(DDCOLUMNKINDICON);
ownerColumn = owner;
// Initialize with an image to allow initial size calculations
icon = wxBitmap(*ddprimarykey_png_img);
iconToDraw = NULL;
getBasicDisplayBox().SetSize(wxSize(getWidth(), getHeight()));
isPk = false;
ukIndex = -1;
//Set Value default Attributes
fontAttribute->font().SetPointSize(owner->fontAttribute->font().GetPointSize());
}
ddColumnKindIcon::~ddColumnKindIcon()
{
}
void ddColumnKindIcon::createMenu(wxMenu &mnu)
{
wxMenuItem *item;
item = mnu.AppendCheckItem(MNU_DDCTPKEY, _("Primary key"));
item->Check(isPrimaryKey());
item->Enable(!getOwnerColumn()->isGeneratedForeignKey());
item = mnu.AppendCheckItem(MNU_DDCTUKEY, _("Unique key"));
item->Check(isUniqueKey());
}
void ddColumnKindIcon::OnGenericPopupClick(wxCommandEvent &event, hdDrawingView *view)
{
toggleColumnKind((ddColumnType)event.GetId(), view);
}
ddColumnFigure *ddColumnKindIcon::getOwnerColumn()
{
return ownerColumn;
}
//if columntype attribute (type) is active then disable, is disable then active.
void ddColumnKindIcon::toggleColumnKind(ddColumnType type, hdDrawingView *view, bool interaction)
{
switch(type)
{
case pk:
//Set Pk attribute
if(isPrimaryKey())
{
disablePrimaryKey();
}
else
{
enablePrimaryKey();
if(getOwnerColumn()->isNull())
{
getOwnerColumn()->setColumnOption(notnull);
}
}
break;
case uk:
if(isUniqueKey())
{
disableUniqueKey();
}
else
{
uniqueConstraintManager(false, view, interaction);
}
break;
default:
break;
}
getBasicDisplayBox().SetSize(wxSize(getWidth(), getHeight()));
}
void ddColumnKindIcon::basicDraw(wxBufferedDC &context, hdDrawingView *view)
{
if(iconToDraw)
{
hdRect copy = displayBox().gethdRect(view->getIdx());
view->CalcScrolledPosition(copy.x, copy.y, ©.x, ©.y);
//Adding a yellow circle to increase visibility of uk index
if(isUniqueKey())
{
context.SetBrush(wxBrush(wxColour(wxT("YELLOW")), wxSOLID));
context.SetPen(wxPen(wxColour(wxT("YELLOW"))));
context.DrawCircle(copy.x + 6, copy.y + 7, 4);
}
//Draw icon
context.DrawBitmap(*iconToDraw, copy.GetPosition(), true);
//Draw Uk index if needed
if(isUniqueKey() && ukIndex > 0)
{
wxFont font = fontAttribute->font();
font.SetPointSize(6);
context.SetFont(font);
wxString inumber = wxString::Format(wxT("%d"), (int)ukIndex + 1);
context.DrawText(inumber, copy.x + 4, copy.y + 2);
}
}
}
void ddColumnKindIcon::basicDrawSelected(wxBufferedDC &context, hdDrawingView *view)
{
basicDraw(context, view);
}
int ddColumnKindIcon::getWidth()
{
if(iconToDraw)
return iconToDraw->GetWidth();
else
return 8;
}
int ddColumnKindIcon::getHeight()
{
if(iconToDraw)
return iconToDraw->GetHeight();
else
return 10;
}
/*
ddColumnType ddColumnKindIcon::getKind()
{
return colType;
}
*/
int ddColumnKindIcon::getUniqueConstraintIndex()
{
return ukIndex;
}
void ddColumnKindIcon::setUniqueConstraintIndex(int i)
{
ukIndex = i;
}
bool ddColumnKindIcon::uniqueConstraintManager(bool ukCol, hdDrawingView *view, bool interaction)
{
wxString tmpString;
bool isColUk = true;
if(ukCol) //if already this column kind is Unique Key then convert in a normal column
{
syncUkIndexes();
setUniqueConstraintIndex(-1);
}
else //colType!=uk
{
if(interaction)
{
if(ownerColumn->getOwnerTable()->getUkConstraintsNames().Count() == 0)
{
tmpString = getOwnerColumn()->getOwnerTable()->getTableName();
tmpString.append(wxT("_uk"));
tmpString = wxGetTextFromUser(wxT("Name of new Unique Key constraint:"), tmpString, tmpString, view);
if(tmpString.length() > 0)
{
getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().Add(tmpString);
ukIndex = 0;
}
else
{
setUniqueConstraintIndex(-1);
}
}
else //>0
{
getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().Add(wxString(wxT("Add new Unique Constraint...")));
int i = wxGetSingleChoiceIndex(wxT("Select Unique Key to add Column"), wxT("Select Unique Key to add Column:"), getOwnerColumn()->getOwnerTable()->getUkConstraintsNames(), view);
getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().RemoveAt(getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().Count() - 1);
if(i >= 0)
{
if(i == getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().Count())
{
tmpString = getOwnerColumn()->getOwnerTable()->getTableName();
tmpString.append(wxT("_uk"));
int newIndex = i + 1;
wxString inumber = wxString::Format(wxT("%s%d"), tmpString.c_str(), (int)newIndex);
//Validate new name of uk doesn't exists
while(getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().Index(inumber, false) != -1)
{
newIndex++;
inumber = wxString::Format(wxT("%s%d"), tmpString.c_str(), (int)newIndex);
}
inumber = wxString::Format(wxT("%d"), (int)newIndex);
tmpString.append(inumber);
tmpString = wxGetTextFromUser(wxT("Name of new Unique Key constraint:"), tmpString, tmpString, view);
if(tmpString.length() > 0)
{
getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().Add(tmpString);
ukIndex = i;
}
else
{
setUniqueConstraintIndex(-1);
}
}
else
{
ukIndex = i;
}
}
else
{
setUniqueConstraintIndex(-1);
}
}
}
else //without user interaction
{
}
}
//synchronize observers if this uk column is used as source of fk
setRightIconForColumn();
getOwnerColumn()->getOwnerTable()->updateFkObservers();
if(!isUniqueKey())
return false;
else
return true;
}
//synchronize uk indexes when an uk is change kind from uk to other and other index should be update with that info
void ddColumnKindIcon::syncUkIndexes()
{
ddColumnFigure *col;
bool lastUk = true;
hdIteratorBase *iterator = getOwnerColumn()->getOwnerTable()->figuresEnumerator();
iterator->Next(); //First Figure is Main Rect
iterator->Next(); //Second Figure is Table Title
while(iterator->HasNext())
{
col = (ddColumnFigure *) iterator->Next();
if(col != getOwnerColumn() && (col->getUniqueConstraintIndex() == getOwnerColumn()->getUniqueConstraintIndex()))
{
lastUk = false;
break;
}
}
if(lastUk)
{
//here uks indexes are fixed
iterator->ResetIterator();
iterator->Next(); //First Figure is Main Rect
iterator->Next(); //Second Figure is Table Title
while(iterator->HasNext())
{
col = (ddColumnFigure *) iterator->Next();
if( col->getUniqueConstraintIndex() > getOwnerColumn()->getUniqueConstraintIndex() )
col->setUniqueConstraintIndex(col->getUniqueConstraintIndex() - 1);
}
getOwnerColumn()->getOwnerTable()->getUkConstraintsNames().RemoveAt(getOwnerColumn()->getUniqueConstraintIndex());
getOwnerColumn()->setUniqueConstraintIndex(-1);
}
delete iterator;
}
void ddColumnKindIcon::setRightIconForColumn()
{
//for a pk Column
if(isPrimaryKey())
{
if(isForeignKey())
{
if(getOwnerColumn()->isForeignKeyFromPk())
{
icon = wxBitmap(*ddprimaryforeignkey_png_img);
}
else
{
icon = wxBitmap(*ddprimaryforeignkeyfromuk_png_img);
}
}
else if(isUniqueKey())
{
icon = wxBitmap(*ddprimarykeyuniquekey_png_img);
}
else
{
icon = wxBitmap(*ddprimarykey_png_img);
}
}
else if(isUniqueKey())
{
if(isForeignKey())
{
if(getOwnerColumn()->isForeignKeyFromPk())
{
icon = wxBitmap(*ddforeignkeyuniquekey_png_img);
}
else
{
icon = wxBitmap(*ddforeignkeyuniquekeyfromuk_png_img);
}
}
else if(isPrimaryKey())
{
icon = wxBitmap(*ddprimarykeyuniquekey_png_img);
}
else
{
icon = wxBitmap(*ddunique_png_img);
}
}
else if(isForeignKey() && !isPrimaryKey() && !isUniqueKey() )
{
if(getOwnerColumn()->isForeignKeyFromPk())
{
icon = wxBitmap(*ddforeignkey_png_img);
}
else
{
icon = wxBitmap(*ddforeignkeyfromuk_png_img);
}
}
if(isNone())
{
iconToDraw = NULL;
}
else
{
iconToDraw = &icon;
}
}
bool ddColumnKindIcon::isPrimaryKey()
{
return isPk;
}
bool ddColumnKindIcon::isUniqueKey()
{
return ukIndex >= 0;
}
bool ddColumnKindIcon::isUniqueKey(int uniqueIndex)
{
return (ukIndex == uniqueIndex);
}
bool ddColumnKindIcon::isNone()
{
return !isUniqueKey() && !isPrimaryKey() && !isForeignKey();
}
bool ddColumnKindIcon::isForeignKey()
{
return getOwnerColumn()->isForeignKey();
}
void ddColumnKindIcon::disableUniqueKey()
{
syncUkIndexes(); //prepare to remove uk attribute to this column
ukIndex = -1;
getOwnerColumn()->getOwnerTable()->updateFkObservers();
setRightIconForColumn();
}
void ddColumnKindIcon::disablePrimaryKey()
{
getOwnerColumn()->getOwnerTable()->prepareForDeleteFkColumn(getOwnerColumn());
isPk = false;
getOwnerColumn()->getOwnerTable()->updateFkObservers();
setRightIconForColumn();
}
void ddColumnKindIcon::enablePrimaryKey()
{
isPk = true;
getOwnerColumn()->getOwnerTable()->updateFkObservers();
setRightIconForColumn();
}
//Only used for figures created from storage
void ddColumnKindIcon::setPrimaryKey(bool value)
{
isPk = value;
setRightIconForColumn();
}
//Only used for figures created from storage
void ddColumnKindIcon::setUkIndex(int ukIdx)
{
ukIndex = ukIdx;
}
|