1/****************************************************************************
2**
3** Copyright (C) 2016 The Qt Company Ltd.
4** Contact: https://www.qt.io/licensing/
5**
6** This file is part of the Qt Designer of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:GPL-EXCEPT$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see https://www.qt.io/terms-conditions. For further
15** information use the contact form at https://www.qt.io/contact-us.
16**
17** GNU General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU
19** General Public License version 3 as published by the Free Software
20** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
21** included in the packaging of this file. Please review the following
22** information to ensure the GNU General Public License requirements will
23** be met: https://www.gnu.org/licenses/gpl-3.0.html.
24**
25** $QT_END_LICENSE$
26**
27****************************************************************************/
28
29#include "groupbox_taskmenu.h"
30#include "inplace_editor.h"
31
32#include <QtDesigner/abstractformwindow.h>
33
34#include <QtWidgets/qaction.h>
35#include <QtWidgets/qstyle.h>
36#include <QtWidgets/qstyleoption.h>
37
38QT_BEGIN_NAMESPACE
39
40namespace qdesigner_internal {
41
42// -------- GroupBoxTaskMenuInlineEditor
43class GroupBoxTaskMenuInlineEditor : public TaskMenuInlineEditor
44{
45public:
46 GroupBoxTaskMenuInlineEditor(QGroupBox *button, QObject *parent);
47
48protected:
49 QRect editRectangle() const override;
50};
51
52GroupBoxTaskMenuInlineEditor::GroupBoxTaskMenuInlineEditor(QGroupBox *w, QObject *parent) :
53 TaskMenuInlineEditor(w, ValidationSingleLine, QStringLiteral("title"), parent)
54{
55}
56
57QRect GroupBoxTaskMenuInlineEditor::editRectangle() const
58{
59 QWidget *w = widget();
60 QStyleOption opt; // ## QStyleOptionGroupBox
61 opt.init(w);
62 return QRect(QPoint(), QSize(w->width(),20));
63}
64
65// --------------- GroupBoxTaskMenu
66
67GroupBoxTaskMenu::GroupBoxTaskMenu(QGroupBox *groupbox, QObject *parent)
68 : QDesignerTaskMenu(groupbox, parent),
69 m_editTitleAction(new QAction(tr(s: "Change title..."), this))
70
71{
72 TaskMenuInlineEditor *editor = new GroupBoxTaskMenuInlineEditor(groupbox, this);
73 connect(sender: m_editTitleAction, signal: &QAction::triggered, receiver: editor, slot: &TaskMenuInlineEditor::editText);
74 m_taskActions.append(t: m_editTitleAction);
75
76 QAction *sep = new QAction(this);
77 sep->setSeparator(true);
78 m_taskActions.append(t: sep);
79}
80
81QList<QAction*> GroupBoxTaskMenu::taskActions() const
82{
83 return m_taskActions + QDesignerTaskMenu::taskActions();
84}
85
86QAction *GroupBoxTaskMenu::preferredEditAction() const
87{
88 return m_editTitleAction;
89}
90
91}
92QT_END_NAMESPACE
93

source code of qttools/src/designer/src/components/taskmenu/groupbox_taskmenu.cpp