diff --git a/data/themes/default/hand.png b/data/themes/default/hand.png new file mode 100644 index 000000000..5fad2852d Binary files /dev/null and b/data/themes/default/hand.png differ diff --git a/src/core/track.cpp b/src/core/track.cpp index 5152d17de..15380e795 100644 --- a/src/core/track.cpp +++ b/src/core/track.cpp @@ -325,6 +325,7 @@ trackContentObjectView::trackContentObjectView( trackContentObject * _tco, setAttribute( Qt::WA_DeleteOnClose ); setFocusPolicy( Qt::StrongFocus ); + setCursor( QCursor( embed::getIconPixmap( "hand" ), 0, 0 ) ); move( 0, 1 ); show(); diff --git a/src/gui/automatable_model_view.cpp b/src/gui/automatable_model_view.cpp index c929594b4..3a7bba319 100644 --- a/src/gui/automatable_model_view.cpp +++ b/src/gui/automatable_model_view.cpp @@ -43,6 +43,7 @@ automatableModelView::automatableModelView( ::model * _model, m_unit( QString::null ) { widget()->setAcceptDrops( TRUE ); + widget()->setCursor( QCursor( embed::getIconPixmap( "hand" ), 0, 0 ) ); } diff --git a/src/gui/fx_mixer_view.cpp b/src/gui/fx_mixer_view.cpp index ded2ff27c..2ed38dbfc 100644 --- a/src/gui/fx_mixer_view.cpp +++ b/src/gui/fx_mixer_view.cpp @@ -56,6 +56,7 @@ public: { setFixedSize( 32, 232 ); setAttribute( Qt::WA_OpaquePaintEvent, TRUE ); + setCursor( QCursor( embed::getIconPixmap( "hand" ), 0, 0 ) ); } virtual void paintEvent( QPaintEvent * ) diff --git a/src/gui/widgets/fade_button.cpp b/src/gui/widgets/fade_button.cpp index 4592f94cd..6a9cb44ff 100644 --- a/src/gui/widgets/fade_button.cpp +++ b/src/gui/widgets/fade_button.cpp @@ -3,7 +3,7 @@ /* * fade_button.cpp - implementation of fade-button * - * Copyright (c) 2005-2007 Tobias Doerffel + * Copyright (c) 2005-2008 Tobias Doerffel * * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net * @@ -30,6 +30,7 @@ #include #include +#include "embed.h" #include "fade_button.h" #include "update_event.h" @@ -41,6 +42,7 @@ fadeButton::fadeButton( const QColor & _normal_color, m_normalColor( _normal_color ), m_activatedColor( _activated_color ) { + setCursor( QCursor( embed::getIconPixmap( "hand" ), 0, 0 ) ); } diff --git a/src/gui/widgets/name_label.cpp b/src/gui/widgets/name_label.cpp index 218934f98..27fc1d414 100644 --- a/src/gui/widgets/name_label.cpp +++ b/src/gui/widgets/name_label.cpp @@ -32,6 +32,7 @@ #include "name_label.h" +#include "embed.h" #include "rename_dialog.h" #include "bb_track_container.h" #include "bb_track.h" @@ -46,6 +47,7 @@ nameLabel::nameLabel( const QString & _initial_name, QWidget * _parent ) : m_pixmap(), m_pixmapFile( "" ) { + setCursor( QCursor( embed::getIconPixmap( "hand" ), 0, 0 ) ); } @@ -201,7 +203,6 @@ void nameLabel::paintEvent( QPaintEvent * ) QPainter p( this ); p.fillRect( rect(), parentWidget()->palette().color( backgroundRole() ) ); - p.setFont( pointSize<9>( p.font() ) ); int x = 4; if( m_pixmap.isNull() == FALSE )