70 QRectF layoutRect() const; |
72 QRectF layoutRect() const; |
71 |
73 |
72 void setBackgroundImageName(Qt::Orientation orientation, const QString &name); |
74 void setBackgroundImageName(Qt::Orientation orientation, const QString &name); |
73 QString backgroundImageName(Qt::Orientation orientation) const; |
75 QString backgroundImageName(Qt::Orientation orientation) const; |
74 |
76 |
|
77 void setBackgroundImageMode(Hb::BackgroundImageMode mode); |
|
78 Hb::BackgroundImageMode backgroundImageMode() const; |
|
79 |
75 void setAutomaticOrientationEffectEnabled(bool enabled = true); |
80 void setAutomaticOrientationEffectEnabled(bool enabled = true); |
76 bool automaticOrientationEffectEnabled() const; |
81 bool automaticOrientationEffectEnabled() const; |
77 |
82 |
|
83 bool isObscured() const; |
|
84 |
78 public slots: |
85 public slots: |
79 void broadcastEvent( int eventType ); |
86 void broadcastEvent(int eventType); |
80 |
87 |
81 signals: |
88 signals: |
82 void viewReady(); |
89 void viewReady(); |
83 void aboutToChangeView(HbView *oldView, HbView *newView); |
90 void aboutToChangeView(HbView *oldView, HbView *newView); |
84 void currentViewChanged(HbView *view); |
91 void currentViewChanged(HbView *view); |
85 void aboutToChangeOrientation(); |
92 void aboutToChangeOrientation(); |
86 void aboutToChangeOrientation(Qt::Orientation newOrientation, bool animated); |
93 void aboutToChangeOrientation(Qt::Orientation newOrientation, bool animated); |
87 void orientationChanged(Qt::Orientation orientation); |
94 void orientationChanged(Qt::Orientation orientation); |
|
95 void obscured(); |
|
96 void revealed(); |
88 |
97 |
89 protected: |
98 protected: |
90 void changeEvent(QEvent *event); |
99 void changeEvent(QEvent *event); |
91 void closeEvent(QCloseEvent *event); |
100 void closeEvent(QCloseEvent *event); |
92 void keyPressEvent(QKeyEvent *event); |
101 void keyPressEvent(QKeyEvent *event); |
93 void keyReleaseEvent(QKeyEvent *event); |
102 void keyReleaseEvent(QKeyEvent *event); |
94 void resizeEvent(QResizeEvent *event); |
103 void resizeEvent(QResizeEvent *event); |
95 void customEvent(QEvent *event); |
104 void customEvent(QEvent *event); |
96 void scrollContentsBy(int dx, int dy); |
105 void scrollContentsBy(int dx, int dy); |
97 void paintEvent(QPaintEvent *event); |
106 void paintEvent(QPaintEvent *event); |
|
107 void showEvent(QShowEvent *event); |
|
108 bool event(QEvent *event); |
98 |
109 |
99 HbMainWindowPrivate *const d_ptr; |
110 HbMainWindowPrivate *const d_ptr; |
100 |
111 |
101 private: |
112 private: |
102 Q_DISABLE_COPY(HbMainWindow) |
113 Q_DISABLE_COPY(HbMainWindow) |
103 Q_DECLARE_PRIVATE_D(d_ptr, HbMainWindow) |
114 Q_DECLARE_PRIVATE_D(d_ptr, HbMainWindow) |
104 Q_PRIVATE_SLOT(d_func(), void rootItemFirstPhaseDone(const HbEffect::EffectStatus& status)) |
115 Q_PRIVATE_SLOT(d_func(), void rootItemFirstPhaseDone(const HbEffect::EffectStatus &status)) |
105 Q_PRIVATE_SLOT(d_func(), void rootItemFinalPhaseDone(const HbEffect::EffectStatus& status)) |
116 Q_PRIVATE_SLOT(d_func(), void rootItemFinalPhaseDone(const HbEffect::EffectStatus &status)) |
106 Q_PRIVATE_SLOT(d_func(), void orientationEffectFinished(const HbEffect::EffectStatus& status)) |
117 Q_PRIVATE_SLOT(d_func(), void orientationEffectFinished(const HbEffect::EffectStatus &status)) |
107 Q_PRIVATE_SLOT(d_func(), void _q_viewChanged()) |
118 Q_PRIVATE_SLOT(d_func(), void _q_viewChanged()) |
108 Q_PRIVATE_SLOT(d_func(), void _q_viewRemoved(QGraphicsWidget *)) |
119 Q_PRIVATE_SLOT(d_func(), void _q_viewRemoved(QGraphicsWidget *)) |
109 Q_PRIVATE_SLOT(d_func(), void _q_viewTitleChanged(const QString &)) |
120 Q_PRIVATE_SLOT(d_func(), void _q_viewTitleChanged(const QString &)) |
110 Q_PRIVATE_SLOT(d_func(), void _q_viewToolBarChanged()) |
121 Q_PRIVATE_SLOT(d_func(), void _q_viewToolBarChanged()) |
111 Q_PRIVATE_SLOT(d_func(), void _q_viewDockWidgetChanged()) |
122 Q_PRIVATE_SLOT(d_func(), void _q_viewDockWidgetChanged()) |