orca-robotics INTRODUCTION Overview Download and Install Documentation REPOSITORY Interfaces Drivers Libraries Utilities Software Map DEVELOPER Dashboard PEOPLE Contributors Users Project Download Mailing lists
|
guielementset.h00001 /* 00002 * Orca-Robotics Project: Components for robotics 00003 * http://orca-robotics.sf.net/ 00004 * Copyright (c) 2004-2008 Alex Brooks, Alexei Makarenko, Tobias Kaupp 00005 * 00006 * This copy of Orca is licensed to you under the terms described in 00007 * the LICENSE file included in this distribution. 00008 * 00009 */ 00010 00011 #ifndef HYDROQGUI_GUIELEMENTSET_H 00012 #define HYDROQGUI_GUIELEMENTSET_H 00013 00014 #include <QStringList> 00015 #include <hydroutil/uncopyable.h> 00016 #include <hydroqguielementutil/iguielement.h> 00017 #include <hydroqgui/platformfocusmanager.h> 00018 00019 namespace hydroqgui { 00020 00026 class GuiElementSet : public hydroutil::Uncopyable 00027 { 00028 public: 00029 00030 GuiElementSet(); 00031 00032 // void updateGuiElements(); 00033 void setUseTransparency(bool useTransparency); 00034 void addGuiElement( hydroqguielementutil::IGuiElement *newGuiElement ); 00035 00036 // Removes (and deletes) the index'th Gui Element 00037 void removeGuiElement( int index ); 00038 00039 const QList<hydroqguielementutil::IGuiElement*> &elements() const { return elements_; } 00040 00041 private: 00042 00043 bool currentlyUsingTransparency_; 00044 QList<hydroqguielementutil::IGuiElement*> elements_; 00045 00046 }; 00047 00048 } 00049 00050 #endif |
Webmaster: Tobias Kaupp (tobasco at users.sourceforge.net)