diff --git a/plugins/live_tool/CMakeLists.txt b/plugins/live_tool/CMakeLists.txt deleted file mode 100644 index 85a1c5346..000000000 --- a/plugins/live_tool/CMakeLists.txt +++ /dev/null @@ -1,3 +0,0 @@ -INCLUDE(BuildPlugin) - -BUILD_PLUGIN(livetool live_tool.cpp live_tool.h EMBEDDED_RESOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.png) diff --git a/plugins/live_tool/artwork.png b/plugins/live_tool/artwork.png deleted file mode 100644 index 5e36820fa..000000000 Binary files a/plugins/live_tool/artwork.png and /dev/null differ diff --git a/plugins/live_tool/live_tool.cpp b/plugins/live_tool/live_tool.cpp deleted file mode 100644 index 804ae9895..000000000 --- a/plugins/live_tool/live_tool.cpp +++ /dev/null @@ -1,208 +0,0 @@ -/* - * live_tool.cpp - tool for live performance - * - * Copyright (c) 2006-2008 Javier Serrano Polo - * - * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net - * - * 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. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program (see COPYING); if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA. - * - */ - - -#include "live_tool.h" -#include "bb_track_container.h" -#include "engine.h" -#include "song.h" - -#include -#include - -#undef SINGLE_SOURCE_COMPILE -#include "embed.cpp" - - - - -extern "C" -{ - -plugin::descriptor PLUGIN_EXPORT livetool_plugin_descriptor = -{ - STRINGIFY_PLUGIN_NAME( PLUGIN_NAME ), - "LiveTool", - QT_TRANSLATE_NOOP( "pluginBrowser", - "Tool for live performance" ), - "Javier Serrano Polo ", - 0x0100, - plugin::Tool, - new pluginPixmapLoader( "logo" ), - NULL, - NULL -} ; - - -// neccessary for getting instance out of shared lib -plugin * PLUGIN_EXPORT lmms_plugin_main( model * _parent, void * _data ) -{ - return( new liveTool( _parent ) ); -} - -} - - - - -liveTool::liveTool( model * _parent ) : - tool( &livetool_plugin_descriptor, _parent ) -{ -} - - - - -liveTool::~liveTool() -{ -} - - - - -QString liveTool::nodeName( void ) const -{ - return( livetool_plugin_descriptor.name ); -} - - - - - - - -liveToolView::liveToolView( tool * _tool ) : - toolView( _tool ) -{ - const QPixmap background = PLUGIN_NAME::getIconPixmap( "artwork" ); - - setAutoFillBackground( TRUE ); - QPalette pal; - pal.setBrush( backgroundRole(), background ); - setPalette( pal ); - setFixedSize( background.size() ); - - setWhatsThis( tr( - "This tool is intended to be used in live performances, though " - "you can use it for music production as well.\n" - "The following keys will work only if this window is active.\n" - "The spacebar toggles play and pause in the Song Editor.\n" - "F1-F10 keys mute the first 10 instruments in the " - "Beat+Bassline Editor." ) ); - - parentWidget()->hide(); - parentWidget()->layout()->setSizeConstraint( QLayout::SetFixedSize ); - - installEventFilter( this ); -} - - - - -liveToolView::~liveToolView() -{ -} - - - - -void liveToolView::keyPressEvent( QKeyEvent * _ke ) -{ - switch( _ke->key() ) - { - case Qt::Key_Space: - if( engine::getSong()->isPlaying() ) - { - engine::getSong()->pause(); - } - else if( engine::getSong()->isPaused() && - engine::getSong()->playMode() == - song::Mode_PlaySong ) - { - engine::getSong()->resumeFromPause(); - } - else - { - engine::getSong()->play(); - } - break; - case Qt::Key_F1: - case Qt::Key_F2: - case Qt::Key_F3: - case Qt::Key_F4: - case Qt::Key_F5: - case Qt::Key_F6: - case Qt::Key_F7: - case Qt::Key_F8: - case Qt::Key_F9: - case Qt::Key_F10: - case Qt::Key_F11: - case Qt::Key_F12: - toggleInstrument( _ke->key() - Qt::Key_F1 ); - _ke->accept(); - break; - default: - _ke->ignore(); - break; - } -} - - - - -bool liveToolView::eventFilter ( QObject * watched, QEvent * event ) -{ - if( event->type() == QEvent::KeyPress ) - { - QKeyEvent * ke = static_cast( event ); - keyPressEvent( ke ); - return true; - } - return toolView::eventFilter( watched, event ); -} - - - - -void liveToolView::mousePressEvent( QMouseEvent * _me ) -{ - // MDI window gets focus otherwise - setFocus(); - _me->accept(); - // somehow need to grab keyboard for also grabbing global shortcuts -} - - - - -void liveToolView::toggleInstrument( int _n ) -{ - if( _n < engine::getBBTrackContainer()->tracks().count() ) - { - track * t = engine::getBBTrackContainer()->tracks().at( _n ); - t->setMuted( !t->isMuted() ); - } -} - - diff --git a/plugins/live_tool/live_tool.h b/plugins/live_tool/live_tool.h deleted file mode 100644 index 1afa1ac52..000000000 --- a/plugins/live_tool/live_tool.h +++ /dev/null @@ -1,69 +0,0 @@ -/* - * live_tool.h - declaration of class liveTool, for live performance - * - * Copyright (c) 2006-2008 Javier Serrano Polo - * - * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net - * - * 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. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * - * You should have received a copy of the GNU General Public - * License along with this program (see COPYING); if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301 USA. - * - */ - - -#ifndef _LIVE_TOOL_H -#define _LIVE_TOOL_H - - -#include "tool.h" - - -class liveToolView : public toolView -{ -public: - liveToolView( tool * _tool ); - virtual ~liveToolView(); - -virtual bool eventFilter ( QObject * watched, QEvent * event ); -protected: - virtual void keyPressEvent( QKeyEvent * _ke ); - virtual void mousePressEvent( QMouseEvent * _me ); - -private: - void toggleInstrument( int _n ); - -} ; - - - - -class liveTool : public tool -{ -public: - liveTool( model * _parent ); - virtual ~liveTool(); - - virtual QString nodeName( void ) const; - virtual pluginView * instantiateView( QWidget * ) - { - return( new liveToolView( this ) ); - } - -} ; - - - - -#endif diff --git a/plugins/live_tool/logo.png b/plugins/live_tool/logo.png deleted file mode 100644 index 6b4a87080..000000000 Binary files a/plugins/live_tool/logo.png and /dev/null differ