GNU Octave  4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PushTool.cc
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 2011-2015 Michael Goffioul
4 
5 This file is part of Octave.
6 
7 Octave is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
11 
12 Octave is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with Octave; see the file COPYING. If not, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26 
27 #include "PushTool.h"
28 
29 #include "ToolBarButton.cc"
30 
31 namespace QtHandles
32 {
33 
34 PushTool*
36 {
37  Object* parent = Object::parentObject (go);
38 
39  if (parent)
40  {
41  QWidget* parentWidget = parent->qWidget<QWidget> ();
42 
43  if (parentWidget)
44  return new PushTool (go, new QAction (parentWidget));
45  }
46 
47  return 0;
48 }
49 
50 PushTool::PushTool (const graphics_object& go, QAction* action)
51  : ToolBarButton<uipushtool> (go, action)
52 {
53  connect (action, SIGNAL (triggered (bool)), this, SLOT (clicked (void)));
54 }
55 
57 {
58 }
59 
60 void
62 {
63  switch (pId)
64  {
65  default:
67  break;
68  }
69 }
70 
71 void
73 {
74  gh_manager::post_callback (m_handle, "clickedcallback");
75 }
76 
77 };
static void post_callback(const graphics_handle &h, const std::string &name, const octave_value &data=Matrix())
Definition: graphics.h:13329
void clicked(void)
Definition: PushTool.cc:72
static Object * parentObject(const graphics_object &go)
Definition: Object.cc:170
graphics_handle m_handle
Definition: Object.h:100
T * qWidget(void)
Definition: Object.h:74
static PushTool * create(const graphics_object &go)
Definition: PushTool.cc:35
void update(int pId)
Definition: PushTool.cc:61
PushTool(const graphics_object &go, QAction *action)
Definition: PushTool.cc:50