src/hbwidgets/widgets/hbcombobox_p.h
changeset 34 ed14f46c0e55
parent 7 923ff622b8b9
equal deleted inserted replaced
31:7516d6d86cf5 34:ed14f46c0e55
    87     void currentIndexChanged( const QModelIndex &index );
    87     void currentIndexChanged( const QModelIndex &index );
    88     QModelIndex findData( const QVariant &data ) const;
    88     QModelIndex findData( const QVariant &data ) const;
    89     void showPopup( QAbstractItemModel* aModel, QModelIndex aIndex = QModelIndex( ) );
    89     void showPopup( QAbstractItemModel* aModel, QModelIndex aIndex = QModelIndex( ) );
    90     void createDropDown( );
    90     void createDropDown( );
    91     void calculateListItemHeight( );
    91     void calculateListItemHeight( );
       
    92     void resetGeometryChangeFlag( );
       
    93     void showDismissEffect( );
    92 
    94 
    93 public:
    95 public:
    94     HbCustomLineEdit* mLineEdit;
    96     HbCustomLineEdit* mLineEdit;
    95     QGraphicsItem* mTextItem;
    97     QGraphicsItem* mTextItem;
    96     QGraphicsItem *mButton;
    98     QGraphicsItem *mButton;
   110     bool mHasUpEffect;
   112     bool mHasUpEffect;
   111     QString mText;
   113     QString mText;
   112     qreal mListItemHeight;
   114     qreal mListItemHeight;
   113     int mDropDownRowsInPortrait;
   115     int mDropDownRowsInPortrait;
   114     int mDropDownRowsInLandscape;
   116     int mDropDownRowsInLandscape;
       
   117     QMap< QGraphicsWidget *, bool > widgetGeometryChange;
   115 };
   118 };
   116 
   119 
   117 class HbComboListViewItem : public HbListViewItem
   120 class HbComboListViewItem : public HbListViewItem
   118 {
   121 {
   119     Q_OBJECT
   122     Q_OBJECT
   136         comboBoxPrivate( comboPriv ),
   139         comboBoxPrivate( comboPriv ),
   137         VkbLaunched( false ) {
   140         VkbLaunched( false ) {
   138     }
   141     }
   139 
   142 
   140     ~HbCustomLineEdit() {
   143     ~HbCustomLineEdit() {
   141         HbEditorInterface editorInterface( this );
       
   142         HbVkbHost *host = editorInterface.vkbHost( );
       
   143         if( host ) {
       
   144             host->disconnect();
       
   145         }
       
   146     }
       
   147 
       
   148     void setLongPressEnabled( bool enable = true ) {
       
   149         if( enable ) {
       
   150             scrollArea( )->setLongPressEnabled( true );
       
   151         } else {
       
   152             scrollArea( )->setLongPressEnabled( false );
       
   153         }
       
   154     }
   144     }
   155 
   145 
   156 protected:
   146 protected:
   157     void focusInEvent( QFocusEvent *event ) {
   147     void focusInEvent( QFocusEvent *event ) {
   158         HbEditorInterface editorInterface( this );
   148         HbEditorInterface editorInterface( this );
   159         HbVkbHost *host = editorInterface.vkbHost( );
   149         HbVkbHost *host = editorInterface.vkbHost( );
   160         if ( host && !VkbLaunched ) {
   150         if ( host && comboBoxPrivate->mDropDown && !VkbLaunched ) {
   161             VkbLaunched = true;
   151             VkbLaunched = true;
   162             connect( host, SIGNAL( keypadClosed (  ) ), comboBoxPrivate->mDropDown,
   152             connect( host, SIGNAL( keypadClosed (  ) ), comboBoxPrivate->mDropDown,
   163                 SLOT( keypadClosed(  ) ) );
   153                 SLOT( keypadClosed(  ) ) );
   164             connect( host, SIGNAL( keypadOpened (  ) ), comboBoxPrivate->mDropDown,
   154             connect( host, SIGNAL( keypadOpened (  ) ), comboBoxPrivate->mDropDown,
   165                 SLOT( keypadOpened(  ) ) );
   155                 SLOT( keypadOpened(  ) ) );