item-properties.h revision ddeadc2375f36eacdaa1686d67906a71fe760da0
/** @file
* \brief Display settings dialog
*/
/* Author:
* Lauris Kaplinski <lauris@ximian.com>
* Kris De Gussem <Kris.DeGussem@gmail.com>
*
* Copyright (C) 2001 Ximian, Inc.
* Copyright (C) 2011 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef SEEN_DIALOGS_ITEM_PROPERTIES_H
#define SEEN_DIALOGS_ITEM_PROPERTIES_H
#include <gtkmm.h>
#include "dialog-events.h"
#include "../widgets/sp-attribute-widget.h"
void sp_item_dialog(void);
/**
* A dialog widget to show object properties.
*
* A widget to enter an ID, label, title and description for an object.
* In addition it allows to edit the properties of an object.
*/
SPItemDialog ();
~SPItemDialog ();
/**
* Updates entries and other child widgets on selection change, object modification, etc.
*/
void widget_setup(void);
gint x;
gint y;
gint w;
gint h;
bool blocked;
bool closing;
/**
* Constructor auxiliary function creating the child widgets.
*/
void MakeWidget(void);
/**
* Sets object properties (ID, label, title, description) on user input.
*/
void label_changed(void);
/**
* Callback for checkbox Lock.
*/
void sensitivity_toggled (void);
/**
* Callback for checkbox Hide.
*/
void hidden_toggled(void);
};
#endif
/*
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 :