/src/libtomahawk/playlist/topbar/lineedit.h

http://github.com/tomahawk-player/tomahawk · C Header · 91 lines · 40 code · 14 blank · 37 comment · 0 complexity · 1e199437f7301cd245e0b770801f4980 MD5 · raw file

  1. /**
  2. * Copyright (c) 2008 - 2009, Benjamin C. Meyer <ben@meyerhome.net>
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * 3. Neither the name of the Benjamin Meyer nor the names of its contributors
  13. * may be used to endorse or promote products derived from this software
  14. * without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  20. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  22. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  23. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26. * SUCH DAMAGE.
  27. */
  28. #ifndef LINEEDIT_H
  29. #define LINEEDIT_H
  30. #include <QLineEdit>
  31. #include "dllmacro.h"
  32. class QHBoxLayout;
  33. /*
  34. LineEdit is a subclass of QLineEdit that provides an easy and simple
  35. way to add widgets on the left or right hand side of the text.
  36. The layout of the widgets on either side are handled by a QHBoxLayout.
  37. You can set the spacing around the widgets with setWidgetSpacing().
  38. As widgets are added to the class they are inserted from the outside
  39. into the center of the widget.
  40. */
  41. class SideWidget;
  42. class DLLEXPORT LineEdit : public QLineEdit
  43. {
  44. Q_OBJECT
  45. Q_PROPERTY(QString inactiveText READ inactiveText WRITE setInactiveText)
  46. public:
  47. enum WidgetPosition {
  48. LeftSide,
  49. RightSide
  50. };
  51. LineEdit(QWidget *parent = 0);
  52. LineEdit(const QString &contents, QWidget *parent = 0);
  53. void addWidget(QWidget *widget, WidgetPosition position);
  54. void removeWidget(QWidget *widget);
  55. void setWidgetSpacing(int spacing);
  56. int widgetSpacing() const;
  57. int textMargin(WidgetPosition position) const;
  58. QString inactiveText() const;
  59. void setInactiveText(const QString &text);
  60. void paintEvent(QPaintEvent *event);
  61. protected:
  62. void resizeEvent(QResizeEvent *event);
  63. bool event(QEvent *event);
  64. protected slots:
  65. void updateTextMargins();
  66. private:
  67. void init();
  68. void updateSideWidgetLocations();
  69. SideWidget *m_leftWidget;
  70. SideWidget *m_rightWidget;
  71. QHBoxLayout *m_leftLayout;
  72. QHBoxLayout *m_rightLayout;
  73. QString m_inactiveText;
  74. };
  75. #endif // LINEEDIT_H