OpenStructure
button_box.hh
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 // This file is part of the OpenStructure project <www.openstructure.org>
3 //
4 // Copyright (C) 2008-2020 by the OpenStructure authors
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License as published by the Free
8 // Software Foundation; either version 3.0 of the License, or (at your option)
9 // any later version.
10 // This library is distributed in the hope that it will be useful, but WITHOUT
11 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
13 // details.
14 //
15 // You should have received a copy of the GNU Lesser General Public License
16 // along with this library; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 //------------------------------------------------------------------------------
19 #ifndef OST_GUI_BOTTOM_BAR_BUTTON_BOX
20 #define OST_GUI_BOTTOM_BAR_BUTTON_BOX
21 
22 
23 #include <ost/gui/module_config.hh>
24 #include <ost/gui/widget.hh>
25 
26 #include "event_button.hh"
27 
28 #include <QWidget>
29 #include <QString>
30 #include <QGridLayout>
31 #include <QList>
32 #include <QLabel>
33 namespace ost { namespace gui {
34 
37  Q_OBJECT
38 public:
39  ButtonBox(const QString& label, QWidget* parent=NULL);
40 
41  virtual bool Save(const QString& prefix);
42  virtual bool Restore(const QString& prefix);
43  virtual void AddButton(const QString& name, Widget* widget, bool pressed);
44  virtual void InsertButton(EventButton* position, EventButton* new_button);
45  virtual void RemoveButton(EventButton* button);
46  virtual void MoveButton(EventButton* position, EventButton* mov_button);
47 
48  virtual void dropEvent(QDropEvent* event);
49  virtual void dragEnterEvent (QDragEnterEvent* event );
50 
51 signals:
52  void ToggleWidget(Widget* widget);
53  void Removed(Widget* widget);
54  void Inserted(Widget* widget, int pos, bool isHidden);
55  void ButtonDragged(EventButton* button);
56  void ButtonDropped(EventButton* button);
57 
58 private slots:
59  void ButtonPressed(Widget* widget);
60 
61 private:
62  QHBoxLayout* layout_;
63  QHBoxLayout* buttons_layout_;
64  QLabel* label_;
65  QList<EventButton *>* buttons_;
66 };
67 
68 }}
69 
70 #endif
virtual bool Save(const QString &prefix)
virtual void InsertButton(EventButton *position, EventButton *new_button)
void Inserted(Widget *widget, int pos, bool isHidden)
virtual void dropEvent(QDropEvent *event)
virtual void MoveButton(EventButton *position, EventButton *mov_button)
virtual void AddButton(const QString &name, Widget *widget, bool pressed)
void ButtonDragged(EventButton *button)
void ButtonDropped(EventButton *button)
virtual bool Restore(const QString &prefix)
virtual void dragEnterEvent(QDragEnterEvent *event)
virtual void RemoveButton(EventButton *button)
ButtonBox(const QString &label, QWidget *parent=NULL)
void ToggleWidget(Widget *widget)
void Removed(Widget *widget)
Base class for widgets.
Definition: widget.hh:40
#define DLLEXPORT_OST_GUI
Definition: base.dox:1