~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to tools/designer/src/components/taskmenu/lineedit_taskmenu.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 1992-2005 Trolltech AS. All rights reserved.
 
4
**
 
5
** This file is part of the designer application of the Qt Toolkit.
 
6
**
 
7
** This file may be distributed under the terms of the Q Public License
 
8
** as defined by Trolltech AS of Norway and appearing in the file
 
9
** LICENSE.QPL included in the packaging of this file.
 
10
**
 
11
** This file may be distributed and/or modified under the terms of the
 
12
** GNU General Public License version 2 as published by the Free Software
 
13
** Foundation and appearing in the file LICENSE.GPL included in the
 
14
** packaging of this file.
 
15
**
 
16
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
 
17
**   information about Qt Commercial License Agreements.
 
18
** See http://www.trolltech.com/qpl/ for QPL licensing information.
 
19
** See http://www.trolltech.com/gpl/ for GPL licensing information.
 
20
**
 
21
** Contact info@trolltech.com if any conditions of this licensing are
 
22
** not clear to you.
 
23
**
 
24
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 
25
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 
26
**
 
27
****************************************************************************/
 
28
 
 
29
#include "lineedit_taskmenu.h"
 
30
#include "inplace_editor.h"
 
31
 
 
32
#include <QtDesigner/QtDesigner>
 
33
 
 
34
#include <QtGui/QAction>
 
35
#include <QtGui/QStyle>
 
36
#include <QtGui/QStyleOption>
 
37
 
 
38
#include <QtCore/QEvent>
 
39
#include <QtCore/QVariant>
 
40
#include <QtCore/qdebug.h>
 
41
 
 
42
using namespace qdesigner_internal;
 
43
 
 
44
LineEditTaskMenu::LineEditTaskMenu(QLineEdit *lineEdit, QObject *parent)
 
45
    : QDesignerTaskMenu(lineEdit, parent),
 
46
      m_lineEdit(lineEdit)
 
47
{
 
48
    m_editTextAction = new QAction(this);
 
49
    m_editTextAction->setText(tr("Change text"));
 
50
    connect(m_editTextAction, SIGNAL(triggered()), this, SLOT(editText()));
 
51
    m_taskActions.append(m_editTextAction);
 
52
 
 
53
    QAction *sep = new QAction(this);
 
54
    sep->setSeparator(true);
 
55
    m_taskActions.append(sep);
 
56
}
 
57
 
 
58
LineEditTaskMenu::~LineEditTaskMenu()
 
59
{
 
60
}
 
61
 
 
62
QAction *LineEditTaskMenu::preferredEditAction() const
 
63
{
 
64
    return m_editTextAction;
 
65
}
 
66
 
 
67
QList<QAction*> LineEditTaskMenu::taskActions() const
 
68
{
 
69
    return m_taskActions + QDesignerTaskMenu::taskActions();
 
70
}
 
71
 
 
72
void LineEditTaskMenu::editText()
 
73
{
 
74
    m_formWindow = QDesignerFormWindowInterface::findFormWindow(m_lineEdit);
 
75
    if (!m_formWindow.isNull()) {
 
76
        connect(m_formWindow, SIGNAL(selectionChanged()), this, SLOT(updateSelection()));
 
77
        Q_ASSERT(m_lineEdit->parentWidget() != 0);
 
78
 
 
79
        m_editor = new InPlaceEditor(m_lineEdit, m_formWindow);
 
80
        m_editor->setObjectName(QLatin1String("__qt__passive_m_editor"));
 
81
 
 
82
        m_editor->setFrame(false);
 
83
        m_editor->setText(m_lineEdit->text());
 
84
        m_editor->selectAll();
 
85
        m_editor->setBackgroundRole(m_lineEdit->backgroundRole());
 
86
        connect(m_editor, SIGNAL(returnPressed()), m_editor, SLOT(deleteLater()));
 
87
        connect(m_editor, SIGNAL(textChanged(QString)), this, SLOT(updateText(QString)));
 
88
 
 
89
        QStyleOption opt;
 
90
        opt.init(m_lineEdit);
 
91
        QRect r = opt.rect;
 
92
 
 
93
        m_editor->setGeometry(QRect(m_lineEdit->mapTo(m_lineEdit->window(), r.topLeft()), r.size()));
 
94
        m_editor->setFocus();
 
95
        m_editor->show();
 
96
    }
 
97
}
 
98
 
 
99
void LineEditTaskMenu::editIcon()
 
100
{
 
101
}
 
102
 
 
103
LineEditTaskMenuFactory::LineEditTaskMenuFactory(QExtensionManager *extensionManager)
 
104
    : QExtensionFactory(extensionManager)
 
105
{
 
106
}
 
107
 
 
108
QObject *LineEditTaskMenuFactory::createExtension(QObject *object, const QString &iid, QObject *parent) const
 
109
{
 
110
    if (QLineEdit *lineEdit = qobject_cast<QLineEdit*>(object)) {
 
111
        if (iid == Q_TYPEID(QDesignerTaskMenuExtension)) {
 
112
            return new LineEditTaskMenu(lineEdit, parent);
 
113
        }
 
114
    }
 
115
 
 
116
    return 0;
 
117
}
 
118
 
 
119
void LineEditTaskMenu::updateText(const QString &text)
 
120
{
 
121
    m_formWindow->cursor()->setWidgetProperty(m_lineEdit, QLatin1String("text"), QVariant(text));
 
122
}
 
123
 
 
124
void LineEditTaskMenu::updateSelection()
 
125
{
 
126
    if (m_editor)
 
127
        m_editor->deleteLater();
 
128
}
 
129