123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /*
- * TrackContentWidget.h - declaration of TrackContentWidget class
- *
- * Copyright (c) 2004-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
- *
- * This file is part of LMMS - https://lmms.io
- *
- * 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 TRACK_CONTENT_WIDGET_H
- #define TRACK_CONTENT_WIDGET_H
- #include <QWidget>
- #include "JournallingObject.h"
- #include "TimePos.h"
- class QMimeData;
- class Track;
- class ClipView;
- class TrackView;
- class TrackContentWidget : public QWidget, public JournallingObject
- {
- Q_OBJECT
- // qproperties for track background gradients
- Q_PROPERTY( QBrush darkerColor READ darkerColor WRITE setDarkerColor )
- Q_PROPERTY( QBrush lighterColor READ lighterColor WRITE setLighterColor )
- Q_PROPERTY( QBrush gridColor READ gridColor WRITE setGridColor )
- Q_PROPERTY( QBrush embossColor READ embossColor WRITE setEmbossColor )
- public:
- TrackContentWidget( TrackView * parent );
- virtual ~TrackContentWidget();
- /*! \brief Updates the background tile pixmap. */
- void updateBackground();
- void addClipView( ClipView * clipv );
- void removeClipView( ClipView * clipv );
- void removeClipView( int clipNum )
- {
- if( clipNum >= 0 && clipNum < m_clipViews.size() )
- {
- removeClipView( m_clipViews[clipNum] );
- }
- }
- bool canPasteSelection( TimePos clipPos, const QDropEvent *de );
- bool canPasteSelection( TimePos clipPos, const QMimeData *md, bool allowSameBar = false );
- bool pasteSelection( TimePos clipPos, QDropEvent * de );
- bool pasteSelection( TimePos clipPos, const QMimeData * md, bool skipSafetyCheck = false );
- TimePos endPosition( const TimePos & posStart );
- // qproperty access methods
- QBrush darkerColor() const;
- QBrush lighterColor() const;
- QBrush gridColor() const;
- QBrush embossColor() const;
- void setDarkerColor( const QBrush & c );
- void setLighterColor( const QBrush & c );
- void setGridColor( const QBrush & c );
- void setEmbossColor( const QBrush & c);
- public slots:
- void update();
- void changePosition( const TimePos & newPos = TimePos( -1 ) );
- protected:
- enum ContextMenuAction
- {
- Paste
- };
- void contextMenuEvent( QContextMenuEvent * cme ) override;
- void contextMenuAction( QContextMenuEvent * cme, ContextMenuAction action );
- void dragEnterEvent( QDragEnterEvent * dee ) override;
- void dropEvent( QDropEvent * de ) override;
- void mousePressEvent( QMouseEvent * me ) override;
- void mouseReleaseEvent( QMouseEvent * me ) override;
- void paintEvent( QPaintEvent * pe ) override;
- void resizeEvent( QResizeEvent * re ) override;
- QString nodeName() const override
- {
- return "trackcontentwidget";
- }
- void saveSettings( QDomDocument& doc, QDomElement& element ) override
- {
- Q_UNUSED(doc)
- Q_UNUSED(element)
- }
- void loadSettings( const QDomElement& element ) override
- {
- Q_UNUSED(element)
- }
- private:
- Track * getTrack();
- TimePos getPosition( int mouseX );
- TrackView * m_trackView;
- typedef QVector<ClipView *> clipViewVector;
- clipViewVector m_clipViews;
- QPixmap m_background;
- // qproperty fields
- QBrush m_darkerColor;
- QBrush m_lighterColor;
- QBrush m_gridColor;
- QBrush m_embossColor;
- } ;
- #endif
|