src/hbwidgets/widgets/hbcombobox_p.h
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 7 923ff622b8b9
child 21 4633027730f5
child 34 ed14f46c0e55
--- a/src/hbwidgets/widgets/hbcombobox_p.h	Thu Jul 15 14:03:49 2010 +0100
+++ b/src/hbwidgets/widgets/hbcombobox_p.h	Thu Jul 22 16:36:53 2010 +0100
@@ -66,7 +66,7 @@
     HbComboBoxPrivate( );
     ~HbComboBoxPrivate( );
     void init( );
-    void createPrimitives();
+    void createPrimitives( );
     void setModel( QAbstractItemModel * model );
     void positionDropDown( );
     void setCompletion( bool completion );
@@ -88,9 +88,9 @@
     QModelIndex findData( const QVariant &data ) const;
     void showPopup( QAbstractItemModel* aModel, QModelIndex aIndex = QModelIndex( ) );
     void createDropDown( );
-    void calculateListItemHeight();
+    void calculateListItemHeight( );
 
-public:    
+public:
     HbCustomLineEdit* mLineEdit;
     QGraphicsItem* mTextItem;
     QGraphicsItem *mButton;
@@ -118,14 +118,12 @@
 {
     Q_OBJECT
 public:
-    explicit HbComboListViewItem ( QGraphicsItem *parent = 0 ) : HbListViewItem( parent )
-    {
+    explicit HbComboListViewItem ( QGraphicsItem *parent = 0 ) : HbListViewItem( parent ) {
     }
 
-    HbAbstractViewItem *createItem()
-    {
-        return new HbComboListViewItem(*this);
-    }   
+    HbAbstractViewItem *createItem( ) {
+        return new HbComboListViewItem( *this );
+    }
 };
 
 class HbCustomLineEdit : public HbLineEdit
@@ -133,34 +131,40 @@
 
     Q_OBJECT
 public:
-    HbCustomLineEdit( QGraphicsWidget *parent, HbComboBoxPrivate *comboPriv )
-        :HbLineEdit( *new HbLineEditPrivate, parent ),
+    HbCustomLineEdit( QGraphicsWidget *parent, HbComboBoxPrivate *comboPriv ) :
+        HbLineEdit( *new HbLineEditPrivate, parent ),
         comboBoxPrivate( comboPriv ),
-        VkbLaunched( false )
-    {
-        
+        VkbLaunched( false ) {
+    }
+
+    ~HbCustomLineEdit() {
+        HbEditorInterface editorInterface( this );
+        HbVkbHost *host = editorInterface.vkbHost( );
+        if( host ) {
+            host->disconnect();
+        }
     }
-void setLongPressEnabled( bool enable = true ) 
-     {
-         if( enable ) {
-             scrollArea( )->setLongPressEnabled( true );
-         } else {
-             scrollArea( )->setLongPressEnabled( false );
-         }
-     }
+
+    void setLongPressEnabled( bool enable = true ) {
+        if( enable ) {
+            scrollArea( )->setLongPressEnabled( true );
+        } else {
+            scrollArea( )->setLongPressEnabled( false );
+        }
+    }
+
 protected:
-    void focusInEvent( QFocusEvent *event )
-    {
-            HbEditorInterface editorInterface(this);
-            HbVkbHost *host = editorInterface.vkbHost();
-            if ( host && !VkbLaunched ) {
-               VkbLaunched = true;
-               connect( host, SIGNAL( keypadClosed (  ) ), comboBoxPrivate->mDropDown,
-                       SLOT( keypadClosed(  ) ) );
-               connect( host, SIGNAL( keypadOpened (  ) ), comboBoxPrivate->mDropDown,
-                       SLOT( keypadOpened(  ) ) );
-            }
-            HbLineEdit::focusInEvent(event);
+    void focusInEvent( QFocusEvent *event ) {
+        HbEditorInterface editorInterface( this );
+        HbVkbHost *host = editorInterface.vkbHost( );
+        if ( host && !VkbLaunched ) {
+            VkbLaunched = true;
+            connect( host, SIGNAL( keypadClosed (  ) ), comboBoxPrivate->mDropDown,
+                SLOT( keypadClosed(  ) ) );
+            connect( host, SIGNAL( keypadOpened (  ) ), comboBoxPrivate->mDropDown,
+                SLOT( keypadOpened(  ) ) );
+        }
+        HbLineEdit::focusInEvent( event );
     }
 private:
     HbComboBoxPrivate *comboBoxPrivate;