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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// hdCanvasMenuTool.cpp - Allow to set up a menu at main canvas in case of not finding a tool or handle that manages an event
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
// wxWindows headers
#include <wx/wx.h>
#include <wx/textctrl.h>
#include <wx/choicdlg.h>
// App headers
#include "hotdraw/tools/hdCanvasMenuTool.h"
class hdDrawingEditor;
hdCanvasMenuTool::hdCanvasMenuTool(hdDrawingView *view, hdITool *dt):
hdAbstractTool(view)
{
defaultTool = dt;
ownerView->setCanvasMenuTool(NULL);
}
hdCanvasMenuTool::~hdCanvasMenuTool()
{
ownerView->setCanvasMenuTool(NULL);
if(defaultTool)
delete defaultTool;
}
void hdCanvasMenuTool::mouseDown(hdMouseEvent &event)
{
//Linux hack for bug
int x = event.GetPosition().x, y = event.GetPosition().y;
setAnchorCoords(x, y);
if(event.RightDown())
{
wxMenu menu;
event.getView()->setCanvasMenuTool(this);
createViewMenu(event.getView(), menu);
event.getView()->connectPopUpMenu(menu);
hdPoint p = event.GetPosition();
event.getView()->CalcScrolledPosition(p.x, p.y, &p.x, &p.y);
event.getView()->PopupMenu(&menu, p);
return;
}
defaultTool->mouseDown(event);
}
void hdCanvasMenuTool::mouseDrag(hdMouseEvent &event)
{
defaultTool->mouseDrag(event);
}
void hdCanvasMenuTool::mouseUp(hdMouseEvent &event)
{
defaultTool->mouseUp(event);
}
void hdCanvasMenuTool::mouseMove(hdMouseEvent &event)
{
defaultTool->mouseMove(event);
}
void hdCanvasMenuTool::createViewMenu(hdDrawingView *view, wxMenu &mnu)
{
view->createViewMenu(mnu);
}
void hdCanvasMenuTool::OnGenericPopupClick(wxCommandEvent &event, hdDrawingView *view)
{
view->OnGenericViewPopupClick(event);
}
|