src/hbcore/gui/hbmainwindow.h
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 7 923ff622b8b9
child 21 4633027730f5
equal deleted inserted replaced
9:730c025d4b77 15:f378acbc9cfb
    41 
    41 
    42 class HB_CORE_EXPORT HbMainWindow : public QGraphicsView
    42 class HB_CORE_EXPORT HbMainWindow : public QGraphicsView
    43 {
    43 {
    44     Q_OBJECT
    44     Q_OBJECT
    45 
    45 
    46     Q_PROPERTY(Qt::Orientation orientation 
    46     Q_PROPERTY(Qt::Orientation orientation
    47                READ orientation
    47                READ orientation
    48                WRITE setOrientation
    48                WRITE setOrientation
    49                RESET unsetOrientation
    49                RESET unsetOrientation
    50                NOTIFY orientationChanged)
    50                NOTIFY orientationChanged)
       
    51 
       
    52     Q_PROPERTY(bool obscuredState READ isObscured)
    51 
    53 
    52 public:
    54 public:
    53     explicit HbMainWindow(QWidget *parent = 0, Hb::WindowFlags windowFlags = Hb::WindowFlagNone);
    55     explicit HbMainWindow(QWidget *parent = 0, Hb::WindowFlags windowFlags = Hb::WindowFlagNone);
    54     ~HbMainWindow();
    56     ~HbMainWindow();
    55 
    57 
    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())