annotate libgui/graphics/BaseControl.cc @ 31649:deb553ac2c54

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Dec 2022 15:45:27 -0500
parents 431f80aba37a 29d734430e5f
children 5f11de0e7440
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
1 ////////////////////////////////////////////////////////////////////////
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
2 //
30564
796f54d4ddbf update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 29992
diff changeset
3 // Copyright (C) 2011-2022 The Octave Project Developers
27923
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
4 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
5 // See the file COPYRIGHT.md in the top-level directory of this
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
6 // distribution or <https://octave.org/copyright/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
7 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
8 // This file is part of Octave.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
9 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
10 // Octave is free software: you can redistribute it and/or modify it
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
11 // under the terms of the GNU General Public License as published by
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
12 // the Free Software Foundation, either version 3 of the License, or
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
13 // (at your option) any later version.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
14 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
15 // Octave is distributed in the hope that it will be useful, but
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
18 // GNU General Public License for more details.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
19 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
20 // You should have received a copy of the GNU General Public License
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
21 // along with Octave; see the file COPYING. If not, see
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
22 // <https://www.gnu.org/licenses/>.
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
23 //
bd51beb6205e update formatting of copyright notices
John W. Eaton <jwe@octave.org>
parents: 27919
diff changeset
24 ////////////////////////////////////////////////////////////////////////
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21301
diff changeset
26 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21203
diff changeset
27 # include "config.h"
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 #endif
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 #include <QEvent>
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 #include <QKeyEvent>
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 #include <QMouseEvent>
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 #include <QWidget>
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 #include "BaseControl.h"
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 #include "ContextMenu.h"
18505
fb96b7f55242 rename file to avoid clash on case-insenstive filesystems (bug #41658)
John W. Eaton <jwe@octave.org>
parents: 18501
diff changeset
37 #include "QtHandlesUtils.h"
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38
27335
50216d7a2f6b eliminate static wrapper functions in gh_manager class
John W. Eaton <jwe@octave.org>
parents: 27319
diff changeset
39 #include "graphics.h"
27647
2a506bc4a7af eliminate global access to Octave interpreter in qt graphics classes
John W. Eaton <jwe@octave.org>
parents: 27645
diff changeset
40 #include "interpreter.h"
27335
50216d7a2f6b eliminate static wrapper functions in gh_manager class
John W. Eaton <jwe@octave.org>
parents: 27319
diff changeset
41
31646
c6d54dd31a7e maint: Use macros to begin/end C++ namespaces.
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
42 OCTAVE_BEGIN_NAMESPACE(octave)
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
44 static void
23449
c763214a8260 maint: Use convention 'int *x' for naming pointers.
Rik <rik@octave.org>
parents: 23447
diff changeset
45 updatePalette (const uicontrol::properties& props, QWidget *w)
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
46 {
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
47 QPalette p = w->palette ();
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
49 if (props.style_is ("edit")
22616
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
50 || props.style_is ("listbox"))
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
51 {
28251
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
52 Matrix bg_color = props.get_backgroundcolor_rgb ();
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
53 // Matlab compatibility: Default color is ignored, and rendered as
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
54 // white ([1.0, 1.0, 1.0]). See bug #58261.
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
55 if (bg_color(0) == bg_color(1) && bg_color(0) == bg_color(2)
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
56 && (std::abs (bg_color(1) - 0.94) < .005))
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
57 bg_color.fill (1.0);
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
58
28244
cba489221bab Implement Enable property values "inactive" and "off" for uicontrol Edit (bug #57128)
Rik <rik@octave.org>
parents: 27923
diff changeset
59 p.setColor (QPalette::Active, QPalette::Base,
28251
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
60 Utils::fromRgb (bg_color));
28244
cba489221bab Implement Enable property values "inactive" and "off" for uicontrol Edit (bug #57128)
Rik <rik@octave.org>
parents: 27923
diff changeset
61 p.setColor (QPalette::Inactive, QPalette::Base,
28251
be19ade4acc3 Ignore default "backgroundcolor" for uicontrol edit/listbox objects for Matlab compatibility (bug #58261).
Rik <rik@octave.org>
parents: 28249
diff changeset
62 Utils::fromRgb (bg_color));
28244
cba489221bab Implement Enable property values "inactive" and "off" for uicontrol Edit (bug #57128)
Rik <rik@octave.org>
parents: 27923
diff changeset
63 p.setColor (QPalette::Active, QPalette::Text,
cba489221bab Implement Enable property values "inactive" and "off" for uicontrol Edit (bug #57128)
Rik <rik@octave.org>
parents: 27923
diff changeset
64 Utils::fromRgb (props.get_foregroundcolor_rgb ()));
cba489221bab Implement Enable property values "inactive" and "off" for uicontrol Edit (bug #57128)
Rik <rik@octave.org>
parents: 27923
diff changeset
65 p.setColor (QPalette::Inactive, QPalette::Text,
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
66 Utils::fromRgb (props.get_foregroundcolor_rgb ()));
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
67 }
22616
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
68 else if (props.style_is ("popupmenu"))
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
69 {
28244
cba489221bab Implement Enable property values "inactive" and "off" for uicontrol Edit (bug #57128)
Rik <rik@octave.org>
parents: 27923
diff changeset
70 // popupmenu (QComboBox) is a listbox with a button.
cba489221bab Implement Enable property values "inactive" and "off" for uicontrol Edit (bug #57128)
Rik <rik@octave.org>
parents: 27923
diff changeset
71 // This requires setting colors for both.
26337
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
72 QColor bcol = Utils::fromRgb (props.get_backgroundcolor_rgb ());
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
73 QColor fcol = Utils::fromRgb (props.get_foregroundcolor_rgb ());
28247
20794455ea11 Implement "gray" when uicontrol popupmenus are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28246
diff changeset
74 QString qss = QString (":enabled { background: %1 none;\n"
20794455ea11 Implement "gray" when uicontrol popupmenus are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28246
diff changeset
75 "color: %2; }")
26337
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
76 .arg(bcol.name ()).arg (fcol.name ());
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
77 w->setStyleSheet(qss);
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
78 return;
22616
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
79 }
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
80 else if (props.style_is ("radiobutton")
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
81 || props.style_is ("checkbox"))
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
82 {
28248
aee0f20c8029 Implement "gray" when uicontrol radiobutton/checkbox are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28247
diff changeset
83 p.setColor (QPalette::Active, QPalette::Button,
aee0f20c8029 Implement "gray" when uicontrol radiobutton/checkbox are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28247
diff changeset
84 Utils::fromRgb (props.get_backgroundcolor_rgb ()));
aee0f20c8029 Implement "gray" when uicontrol radiobutton/checkbox are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28247
diff changeset
85 p.setColor (QPalette::Inactive, QPalette::Button,
22616
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
86 Utils::fromRgb (props.get_backgroundcolor_rgb ()));
28248
aee0f20c8029 Implement "gray" when uicontrol radiobutton/checkbox are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28247
diff changeset
87 p.setColor (QPalette::Active, QPalette::WindowText,
aee0f20c8029 Implement "gray" when uicontrol radiobutton/checkbox are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28247
diff changeset
88 Utils::fromRgb (props.get_foregroundcolor_rgb ()));
aee0f20c8029 Implement "gray" when uicontrol radiobutton/checkbox are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28247
diff changeset
89 p.setColor (QPalette::Inactive, QPalette::WindowText,
22616
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
90 Utils::fromRgb (props.get_foregroundcolor_rgb ()));
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
91 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
92 else if (props.style_is ("pushbutton")
22616
96411a33f570 gui: handle differences in text color for popmenu, checkbox and radiobutton (Bug #49247)
John Donoghue <john.donoghue@ieee.org>
parents: 22611
diff changeset
93 || props.style_is ("togglebutton"))
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
94 {
26337
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
95 QColor bcol = Utils::fromRgb (props.get_backgroundcolor_rgb ());
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
96 QColor fcol = Utils::fromRgb (props.get_foregroundcolor_rgb ());
28245
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
97 QString qss = QString (":enabled { background: %1 none;\n"
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
98 "color: %2; }")
26337
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
99 .arg(bcol.name ()).arg (fcol.name ());
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
100 w->setStyleSheet(qss);
5f321f799cb1 Use stylesheets for coloring pushbuttons and popupmenus (bug #49247).
Torsten <mttl@mailbox.org>
parents: 26037
diff changeset
101 return;
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
102 }
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
103 else
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
104 {
28249
be4a6f33d142 Implement "gray" when uicontrol text/slider are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28248
diff changeset
105 p.setColor (QPalette::Active, QPalette::Window,
be4a6f33d142 Implement "gray" when uicontrol text/slider are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28248
diff changeset
106 Utils::fromRgb (props.get_backgroundcolor_rgb ()));
be4a6f33d142 Implement "gray" when uicontrol text/slider are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28248
diff changeset
107 p.setColor (QPalette::Inactive, QPalette::Window,
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
108 Utils::fromRgb (props.get_backgroundcolor_rgb ()));
28249
be4a6f33d142 Implement "gray" when uicontrol text/slider are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28248
diff changeset
109 p.setColor (QPalette::Active, QPalette::WindowText,
be4a6f33d142 Implement "gray" when uicontrol text/slider are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28248
diff changeset
110 Utils::fromRgb (props.get_foregroundcolor_rgb ()));
be4a6f33d142 Implement "gray" when uicontrol text/slider are disabled (bug #57128).
Rik <rik@octave.org>
parents: 28248
diff changeset
111 p.setColor (QPalette::Inactive, QPalette::WindowText,
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
112 Utils::fromRgb (props.get_foregroundcolor_rgb ()));
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
113 }
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
114
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
115 w->setPalette (p);
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
116 }
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
117
31639
ca7d58406f82 eliminate unnecessary uses of octave_qobject in GUI classes
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
118 BaseControl::BaseControl (octave::interpreter& interp,
27647
2a506bc4a7af eliminate global access to Octave interpreter in qt graphics classes
John W. Eaton <jwe@octave.org>
parents: 27645
diff changeset
119 const graphics_object& go, QWidget *w)
31639
ca7d58406f82 eliminate unnecessary uses of octave_qobject in GUI classes
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
120 : Object (interp, go, w), m_normalizedFont (false),
27647
2a506bc4a7af eliminate global access to Octave interpreter in qt graphics classes
John W. Eaton <jwe@octave.org>
parents: 27645
diff changeset
121 m_keyPressHandlerDefined (false)
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
122 {
26816
92ecc4a97b5c Properly redraw uixx objects after Qt figure is (un)maximized (bug #53709)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 26376
diff changeset
123 qObject ()->setObjectName ("UIControl");
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
124 init (w);
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
125 }
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
126
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
127 void
23449
c763214a8260 maint: Use convention 'int *x' for naming pointers.
Rik <rik@octave.org>
parents: 23447
diff changeset
128 BaseControl::init (QWidget *w, bool callBase)
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
129 {
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
130 if (callBase)
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
131 Object::init (w, callBase);
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
132
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
133 uicontrol::properties& up = properties<uicontrol> ();
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
134
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
135 Matrix bb = up.get_boundingbox (false);
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
136 w->setGeometry (octave::math::round (bb(0)), octave::math::round (bb(1)),
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
137 octave::math::round (bb(2)), octave::math::round (bb(3)));
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
138 w->setFont (Utils::computeFont<uicontrol> (up, bb(3)));
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
139 updatePalette (up, w);
28245
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
140 if (up.enable_is ("inactive"))
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
141 w->blockSignals (true);
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
142 else
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
143 w->setEnabled (up.enable_is ("on"));
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
144 w->setToolTip (Utils::fromStdString (up.get_tooltipstring ()));
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
145 w->setVisible (up.is_visible ());
23577
80c42f4cca13 maint: Deprecate is_empty and replace with isempty.
Rik <rik@octave.org>
parents: 23449
diff changeset
146 m_keyPressHandlerDefined = ! up.get_keypressfcn ().isempty ();
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
147
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
148 w->installEventFilter (this);
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
149
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
150 m_normalizedFont = up.fontunits_is ("normalized");
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
151 }
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
152
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
153 BaseControl::~BaseControl (void)
22417
48c00363dc74 maint: Use '{ }' for empty function bodies in C++.
Rik <rik@octave.org>
parents: 22413
diff changeset
154 { }
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
155
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
156 void
26816
92ecc4a97b5c Properly redraw uixx objects after Qt figure is (un)maximized (bug #53709)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 26376
diff changeset
157 BaseControl::redraw (void)
92ecc4a97b5c Properly redraw uixx objects after Qt figure is (un)maximized (bug #53709)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 26376
diff changeset
158 {
92ecc4a97b5c Properly redraw uixx objects after Qt figure is (un)maximized (bug #53709)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 26376
diff changeset
159 update (uicontrol::properties::ID_POSITION);
92ecc4a97b5c Properly redraw uixx objects after Qt figure is (un)maximized (bug #53709)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 26376
diff changeset
160 }
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
161
26816
92ecc4a97b5c Properly redraw uixx objects after Qt figure is (un)maximized (bug #53709)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 26376
diff changeset
162 void
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
163 BaseControl::update (int pId)
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
164 {
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
165 uicontrol::properties& up = properties<uicontrol> ();
23449
c763214a8260 maint: Use convention 'int *x' for naming pointers.
Rik <rik@octave.org>
parents: 23447
diff changeset
166 QWidget *w = qWidget<QWidget> ();
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
167
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
168 switch (pId)
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
169 {
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
170 case uicontrol::properties::ID_POSITION:
31648
29d734430e5f maint: Re-indent code after switch to using namespace macros.
John W. Eaton <jwe@octave.org>
parents: 31646
diff changeset
171 {
19621
af0399a5aae0 untabify QtHandles source files
John W. Eaton <jwe@octave.org>
parents: 19616
diff changeset
172 Matrix bb = up.get_boundingbox (false);
21782
2aef506f3fec use namespace for lo-mappers.h functions
John W. Eaton <jwe@octave.org>
parents: 21724
diff changeset
173 w->setGeometry (octave::math::round (bb(0)), octave::math::round (bb(1)),
2aef506f3fec use namespace for lo-mappers.h functions
John W. Eaton <jwe@octave.org>
parents: 21724
diff changeset
174 octave::math::round (bb(2)), octave::math::round (bb(3)));
31648
29d734430e5f maint: Re-indent code after switch to using namespace macros.
John W. Eaton <jwe@octave.org>
parents: 31646
diff changeset
175 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
176 break;
31648
29d734430e5f maint: Re-indent code after switch to using namespace macros.
John W. Eaton <jwe@octave.org>
parents: 31646
diff changeset
177
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
178 case uicontrol::properties::ID_FONTNAME:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
179 case uicontrol::properties::ID_FONTSIZE:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
180 case uicontrol::properties::ID_FONTWEIGHT:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
181 case uicontrol::properties::ID_FONTANGLE:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
182 w->setFont (Utils::computeFont<uicontrol> (up));
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
183 break;
31648
29d734430e5f maint: Re-indent code after switch to using namespace macros.
John W. Eaton <jwe@octave.org>
parents: 31646
diff changeset
184
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
185 case uicontrol::properties::ID_FONTUNITS:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
186 // FIXME: We shouldn't have to do anything, octave should update
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
187 // the "fontsize" property automatically to the new units.
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
188 // Hence the actual font used shouldn't change.
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
189 m_normalizedFont = up.fontunits_is ("normalized");
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
190 break;
31648
29d734430e5f maint: Re-indent code after switch to using namespace macros.
John W. Eaton <jwe@octave.org>
parents: 31646
diff changeset
191
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
192 case uicontrol::properties::ID_BACKGROUNDCOLOR:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
193 case uicontrol::properties::ID_FOREGROUNDCOLOR:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
194 updatePalette (up, w);
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
195 break;
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
196
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
197 case uicontrol::properties::ID_ENABLE:
28245
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
198 if (up.enable_is ("inactive"))
28246
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
199 {
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
200 w->blockSignals (true);
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
201 w->setEnabled (true);
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
202 }
28245
46a23dc62056 Implement "gray" when uicontrol pushbuttons/togglebuttons are disabled (bug #57128)
Rik <rik@octave.org>
parents: 28244
diff changeset
203 else
28246
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
204 {
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
205 w->blockSignals (false);
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
206 w->setEnabled (up.enable_is ("on"));
c387a55aed05 Fix problem with uicontrol "Enable" transition from "off"->"inactive" (bug #57128).
Rik <rik@octave.org>
parents: 28245
diff changeset
207 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
208 break;
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
209
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
210 case uicontrol::properties::ID_TOOLTIPSTRING:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
211 w->setToolTip (Utils::fromStdString (up.get_tooltipstring ()));
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
212 break;
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
213
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
214 case base_properties::ID_VISIBLE:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
215 w->setVisible (up.is_visible ());
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
216 break;
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
217
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
218 case uicontrol::properties::ID_KEYPRESSFCN:
23577
80c42f4cca13 maint: Deprecate is_empty and replace with isempty.
Rik <rik@octave.org>
parents: 23449
diff changeset
219 m_keyPressHandlerDefined = ! up.get_keypressfcn ().isempty ();
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
220 break;
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
221
26024
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
222 case uicontrol::properties::ID___FOCUS__:
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
223 if (up.is___focus__ ())
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
224 w->setFocus ();
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
225 else
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
226 w->clearFocus ();
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
227 break;
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
228
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
229 default:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
230 break;
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
231 }
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
232 }
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
233
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
234 bool
23449
c763214a8260 maint: Use convention 'int *x' for naming pointers.
Rik <rik@octave.org>
parents: 23447
diff changeset
235 BaseControl::eventFilter (QObject *watched, QEvent *xevent)
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
236 {
27647
2a506bc4a7af eliminate global access to Octave interpreter in qt graphics classes
John W. Eaton <jwe@octave.org>
parents: 27645
diff changeset
237 gh_manager& gh_mgr = m_interpreter.get_gh_manager ();
27335
50216d7a2f6b eliminate static wrapper functions in gh_manager class
John W. Eaton <jwe@octave.org>
parents: 27319
diff changeset
238
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
239 switch (xevent->type ())
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
240 {
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
241 case QEvent::Resize:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
242 if (m_normalizedFont)
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
243 {
27335
50216d7a2f6b eliminate static wrapper functions in gh_manager class
John W. Eaton <jwe@octave.org>
parents: 27319
diff changeset
244 octave::autolock guard (gh_mgr.graphics_lock ());
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
245
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
246 qWidget<QWidget> ()->setFont (Utils::computeFont<uicontrol>
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
247 (properties<uicontrol> ()));
31648
29d734430e5f maint: Re-indent code after switch to using namespace macros.
John W. Eaton <jwe@octave.org>
parents: 31646
diff changeset
248 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
249 break;
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
250
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
251 case QEvent::MouseButtonPress:
18612
9597e00ed2dd Add support for "windowbuttonmotionfcn" and "currentpoint"
Michael Goffioul <michael.goffioul@gmail.com>
parents: 18505
diff changeset
252 {
27335
50216d7a2f6b eliminate static wrapper functions in gh_manager class
John W. Eaton <jwe@octave.org>
parents: 27319
diff changeset
253 octave::autolock guard (gh_mgr.graphics_lock ());
18612
9597e00ed2dd Add support for "windowbuttonmotionfcn" and "currentpoint"
Michael Goffioul <michael.goffioul@gmail.com>
parents: 18505
diff changeset
254
23447
db1fdf4384dd maint: Use convention "static_cast<void *>" for casting of pointers.
Rik <rik@octave.org>
parents: 23220
diff changeset
255 QMouseEvent *m = dynamic_cast<QMouseEvent *> (xevent);
19621
af0399a5aae0 untabify QtHandles source files
John W. Eaton <jwe@octave.org>
parents: 19616
diff changeset
256 graphics_object go = object ();
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
257 uicontrol::properties& up = Utils::properties<uicontrol> (go);
19621
af0399a5aae0 untabify QtHandles source files
John W. Eaton <jwe@octave.org>
parents: 19616
diff changeset
258 graphics_object fig = go.get_ancestor ("figure");
25996
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
259 if (fig)
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
260 {
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
261 emit gh_set_event (fig.get_handle (), "currentobject",
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
262 m_handle.value (), false);
26024
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
263
25996
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
264 if (m->button () != Qt::LeftButton || ! up.enable_is ("on"))
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
265 {
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
266 emit gh_set_event (fig.get_handle (), "selectiontype",
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
267 Utils::figureSelectionType (m), false);
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
268 emit gh_set_event (fig.get_handle (), "currentpoint",
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
269 Utils::figureCurrentPoint (fig, m),
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
270 false);
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
271 emit gh_callback_event (fig.get_handle (),
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
272 "windowbuttondownfcn");
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
273 emit gh_callback_event (m_handle, "buttondownfcn");
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
274
25996
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
275 if (m->button () == Qt::RightButton)
27647
2a506bc4a7af eliminate global access to Octave interpreter in qt graphics classes
John W. Eaton <jwe@octave.org>
parents: 27645
diff changeset
276 ContextMenu::executeAt (m_interpreter, up, m->globalPos ());
25996
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
277 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
278 else
25996
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
279 {
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
280 if (up.style_is ("listbox"))
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
281 emit gh_set_event (fig.get_handle (), "selectiontype",
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
282 Utils::figureSelectionType (m),
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
283 false);
25996
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
284 else
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
285 emit gh_set_event (fig.get_handle (), "selectiontype",
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
286 octave_value ("normal"), false);
25996
37743ef71734 Let uicontrol objects become the figure currentobject when clicked (bug #44672)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25921
diff changeset
287 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
288 }
18612
9597e00ed2dd Add support for "windowbuttonmotionfcn" and "currentpoint"
Michael Goffioul <michael.goffioul@gmail.com>
parents: 18505
diff changeset
289 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
290 break;
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
291
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
292 case QEvent::MouseMove:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
293 if (qWidget<QWidget> ()->hasMouseTracking ())
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
294 {
27335
50216d7a2f6b eliminate static wrapper functions in gh_manager class
John W. Eaton <jwe@octave.org>
parents: 27319
diff changeset
295 octave::autolock guard (gh_mgr.graphics_lock ());
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
296
23447
db1fdf4384dd maint: Use convention "static_cast<void *>" for casting of pointers.
Rik <rik@octave.org>
parents: 23220
diff changeset
297 QMouseEvent *m = dynamic_cast<QMouseEvent *> (xevent);
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
298 graphics_object go = object ();
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
299 graphics_object fig = go.get_ancestor ("figure");
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
300
25921
9c47eedc44e2 msgbox.m: use graphics objects to build dialog (bug #42490)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25054
diff changeset
301 if (fig)
9c47eedc44e2 msgbox.m: use graphics objects to build dialog (bug #42490)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25054
diff changeset
302 {
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
303 emit gh_set_event (fig.get_handle (), "currentpoint",
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
304 Utils::figureCurrentPoint (fig, m), false);
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
305 emit gh_callback_event (fig.get_handle (),
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
306 "windowbuttonmotionfcn");
25921
9c47eedc44e2 msgbox.m: use graphics objects to build dialog (bug #42490)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25054
diff changeset
307 }
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
308 }
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
309 break;
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
310
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
311 case QEvent::KeyPress:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
312 if (m_keyPressHandlerDefined)
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
313 {
27335
50216d7a2f6b eliminate static wrapper functions in gh_manager class
John W. Eaton <jwe@octave.org>
parents: 27319
diff changeset
314 octave::autolock guard (gh_mgr.graphics_lock ());
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
315
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
316 octave_scalar_map keyData =
23447
db1fdf4384dd maint: Use convention "static_cast<void *>" for casting of pointers.
Rik <rik@octave.org>
parents: 23220
diff changeset
317 Utils::makeKeyEventStruct (dynamic_cast<QKeyEvent *> (xevent));
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
318 graphics_object fig = object ().get_ancestor ("figure");
19967
3cc0734283dc style fixes in Qt graphics code
John W. Eaton <jwe@octave.org>
parents: 19625
diff changeset
319
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
320 emit gh_set_event (fig.get_handle (), "currentcharacter",
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
321 keyData.getfield ("Character"), false);
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
322 emit gh_callback_event (m_handle, "keypressfcn", keyData);
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
323 }
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
324 break;
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
325
26024
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
326 case QEvent::FocusIn:
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
327 emit gh_set_event (m_handle, "__focus__", "on", false);
26024
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
328 break;
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
329
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
330 case QEvent::FocusOut:
27319
6b2d20317b26 use Qt signals to manage calls to gh_manager functions in Qt graphics toolkit
John W. Eaton <jwe@octave.org>
parents: 26816
diff changeset
331 emit gh_set_event (m_handle, "__focus__", "off", false);
26024
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
332 break;
80c8062e855a Allow uicontrol focus to be set from the interpreter (bug #54942)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 25996
diff changeset
333
22411
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
334 default:
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
335 break;
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
336 }
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
337
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
338 return Object::eventFilter (watched, xevent);
c69805d1fa64 maint: Style check C++ code in libgui/
Rik <rik@octave.org>
parents: 22323
diff changeset
339 }
18498
2e7cad6f180c Initial integration of QtHandles.
John W. Eaton <jwe@octave.org>
parents:
diff changeset
340
31646
c6d54dd31a7e maint: Use macros to begin/end C++ namespaces.
John W. Eaton <jwe@octave.org>
parents: 30564
diff changeset
341 OCTAVE_END_NAMESPACE(octave)