Sayonara Player
LineEdit.h
1 /* LineEdit.h */
2 
3 /* Copyright (C) 2011-2020 Michael Lugmair (Lucio Carreras)
4  *
5  * This file is part of sayonara player
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef SAYONARA_LINEEDIT_H
22 #define SAYONARA_LINEEDIT_H
23 
24 #include <QLineEdit>
25 
26 #include "Utils/Pimpl.h"
27 #include "Gui/Utils/Widgets/WidgetTemplate.h"
28 
29 class QAction;
30 class QMenu;
31 class QContextMenuEvent;
32 
33 namespace Gui
34 {
39  class LineEdit :
40  public Gui::WidgetTemplate<QLineEdit>
41  {
42  Q_OBJECT
43  PIMPL(LineEdit)
44 
45  public:
46  LineEdit(QWidget* parent=nullptr);
47  ~LineEdit() override;
48 
49  private:
50  void initContextMenu();
51 
52  private slots:
53  void itemTextChanged(const QString& text);
54  void itemActionTriggered();
55  void removeSpecialCharsTriggered();
56 
57  protected:
58  void languageChanged() override;
59 
60  void keyPressEvent(QKeyEvent* event) override;
61  void contextMenuEvent(QContextMenuEvent* event) override;
62  };
63 }
64 
65 #endif // SAYONARA_LINEEDIT_H
Gui::WidgetTemplate
Template for Sayonara Widgets. This template is responsible for holding a reference to the settings.
Definition: WidgetTemplate.h:87
Gui::LineEdit
GUI class for String fields meant to convert content to first upper case by a context menu.
Definition: LineEdit.h:41