Searched defs:children (Results 1 - 20 of 20) sorted by relevance

/inkscape/src/widgets/
H A Dege-output-action.cpp222 GList* children = gtk_container_get_children( GTK_CONTAINER(proxies->data) ); local
223 if ( children && children->data ) {
224 if ( GTK_IS_BOX(children->data) ) {
225 children = gtk_container_get_children( GTK_CONTAINER(children->data) );
226 if ( children && g_list_next(children) ) {
227 GtkWidget* child = GTK_WIDGET( g_list_next(children)->data );
H A Dege-select-one-action.cpp860 GList* children = gtk_container_get_children( GTK_CONTAINER(proxies->data) ); local
861 if ( children && children->data ) {
862 gpointer combodata = g_object_get_data( G_OBJECT(children->data), "ege-combo-box" );
865 if (!combodata && GTK_IS_ALIGNMENT(children->data)) {
866 GList *other = gtk_container_get_children( GTK_CONTAINER(children->data) );
878 } else if ( GTK_IS_BOX(children->data) ) {
879 gpointer data = g_object_get_data( G_OBJECT(children->data), "ege-proxy_action-group" );
904 GList* children = gtk_container_get_children( GTK_CONTAINER(subMenu) ); local
905 if ( children
924 GList* children = gtk_container_get_children( GTK_CONTAINER(proxies->data) ); local
[all...]
H A Ddesktop-widget.cpp1851 } // children
2022 GList *children, *iter; local
2026 children = gtk_container_get_children (GTK_CONTAINER (menu));
2027 for ( iter = children ; iter ; iter = g_list_next (iter)) {
2030 g_list_free (children);
H A Dtoolbox.cpp1178 GList *children, *iter; local
1180 children = gtk_container_get_children(GTK_CONTAINER(toolbox));
1181 for ( iter = children ; iter ; iter = iter->next ) {
1184 g_list_free(children);
1270 GList* children = gtk_container_get_children(GTK_CONTAINER(child)); local
1271 if (children) {
1272 for (GList* curr = children; curr; curr = g_list_next(curr)) {
1305 g_list_free(children);
/inkscape/src/
H A Ddocument-subset.cpp38 Siblings children; member in struct:Inkscape::DocumentSubset::Relations::Record
47 found = std::find(children.begin(), children.end(), obj);
48 if ( found != children.end() ) {
49 return found - children.begin();
56 if (children.empty()) {
59 Siblings::const_iterator first=children.begin();
60 Siblings::const_iterator last=children.end() - 1;
86 return last - children.begin();
92 children
209 Siblings &children=record->children; local
252 Siblings &children=record.children; local
290 Siblings &children=record->children; local
[all...]
H A Dsp-mask.cpp141 std::vector<SPObject *> children = this->childList(false); local
142 for (std::vector<SPObject *>::const_iterator child = children.begin();child != children.end();++child) {
147 for (std::vector<SPObject *>::const_iterator child = children.begin();child != children.end();++child) {
175 std::vector<SPObject *> children = this->childList(false); local
176 for (std::vector<SPObject *>::const_iterator child = children.begin();child != children.end();++child) {
180 for (std::vector<SPObject *>::const_iterator child = children.begin();child != children
[all...]
H A Dsp-object.h209 SPObject *children; /* Our children */ member in class:SPObject
320 bool hasChildren() const { return ( children != NULL ); }
322 SPObject *firstChild() { return children; }
323 SPObject const *firstChild() const { return children; }
331 * Retrieves the children as a std vector object, optionally ref'ing the children
463 * @param propagate_descendants If it is is true, it recursively sends the delete signal to children.
470 * @param propagate Notify observers of this object and its children that they have been
479 * Removes all children excep
[all...]
H A Dsp-item-group.cpp182 // For a group, we need to update ourselves *after* updating children.
392 sp_item_group_ungroup (SPGroup *group, std::vector<SPItem*> &children, bool do_done) argument
423 /* Step 1 - generate lists of children objects */
448 * style changes to children rather than to the group itself.)
459 * if the transparent group's children weren't in a group), though that's
510 // the group is leaving forever, no heir, clones should take note; its children however are going to reemerge
532 // all children at the same pos, which inverts the order once again
535 // fill in the children list if non-null
540 children.insert(children
[all...]
H A Dselection-chemistry.cpp578 * Return a list of SPItems that are the children of 'list'
585 * ingroups - TRUE to recursively get grouped items children
812 std::vector<SPItem*> children; local
813 sp_item_group_ungroup(static_cast<SPGroup*>(parent_group), children, false); local
887 std::vector<SPItem*> children; local
888 sp_item_group_ungroup(dynamic_cast<SPGroup *>(obj), children, false); local
890 new_select.insert(new_select.end(),children.begin(),children.end());
1000 /* Construct reverse-ordered list of selected children. */
1082 /* Construct direct-ordered list of selected children
2319 static Iterator children(SPObject *o) { return o->firstChild(); } function in struct:Forward
2330 static Iterator children(SPObject *o) { function in struct:ListReverse
2366 typename D::Iterator children; local
3227 std::vector<SPObject*> children = symbol->childList(false); local
4145 std::vector<SPItem*> children; local
[all...]
/inkscape/src/libgdl/
H A Dgdl-dock-notebook.c250 children dock objects are detached */
455 GList *children, *l; local
457 children = gtk_container_get_children (GTK_CONTAINER (item->child));
458 for (l = children; l; l = l->next) {
464 g_list_free (children);
H A Dgdl-dock-object.c309 /* detach our dock object children if we have some, and even
371 /* detach children */
392 GList *children; local
400 children = gtk_container_get_children (GTK_CONTAINER (object));
401 if (g_list_length (children) <= 1) {
405 /* detach ourselves and then re-attach our children to our
407 children are detached */
411 /* Detach the children before detaching this object, since in this
412 * way the children can have access to the whole object hierarchy.
413 * Set the InDetach flag now, so the children kno
[all...]
H A Dgdl-dock-placeholder.c374 GList *children, *child; local
377 children = gtk_container_get_children (GTK_CONTAINER (container));
378 child = children;
677 * children and see if any of them matches the placement which is at
691 GList *children, *l; local
694 children = gtk_container_get_children (GTK_CONTAINER (host));
695 for (l = children; l; l = l->next) {
717 g_list_free (children);
H A Dgdl-dock.c749 /* detach children */
848 /* Otherwise try our children. */
1146 GList* children; local
1148 children = gtk_container_get_children (GTK_CONTAINER (dock_item));
1150 g_assert (g_list_length (children) == 2);
1160 (children->data),
1169 (children->next->data),
1175 (children->data),
1179 (children->next->data),
1185 g_list_free (children);
[all...]
H A Dgdl-switcher.c687 GList *children, *node; local
688 children = gtk_container_get_children (GTK_CONTAINER (switcher));
689 node = children;
710 g_list_free (children);
/inkscape/src/ui/dialog/
H A Dfiledialogimpl-gtkmm.cpp95 std::vector<Gtk::Widget *> children = parent->get_children(); local
96 for (unsigned int i = 0; i < children.size(); ++i) {
97 Gtk::Widget *child = children[i];
110 std::vector<Gtk::Widget *> children = parent->get_children();
111 for (unsigned int i = 0; i < children.size(); ++i) {
112 Gtk::Widget *child = children[i];
/inkscape/src/ui/tools/
H A Dtweak-tool.cpp387 GSList *children = NULL; local
390 children = g_slist_prepend(children, child);
394 for (GSList *i = children; i; i = i->next) {
402 g_slist_free(children);
954 SPObject *primitive_obj = style->getFilter()->children;
/inkscape/src/ui/widget/
H A Dselected-style.cpp1179 Glib::ListHandle<Gtk::Widget *> children = menu->get_children(); local
1180 for (Glib::ListHandle<Gtk::Widget *>::iterator iter = children.begin(); iter != children.end(); ++iter) {
/inkscape/src/extension/dbus/
H A Ddocument-interface.cpp1432 std::vector<SPObject*> children = parent->childList(false); local
1434 int size = children.size();
1439 for (std::vector<SPObject*>::iterator iter = children.begin(), e = children.end(); iter != e; ++iter) {
/inkscape/src/ui/
H A Dinterface.cpp1924 std::vector<SPItem*> children; local
1926 sp_item_group_ungroup(static_cast<SPGroup*>(_item), children); local
1927 _desktop->selection->setList(children);
1982 std::vector<SPItem*> children; local
1983 sp_item_group_ungroup(static_cast<SPAnchor*>(_item), children, false); local
/inkscape/
H A Dbuildtool.cpp793 for (std::size_t i=0 ; i<children.size() ; i++)
794 delete children[i];
807 { return children; }
856 children = other.children;
870 std::vector<Element *>children; member in class:buildtool::Element
994 for (iter = children.begin(); iter != children.end() ; iter++)
1008 for (std::size_t i=0; i<children.size() ; i++)
1009 children[
4739 std::vector<Element *> children = elem->getChildren(); local
4793 std::vector<Element *> children = elem->getChildren(); local
4852 std::vector<Element *> children = elem->getChildren(); local
7243 std::vector<Element *> children = elem->getChildren(); local
9910 std::vector<Element *> children = project->getChildren(); local
[all...]

Completed in 104 milliseconds