|
1 /* |
|
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * |
|
5 * This program is free software: you can redistribute it and/or modify |
|
6 * it under the terms of the GNU Lesser General Public License as published by |
|
7 * the Free Software Foundation, version 2.1 of the License. |
|
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 Lesser General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU Lesser General Public License |
|
15 * along with this program. If not, |
|
16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/". |
|
17 * |
|
18 * Description: |
|
19 * |
|
20 */ |
|
21 #ifndef __GINEBRA_CONTENTTOOLBARSNIPPET_H |
|
22 #define __GINEBRA_CONTENTTOOLBARSNIPPET_H |
|
23 |
|
24 #include <QtGui> |
|
25 #include "ActionButtonSnippet.h" |
|
26 #include "ToolbarSnippet.h" |
|
27 #include "WebChromeContainerSnippet.h" |
|
28 |
|
29 class QTimer; |
|
30 class ChromeSnippet; |
|
31 |
|
32 namespace GVA { |
|
33 |
|
34 class ContentToolbarSnippet : public ToolbarSnippet |
|
35 { |
|
36 Q_OBJECT |
|
37 public: |
|
38 ContentToolbarSnippet(const QString& elementId, ChromeWidget * chrome, const QRectF& ownerArea, const QWebElement & element, QGraphicsWidget * widget); |
|
39 virtual ~ContentToolbarSnippet(); |
|
40 |
|
41 WebChromeContainerSnippet * middleSnippet() { return m_middleSnippet;} |
|
42 Q_SIGNALS: |
|
43 void menuButtonSelected(); |
|
44 void menuButtonCanceled(); |
|
45 |
|
46 private Q_SLOTS: |
|
47 void onChromeComplete(); |
|
48 void handleZoomButton(); |
|
49 void handleMenuButton(); |
|
50 void handleMVButton(); |
|
51 void handleToggleTBButton(); |
|
52 void childAdded(ChromeSnippet* child); |
|
53 void updateOwnerArea(); |
|
54 void updateSize(QSize ); |
|
55 void onMouseEvent( QEvent::Type type); |
|
56 void onSnippetMouseEvent( QEvent::Type type); |
|
57 void onHidden(); |
|
58 void onShown(); |
|
59 void onInactivityTimer(); |
|
60 void onExternalMouse(int type, const QString & name, const QString & description); |
|
61 void onAspectChanged( ); |
|
62 |
|
63 |
|
64 private: |
|
65 void addChild(ChromeSnippet * child) ; |
|
66 void manageChildren(ChromeItem * it); |
|
67 |
|
68 void addZoomButton(QAction * action, ActionButtonSnippet* button); |
|
69 void addMenuButton(QAction * action, ActionButtonSnippet* button); |
|
70 void addMostVisitedButton(QAction * action, ActionButtonSnippet* button); |
|
71 void addToggleTBButton(QAction * action, ActionButtonSnippet* button); |
|
72 void setAction(ChromeSnippet * s); |
|
73 void connectHideShowSignals(ActionButtonSnippet * button) ; |
|
74 void addActionInfo(QString id); |
|
75 |
|
76 void setWidth(int); |
|
77 void resetTimer(bool start=true); |
|
78 void hideOtherPopups(QString); |
|
79 |
|
80 |
|
81 |
|
82 WebChromeContainerSnippet* m_middleSnippet; |
|
83 QTimer* m_subChromeInactiveTimer; |
|
84 ChromeSnippet * m_subChromeSnippet; |
|
85 |
|
86 }; |
|
87 |
|
88 } // end of namespace GVA |
|
89 |
|
90 #endif // __GINEBRA_CONTENTTOOLBARSNIPPET_H |