PageRenderTime 19ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/src/libtomahawk/playlist/topbar/searchbutton.h

http://github.com/tomahawk-player/tomahawk
C Header | 47 lines | 21 code | 8 blank | 18 comment | 0 complexity | 3e70195ae00feaac51dc990380213968 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-3-Clause, GPL-3.0, GPL-2.0
  1. /*
  2. * Copyright 2009 Benjamin C. Meyer <ben@meyerhome.net>
  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. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor,
  17. * Boston, MA 02110-1301 USA
  18. */
  19. #ifndef SEARCHBUTTON_H
  20. #define SEARCHBUTTON_H
  21. #include <qabstractbutton.h>
  22. #include "dllmacro.h"
  23. class QCompleter;
  24. class DLLEXPORT SearchButton : public QAbstractButton
  25. {
  26. Q_OBJECT
  27. public:
  28. SearchButton(QWidget *parent = 0);
  29. void setImage(const QImage &image);
  30. void setShowMenuTriangle(bool show);
  31. bool showMenuTriangle() const;
  32. void paintEvent(QPaintEvent *event);
  33. QSize sizeHint() const;
  34. private:
  35. QImage generateSearchImage(bool dropDown);
  36. QImage m_cache;
  37. bool m_showMenuTriangle;
  38. };
  39. #endif // SEARCHBUTTON_H