mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-11 02:26:19 -04:00
Implemented context menu for ResourcesBrowser with various actions inside depending on selected item. Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
75 lines
1.7 KiB
C++
75 lines
1.7 KiB
C++
/*
|
|
* resources_browser.h - header file for ResourcesBrowser
|
|
*
|
|
* Copyright (c) 2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* 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 _RESOURCES_BROWSER_H
|
|
#define _RESOURCES_BROWSER_H
|
|
|
|
#include "side_bar_widget.h"
|
|
|
|
class QAction;
|
|
class ResourcesItem;
|
|
class ResourcesTreeModel;
|
|
class ResourcesTreeView;
|
|
|
|
|
|
class ResourcesBrowser : public sideBarWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum Actions
|
|
{
|
|
EditProperties,
|
|
LoadProject,
|
|
LoadInNewTrackSongEditor,
|
|
LoadInNewTrackBBEditor,
|
|
LoadInActiveInstrumentTrack,
|
|
DownloadIntoCollection,
|
|
UploadToWWW,
|
|
DeleteLocalResource,
|
|
ImportFile,
|
|
NumActions
|
|
} ;
|
|
|
|
ResourcesBrowser( QWidget * _parent );
|
|
virtual ~ResourcesBrowser();
|
|
|
|
|
|
private slots:
|
|
void showContextMenu( const QPoint & _pos );
|
|
|
|
|
|
private:
|
|
void triggerAction( Actions _action, ResourcesItem * _item );
|
|
|
|
QAction * m_actions[NumActions];
|
|
|
|
ResourcesTreeModel * m_treeModel;
|
|
ResourcesTreeView * m_treeView;
|
|
|
|
} ;
|
|
|
|
|
|
#endif
|