add mp3 and ogg torrent url info to JamendoAlbum
[amarok.git] / src / browserToolBar.h
blobabc7fdd7c1ccabb4a52ed40bb22c84bbe13ed253
1 /***************************************************************************
2 * Copyright (C) 2004, 2005 Max Howell <max.howell@methylblue.com> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 ***************************************************************************/
11 #ifndef BROWSER_TOOLBAR_H
12 #define BROWSER_TOOLBAR_H
14 #include "toolbar.h"
16 namespace Browser
18 class ToolBar : public Amarok::ToolBar
20 public:
21 ToolBar( QWidget *parent )
22 : Amarok::ToolBar( parent )
24 setObjectName( "notMainToolBar" );
25 setMovable( false );
26 setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Minimum );
27 setIconDimensions( 16 );
28 setContextMenuPolicy( Qt::NoContextMenu );
33 #endif