plugin_descriptor.cpp
Go to the documentation of this file.
00001 /*
00002  * Copyright (c) 2011, Dirk Thomas, TU Darmstadt
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without
00006  * modification, are permitted provided that the following conditions
00007  * are met:
00008  *
00009  *   * Redistributions of source code must retain the above copyright
00010  *     notice, this list of conditions and the following disclaimer.
00011  *   * Redistributions in binary form must reproduce the above
00012  *     copyright notice, this list of conditions and the following
00013  *     disclaimer in the documentation and/or other materials provided
00014  *     with the distribution.
00015  *   * Neither the name of the TU Darmstadt nor the names of its
00016  *     contributors may be used to endorse or promote products derived
00017  *     from this software without specific prior written permission.
00018  *
00019  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
00020  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
00021  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
00022  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
00023  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
00024  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
00025  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00026  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00027  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
00028  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
00029  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
00030  * POSSIBILITY OF SUCH DAMAGE.
00031  */
00032 
00033 #include <qt_gui_cpp/plugin_descriptor.h>
00034 
00035 namespace qt_gui_cpp {
00036 
00037 PluginDescriptor::PluginDescriptor(const QString& plugin_id, const QMap<QString, QString>& attributes)
00038 {
00039   plugin_id_ = plugin_id;
00040   attributes_ = attributes;
00041 }
00042 
00043 const QString& PluginDescriptor::pluginId() const
00044 {
00045   return plugin_id_;
00046 }
00047 
00048 const QMap<QString, QString>& PluginDescriptor::attributes() const
00049 {
00050   return attributes_;
00051 }
00052 
00053 QMap<QString, QString>& PluginDescriptor::attributes()
00054 {
00055   return attributes_;
00056 }
00057 
00058 const QMap<QString, QString>& PluginDescriptor::actionAttributes() const
00059 {
00060   return action_attributes_;
00061 }
00062 
00063 void PluginDescriptor::setActionAttributes(const QString& label, const QString& statustip, const QString& icon, const QString& icontype)
00064 {
00065   action_attributes_["label"] = label;
00066   action_attributes_["statustip"] = statustip;
00067   action_attributes_["icon"] = icon;
00068   action_attributes_["icontype"] = icontype;
00069 }
00070 
00071 int PluginDescriptor::countGroups() const
00072 {
00073   return groups_.size();
00074 }
00075 
00076 QMap<QString, QString> PluginDescriptor::group(int index) const
00077 {
00078   return groups_[index];
00079 }
00080 
00081 void PluginDescriptor::addGroupAttributes(const QString& label, const QString& statustip, const QString& icon, const QString& icontype)
00082 {
00083   QMap<QString, QString> attributes;
00084   attributes["label"] = label;
00085   attributes["statustip"] = statustip;
00086   attributes["icon"] = icon;
00087   attributes["icontype"] = icontype;
00088   groups_.append(attributes);
00089 }
00090 
00091 QMap<QString, QString> PluginDescriptor::toDictionary() const
00092 {
00093   QMap<QString, QString> dict;
00094   QString plugin_prefix = plugin_id_ + ".";
00095   dict[plugin_prefix + "plugin_id"] = plugin_id_;
00096   for (QMap<QString, QString>::const_iterator it = attributes_.constBegin(); it != attributes_.constEnd(); it++)
00097   {
00098     dict[plugin_prefix + QString("attributes.") + it.key()] = it.value();
00099   }
00100   for (QMap<QString, QString>::const_iterator it = action_attributes_.constBegin(); it != action_attributes_.constEnd(); it++)
00101   {
00102     dict[plugin_prefix + QString("action.") + it.key()] = it.value();
00103   }
00104   int group_index = 1;
00105   for (QVector<QMap<QString, QString> >::const_iterator it = groups_.constBegin(); it != groups_.constEnd(); it++)
00106   {
00107     QString prefix = QString("groups.") + QString::number(group_index) + QString(".");
00108     for (QMap<QString, QString>::const_iterator jt = it->constBegin(); jt != it->constEnd(); jt++)
00109     {
00110       dict[plugin_prefix + prefix + jt.key()] = jt.value();
00111     }
00112     group_index++;
00113   }
00114   return dict;
00115 }
00116 
00117 } // namespace


qt_gui_cpp
Author(s): Dirk Thomas
autogenerated on Fri Jan 3 2014 11:44:04