diff options
Diffstat (limited to 'src/gui/general/EditTool.cpp')
-rw-r--r-- | src/gui/general/EditTool.cpp | 143 |
1 files changed, 143 insertions, 0 deletions
diff --git a/src/gui/general/EditTool.cpp b/src/gui/general/EditTool.cpp new file mode 100644 index 0000000..52e7b11 --- /dev/null +++ b/src/gui/general/EditTool.cpp @@ -0,0 +1,143 @@ +/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ + +/* + Rosegarden + A MIDI and audio sequencer and musical notation editor. + + This program is Copyright 2000-2008 + Guillaume Laurent <[email protected]>, + Chris Cannam <[email protected]>, + Richard Bown <[email protected]> + + The moral rights of Guillaume Laurent, Chris Cannam, and Richard + Bown to claim authorship of this work have been asserted. + + Other copyrights also apply to some parts of this work. Please + see the AUTHORS file and individual file headers for details. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. See the file + COPYING included with this distribution for more information. +*/ + + +#include "EditTool.h" + +#include "misc/Debug.h" +#include "base/Event.h" +#include "BaseTool.h" +#include "base/ViewElement.h" +#include "EditView.h" +#include "RosegardenCanvasView.h" +#include <kxmlguiclient.h> +#include <qevent.h> +#include <qpopupmenu.h> +#include <qstring.h> + + +namespace Rosegarden +{ + +EditTool::EditTool(const QString& menuName, EditView* view) + : BaseTool(menuName, view->factory(), view), + m_parentView(view) +{} + +void EditTool::handleMousePress(timeT time, + int height, + int staffNo, + QMouseEvent* e, + ViewElement* el) +{ + RG_DEBUG << "EditTool::handleMousePress : mouse button = " + << e->button() << endl; + + switch (e->button()) { + + case Qt::LeftButton: + if (e->type() == QEvent::MouseButtonDblClick) { + RG_DEBUG << "EditTool::handleMousePress: it's a double-click" + << endl; + handleMouseDoubleClick(time, height, staffNo, e, el); + } else { + RG_DEBUG << "EditTool::handleMousePress: it's a single-click" + << endl; + handleLeftButtonPress(time, height, staffNo, e, el); + } + break; + + case Qt::RightButton: + handleRightButtonPress(time, height, staffNo, e, el); + break; + + case Qt::MidButton: + handleMidButtonPress(time, height, staffNo, e, el); + break; + + default: + RG_DEBUG << "EditTool::handleMousePress : no button mouse press\n"; + break; + } +} + +void EditTool::handleMidButtonPress(timeT, + int, int, + QMouseEvent*, + ViewElement*) +{} + +void EditTool::handleRightButtonPress(timeT, + int, int, + QMouseEvent*, + ViewElement*) +{ + showMenu(); +} + +void EditTool::handleMouseDoubleClick(timeT, + int, int, + QMouseEvent*, + ViewElement*) +{ + // nothing +} + +int EditTool::handleMouseMove(timeT, int, QMouseEvent*) +{ + return RosegardenCanvasView::NoFollow; +} + +void EditTool::handleMouseRelease(timeT, int, QMouseEvent*) +{} + +void EditTool::createMenu(QString rcFileName) +{ + setRCFileName(rcFileName); + createMenu(); +} + +void EditTool::createMenu() +{ + RG_DEBUG << "BaseTool::createMenu() " << m_rcFileName << " - " << m_menuName << endl; + + setXMLFile(m_rcFileName); + m_parentFactory->addClient(this); + + QWidget* tmp = m_parentFactory->container(m_menuName, this); + + if (!tmp) + RG_DEBUG << "BaseTool::createMenu(" << m_rcFileName + << ") : menu creation failed (name : " + << m_menuName << ")\n"; + + m_menu = dynamic_cast<QPopupMenu*>(tmp); +} + +bool EditTool::hasMenu() +{ + return !m_rcFileName.isEmpty(); +} + +} |