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; |
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( ) ) ); |