view libgui/graphics/FigureWindow.h @ 20559:88459dd6780f

Fix inconsistent toolbar state after creating an uicontrol (bug #46025) * Figure.cc (Figure::eventNotifyAfter): when a child has been created, use update method to properly decide whether to show the toolbar.
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Sun, 27 Sep 2015 17:12:29 +0200
parents f0e61a67ad9f
children
line wrap: on
line source

/*

Copyright (C) 2011-2015 Michael Goffioul

This file is part of Octave.

Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.

Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

#ifndef __QtHandles_FigureWindow__
#define __QtHandles_FigureWindow__ 1

#include <QMainWindow>

#include "GenericEventNotify.h"

namespace QtHandles
{

DECLARE_GENERICEVENTNOTIFY_SENDER(FigureWindowBase, QMainWindow);

class FigureWindow : public FigureWindowBase
{
  Q_OBJECT

public:
  FigureWindow (QWidget* parent = 0);
  ~FigureWindow (void);

  QMenu* createPopupMenu (void);
};

}; // namespace QtHandles

#endif