Dooble
dooble_address_widget.h
1 /*
2 ** Copyright (c) 2008 - present, Alexis Megas.
3 ** All rights reserved.
4 **
5 ** Redistribution and use in source and binary forms, with or without
6 ** modification, are permitted provided that the following conditions
7 ** are met:
8 ** 1. Redistributions of source code must retain the above copyright
9 ** notice, this list of conditions and the following disclaimer.
10 ** 2. Redistributions in binary form must reproduce the above copyright
11 ** notice, this list of conditions and the following disclaimer in the
12 ** documentation and/or other materials provided with the distribution.
13 ** 3. The name of the author may not be used to endorse or promote products
14 ** derived from Dooble without specific prior written permission.
15 **
16 ** DOOBLE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 ** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 ** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 ** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 ** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 ** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 ** DOOBLE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 
28 #ifndef dooble_address_widget_h
29 #define dooble_address_widget_h
30 
31 #include <QLineEdit>
32 #include <QTextLayout>
33 #include <QUrl>
34 
35 #include "dooble_history.h"
36 
37 class QToolButton;
40 
41 class dooble_address_widget: public QLineEdit
42 {
43  Q_OBJECT
44 
45  public:
46  dooble_address_widget(QWidget *parent);
47  QRect information_rectangle(void) const;
48  QSize sizeHint(void) const;
49  bool event(QEvent *event);
50  void add_item(const QIcon &icon, const QUrl &url);
51  void complete(void);
52  void hide_popup(void);
53  void prepare_containers_for_url(const QUrl &url);
54  void setText(const QString &text);
55  void set_item_icon(const QIcon &icon, const QUrl &url);
56  void set_view(dooble_web_engine_view *view);
57 
58  protected:
59  void dropEvent(QDropEvent *event);
60  void keyPressEvent(QKeyEvent *event);
61  void resizeEvent(QResizeEvent *event);
62 
63  private:
64  QMenu *m_menu;
65  QToolButton *m_favorite;
66  QToolButton *m_information;
67  QToolButton *m_pull_down;
69  dooble_web_engine_view *m_view;
70  void prepare_icons(void);
71  void set_text_format(const QList<QTextLayout::FormatRange> &formats);
72 
73  private slots:
74  void slot_favorite(void);
75  void slot_favorite_changed(const QUrl &url, bool state);
76  void slot_favorites_cleared(void);
77  void slot_favorites_populated(void);
78  void slot_load_finished(bool ok);
79  void slot_load_started(void);
80  void slot_populate(const QListPairIconString &list);
81  void slot_return_pressed(void);
82  void slot_settings_applied(void);
83  void slot_show_site_information_menu(void);
84  void slot_text_edited(const QString &text);
85  void slot_url_changed(const QUrl &url);
86 
87  signals:
88  void favorite_changed(const QUrl &url, bool state);
89  void load_page(const QUrl &url);
90  void populated(void);
91  void pull_down_clicked(void);
92  void show_certificate_exception(void);
93  void show_site_cookies(void);
94 };
95 
96 #endif
Definition: dooble_address_widget.h:41
Definition: dooble_web_engine_view.h:35
Definition: dooble_address_widget_completer.h:38