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

« back to all changes in this revision

Viewing changes to tools/designer/src/components/taskmenu/groupbox_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 "groupbox_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
GroupBoxTaskMenu::GroupBoxTaskMenu(QGroupBox *groupbox, QObject *parent)
 
45
    : QDesignerTaskMenu(groupbox, parent),
 
46
      m_groupbox(groupbox)
 
47
{
 
48
    m_editTitleAction = new QAction(tr("Change title"), this);
 
49
    connect(m_editTitleAction, SIGNAL(triggered()), this, SLOT(editTitle()));
 
50
    m_taskActions.append(m_editTitleAction);
 
51
 
 
52
    QAction *sep = new QAction(this);
 
53
    sep->setSeparator(true);
 
54
    m_taskActions.append(sep);
 
55
}
 
56
 
 
57
GroupBoxTaskMenu::~GroupBoxTaskMenu()
 
58
{
 
59
}
 
60
 
 
61
QList<QAction*> GroupBoxTaskMenu::taskActions() const
 
62
{
 
63
    return m_taskActions + QDesignerTaskMenu::taskActions();
 
64
}
 
65
 
 
66
void GroupBoxTaskMenu::editTitle()
 
67
{
 
68
    QDesignerFormWindowInterface *fw = formWindow();
 
69
 
 
70
    if (fw != 0) {
 
71
        connect(fw, SIGNAL(selectionChanged()), this, SLOT(updateSelection()));
 
72
        Q_ASSERT(m_groupbox->parentWidget() != 0);
 
73
 
 
74
        m_editor = new InPlaceEditor(m_groupbox, fw);
 
75
        m_editor->setFrame(false);
 
76
        m_editor->setText(m_groupbox->title());
 
77
        m_editor->selectAll();
 
78
        m_editor->setBackgroundRole(m_groupbox->backgroundRole());
 
79
        m_editor->setObjectName(QLatin1String("__qt__passive_m_editor"));
 
80
        connect(m_editor, SIGNAL(returnPressed()), m_editor, SLOT(deleteLater()));
 
81
        connect(m_editor, SIGNAL(textChanged(QString)), this, SLOT(updateText(QString)));
 
82
        m_editor->installEventFilter(this); // ### we need this??
 
83
        QStyleOption opt; // ## QStyleOptionGroupBox
 
84
        opt.init(m_groupbox);
 
85
        QRect r = QRect(QPoint(), m_groupbox->size());
 
86
        // ### m_groupbox->style()->subRect(QStyle::SR_GroupBoxTitle, &opt, m_groupbox);
 
87
        r.setHeight(20);
 
88
 
 
89
        m_editor->setGeometry(QRect(m_groupbox->mapTo(m_groupbox->window(), r.topLeft()), r.size()));
 
90
 
 
91
        m_editor->setFocus();
 
92
        m_editor->show();
 
93
    }
 
94
}
 
95
 
 
96
void GroupBoxTaskMenu::editIcon()
 
97
{
 
98
}
 
99
 
 
100
GroupBoxTaskMenuFactory::GroupBoxTaskMenuFactory(QExtensionManager *extensionManager)
 
101
    : QExtensionFactory(extensionManager)
 
102
{
 
103
}
 
104
 
 
105
QObject *GroupBoxTaskMenuFactory::createExtension(QObject *object, const QString &iid, QObject *parent) const
 
106
{
 
107
    if (QGroupBox *groupbox = qobject_cast<QGroupBox*>(object)) {
 
108
        if (iid == Q_TYPEID(QDesignerTaskMenuExtension)) {
 
109
            return new GroupBoxTaskMenu(groupbox, parent);
 
110
        }
 
111
    }
 
112
 
 
113
    return 0;
 
114
}
 
115
 
 
116
void GroupBoxTaskMenu::updateText(const QString &text)
 
117
{
 
118
    formWindow()->cursor()->setWidgetProperty(m_groupbox,
 
119
                                QLatin1String("title"), QVariant(text));
 
120
}
 
121
 
 
122
void GroupBoxTaskMenu::updateSelection()
 
123
{
 
124
    if (m_editor)
 
125
        m_editor->deleteLater();
 
126
}
 
127
 
 
128
QAction *GroupBoxTaskMenu::preferredEditAction() const
 
129
{
 
130
    return m_editTitleAction;
 
131
}
 
132