src/hbwidgets/editors/hblineedit_p.cpp
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 7 923ff622b8b9
child 21 4633027730f5
child 34 ed14f46c0e55
--- a/src/hbwidgets/editors/hblineedit_p.cpp	Thu Jul 15 14:03:49 2010 +0100
+++ b/src/hbwidgets/editors/hblineedit_p.cpp	Thu Jul 22 16:36:53 2010 +0100
@@ -36,7 +36,6 @@
 
 #include "hblineedit_p.h"
 #include "hblineedit.h"
-#include "hbmeshlayout_p.h"
 #include "hbcolorscheme.h"
 
 #include <QTextDocument>
@@ -58,7 +57,9 @@
     clearOnEdit(false),
     emitTextChanged(true),
     adjustFontSizeToFitHeight(false),
-    stretchedToLineCount(-1)
+    stretchedToLineCount(-1),
+    mCustomAutoCompContent(0),
+    mCustomAutoCompPopup(0)
 {
 }
 
@@ -79,12 +80,29 @@
     scrollArea->setHorizontalScrollBarPolicy(HbScrollArea::ScrollBarAlwaysOff); 
     defaultWrapMode = doc->defaultTextOption().wrapMode(); // cannot be changed.
     q->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
-    q->setBackgroundItem(HbStyle::P_LineEdit_frame_normal);
+    setBackgroundItem(HbStyle::P_LineEdit_frame_normal);
     q->setFocusHighlight(HbStyle::P_LineEdit_frame_highlight,HbWidget::FocusHighlightActive);
     updateWrappingMode();
 
     Q_ASSERT(scrollArea);
     scrollArea->installEventFilter(q); // needed for resize event processing
+
+    // createCustomAutoCompPopup();
+}
+
+void HbLineEditPrivate::createCustomAutoCompPopup()
+{
+    Q_Q(HbLineEdit);
+
+    mCustomAutoCompPopup = new HbPopup(q);
+    mCustomAutoCompPopup->setVisible(false);
+    mCustomAutoCompPopup->setFlag(QGraphicsItem::ItemIsPanel, true);
+    mCustomAutoCompPopup->setActive(false);
+    mCustomAutoCompPopup->setFocusPolicy(Qt::NoFocus);
+    mCustomAutoCompPopup->setBackgroundFaded(false);
+    mCustomAutoCompPopup->setDismissPolicy(HbPopup::NoDismiss);
+    mCustomAutoCompPopup->setTimeout(HbPopup::NoTimeout);
+    HbStyle::setItemName(mCustomAutoCompPopup, QString("autoCompletePopup"));
 }
 
 void HbLineEditPrivate::updatePaletteFromTheme()
@@ -177,6 +195,12 @@
     if(adjustFontSizeToFitHeight) {
         readjustStretchFont();
     }
+
+    if (doc->isEmpty()) {
+        hideCustomAutoCompPopup();
+    } else {
+        showCustomAutoCompPopup();
+    }
 }
 
 void HbLineEditPrivate::_q_textChange(int position, int charsRemoved,int charsAdded)
@@ -297,11 +321,10 @@
 
 QString HbLineEditPrivate::echoString(const QString &text)
 {
-    Q_Q(HbLineEdit);
 
     QString retText(text);
 
-    if(echoMode == HbLineEdit::Password || (echoMode == HbLineEdit::PasswordEchoOnEdit && !q->hasFocus())) {
+    if(echoMode == HbLineEdit::Password || (echoMode == HbLineEdit::PasswordEchoOnEdit && !hasInputFocus())) {
         retText = passwordString(text);
     } else if (echoMode == HbLineEdit::NoEcho) {
         retText.clear();
@@ -395,4 +418,36 @@
     }
 }
 
+void HbLineEditPrivate::showCustomAutoCompPopup()
+{
+    if (mCustomAutoCompContent) {
+        Q_ASSERT(mCustomAutoCompPopup);
+
+        if (!mCustomAutoCompPopup->isVisible() && !doc->isEmpty()) {
+            mCustomAutoCompPopup->show();
+        }
+    }
+}
+
+void HbLineEditPrivate::hideCustomAutoCompPopup()
+{
+    if (mCustomAutoCompContent) {
+        Q_ASSERT(mCustomAutoCompPopup);
+
+        if (mCustomAutoCompPopup->isVisible()) {
+            mCustomAutoCompPopup->hide();
+        }
+    }
+}
+
+void HbLineEditPrivate::editingFinished()
+{
+    Q_Q(HbLineEdit);
+
+    if(q->echoMode() == HbLineEdit::PasswordEchoOnEdit) {
+        q->setPlainText(passwordString(passwordText));
+     }
+    emit q->editingFinished();
+}
+
 #include "moc_hblineedit.cpp"