object-attributes.cpp revision 8a539cb9d32e7082b6a2774815acc2eccc5e1694
#define __SP_OBJECT_ATTRIBUTES_C__
/**
* \brief Generic properties editor
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* bulia byak <buliabyak@users.sf.net>
*
* Copyright (C) 1999-2005 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "macros.h"
#include "sp-anchor.h"
#include "sp-attribute-widget.h"
#include <sigc++/connection.h>
struct SPAttrDesc {
};
static const SPAttrDesc anchor_desc[] = {
// TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkRoleAttribute
// Identifies the type of the related resource with an absolute URI
// TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkArcRoleAttribute
// For situations where the nature/role alone isn't enough, this offers an additional URI defining the purpose of the link.
// TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkTitleAttribute
// TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkActuateAttribute
};
static const SPAttrDesc image_desc[] = {
};
static void
{
}
static void
{
sigc::connection *release_connection = (sigc::connection *)g_object_get_data(G_OBJECT(window), "release_connection");
delete release_connection;
}
static void
const SPAttrDesc *desc,
{
GtkWidget *w, *t;
len = 0;
for (i = 0; i < len; i++) {
}
gtk_widget_show (t);
gtk_container_add (GTK_CONTAINER (w), t);
gtk_widget_show (w);
} // end of sp_object_attr_show_dialog()
void
{
}
} // end of sp_object_attributes_dialog()
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :