PageRenderTime 24ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/src/libtomahawk/widgets/headerbreadcrumb.h

http://github.com/tomahawk-player/tomahawk
C Header | 41 lines | 15 code | 6 blank | 20 comment | 0 complexity | d795cb4b2af6bdc6de2300e8b1919cd4 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-3-Clause, GPL-3.0, GPL-2.0
  1. /* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
  2. *
  3. * Copyright 2011, Casey Link <unnamedrambler@gmail.com>
  4. *
  5. * Tomahawk is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * Tomahawk is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef HEADERBREADCRUMB_H
  19. #define HEADERBREADCRUMB_H
  20. #include "breadcrumbbar.h"
  21. class QPaintEvent;
  22. /**
  23. * \brief a bread crumb widget with Tomahawk's distinctive header style
  24. */
  25. class HeaderBreadCrumb : public BreadcrumbBar
  26. {
  27. Q_OBJECT
  28. public:
  29. HeaderBreadCrumb( BreadcrumbButtonFactory* buttonFactory, QWidget* parent = 0 );
  30. HeaderBreadCrumb( QWidget* parent = 0 );
  31. ~HeaderBreadCrumb();
  32. protected:
  33. virtual void paintEvent( QPaintEvent* event );
  34. };
  35. #endif