object-attributes.cpp revision 9b81fa83753043baf5209bd3fa1a631192cabd67
/**
* @file
* 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
*/
#include <string>
#include <cstring>
#include <stddef.h>
#include <sigc++/connection.h>
#include "macros.h"
#include "sp-anchor.h"
#include "widgets/sp-attribute-widget.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 const SPAttrDesc image_nohref_desc[] = {
};
{
}
{
sigc::connection *release_connection = (sigc::connection *)g_object_get_data(G_OBJECT(window), "release_connection");
delete release_connection;
}
const SPAttrDesc *desc,
{
int len;
GtkWidget *w;
SPAttributeTable* t;
title = _("Link Properties");
title = _("Image Properties");
} else {
}
len = 0;
{
len += 1;
}
t->show();
//gtk_container_add (GTK_CONTAINER (w), (GtkWidget*)t->gobj());
gtk_widget_show (w);
} // end of sp_object_attr_show_dialog()
{
} else {
}
}
} // 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:fileencoding=utf-8:textwidth=99 :