/*
* Authors:
* bulia byak <buliabyak@users.sf.net>
* Bryce W. Harrington <bryce@bryceharrington.org>
* Lauris Kaplinski <lauris@kaplinski.com>
* Jon Phillips <jon@rejon.org>
* Ralf Stephan <ralf@ark.in-berlin.de> (Gtkmm)
* Jon A. Cruz <jon@joncruz.org>
* Abhishek Sharma
*
* Copyright (C) 2000 - 2005 Authors
*
* Released under GNU GPL. Read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <gtkmm/scrolledwindow.h>
#include "inkscape.h"
#include "sp-object.h"
#include "rdf.h"
#include "ui/widget/registry.h"
#include "sp-root.h"
#include "document-undo.h"
#include "document-private.h"
#include "preferences.h"
#include "verbs.h"
#include "entity-entry.h"
namespace Inkscape {
namespace UI {
namespace Widget {
//===================================================
//---------------------------------------------------
{
{
case RDF_FORMAT_LINE:
break;
case RDF_FORMAT_MULTILINE:
break;
default:
g_warning ("An unknown RDF format was requested.");
}
return obj;
}
{
}
{
}
{
}
{
_packable = e;
_changed_connection = e->signal_changed().connect (sigc::mem_fun (*this, &EntityLineEntry::on_changed));
}
{
}
{
// If RDF title is not set, get the document's <title> and set the RDF:
}
}
{
}
}
void
{
if (_wr->isUpdating()) return;
_wr->setUpdating (true);
}
}
_wr->setUpdating (false);
}
{
_packable = s;
_v.set_accepts_tab (false);
_changed_connection = _v.get_buffer()->signal_changed().connect (sigc::mem_fun (*this, &EntityMultiLineEntry::on_changed));
}
{
}
{
// If RDF title is not set, get the document's <title> and set the RDF:
}
}
{
}
}
void
{
if (_wr->isUpdating()) return;
_wr->setUpdating (true);
}
_wr->setUpdating (false);
}
} // namespace Dialog
} // namespace UI
} // namespace Inkscape
/*
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 :