MenuManager.h

Go to the documentation of this file.
00001 /***************************************************************************
00002  *   Copyright (c) 2005 Werner Mayer <wmayer[at]users.sourceforge.net>     *
00003  *                                                                         *
00004  *   This file is part of the FreeCAD CAx development system.              *
00005  *                                                                         *
00006  *   This library is free software; you can redistribute it and/or         *
00007  *   modify it under the terms of the GNU Library General Public           *
00008  *   License as published by the Free Software Foundation; either          *
00009  *   version 2 of the License, or (at your option) any later version.      *
00010  *                                                                         *
00011  *   This library  is distributed in the hope that it will be useful,      *
00012  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00013  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00014  *   GNU Library General Public License for more details.                  *
00015  *                                                                         *
00016  *   You should have received a copy of the GNU Library General Public     *
00017  *   License along with this library; see the file COPYING.LIB. If not,    *
00018  *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
00019  *   Suite 330, Boston, MA  02111-1307, USA                                *
00020  *                                                                         *
00021  ***************************************************************************/
00022 
00023 
00024 #ifndef GUI_MENUMANAGER_H
00025 #define GUI_MENUMANAGER_H
00026 
00027 #include <string>
00028 #include <QStringList>
00029 
00030 class QAction;
00031 class QMenu;
00032 
00033 namespace Gui {
00034 
00035 class MainWindow;
00036 
00037 class GuiExport MenuItem
00038 {
00039 public:
00040     MenuItem();
00041     MenuItem(MenuItem*);
00042     ~MenuItem();
00043 
00044     void setCommand(const std::string&);
00045     std::string command() const;
00046 
00047     bool hasItems() const;
00048     MenuItem* findItem(const std::string&);
00049     MenuItem* copy() const;
00050     uint count() const;
00051 
00052     void appendItem(MenuItem*);
00053     bool insertItem(MenuItem*, MenuItem*);
00054     void removeItem(MenuItem*);
00055     void clear();
00056 
00057     MenuItem& operator << (MenuItem* item);
00058     MenuItem& operator << (const std::string& command);
00059     QList<MenuItem*> getItems() const;
00060 
00061 private:
00062     std::string _name;
00063     QList<MenuItem*> _items;
00064 };
00065 
00073 class GuiExport MenuManager
00074 {
00075 public:
00077     void setup(MenuItem*) const;
00079     void setupContextMenu(MenuItem* item, QMenu &menu) const;
00080     void retranslate() const;
00081 
00083     static MenuManager* getInstance();
00084     static void destruct();
00085 
00086 protected:
00087     MenuManager();
00088     ~MenuManager();
00089 
00090 private:
00091     void setup(MenuItem*, QMenu*) const;
00092     void retranslate(QMenu*) const;
00093     QAction* findAction(const QList<QAction*>&, const QString&) const;
00094     QList<QAction*> findActions(const QList<QAction*>&, const QString&) const;
00095 
00096 private:
00097     static MenuManager* _instance;
00098 
00099     friend class MainWindow;
00100 };
00101 
00102 } // namespace Gui
00103 
00104 
00105 #endif // GUI_MENUMANAGER_H 

Generated on Wed Nov 23 19:00:22 2011 for FreeCAD by  doxygen 1.6.1