/* This file is part of the KDE project Copyright (C) 2004 Cedric Pasteur Copyright (C) 2007 Jaroslaw Staniek This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include "form.h" #include "objecttree.h" #include "utils.h" using namespace KFormDesigner; void KFormDesigner::removeChildrenFromList(WidgetList &list) { for(WidgetListIterator it(list); it.current() != 0; ++it) { TQWidget *w = it.current(); // If any widget in the list is a child of this widget, we remove it from the list for(WidgetListIterator it2(list); it2.current() != 0; ++it2) { TQWidget *widg = it2.current(); if((w != widg) && (w->child(widg->name()))) { kdDebug() << "Removing the widget " << widg->name() << "which is a child of " << w->name() << endl; list.remove(widg); } } } } void KFormDesigner::installRecursiveEventFilter(TQObject *object, TQObject *container) { if(!object || !container|| !object->isWidgetType()) return; kdDebug() << "Installing event filter on widget: " << object->name() << " directed to " << container->name() << endl; object->installEventFilter(container); if(((TQWidget*)object)->ownCursor()) ((TQWidget*)object)->setCursor(TQCursor(TQt::ArrowCursor)); TQObjectList list = object->childrenListObject(); if(list.isEmpty()) return; for(TQObject *obj = list.first(); obj; obj = list.next()) installRecursiveEventFilter(obj, container); } void KFormDesigner::removeRecursiveEventFilter(TQObject *object, TQObject *container) { object->removeEventFilter(container); if(!object->isWidgetType()) return; TQObjectList list = object->childrenListObject(); if(list.isEmpty()) return; for(TQObject *obj = list.first(); obj; obj = list.next()) removeRecursiveEventFilter(obj, container); } void KFormDesigner::setRecursiveCursor(TQWidget *w, Form *form) { ObjectTreeItem *tree = form->objectTree()->lookup(w->name()); if(tree && ((tree->modifiedProperties()->contains("cursor")) || !tree->tqchildren()->isEmpty()) && !w->inherits(TQLINEEDIT_OBJECT_NAME_STRING) && !w->inherits(TQTEXTEDIT_OBJECT_NAME_STRING) ) //fix weird behaviour return; // if the user has set a cursor for this widget or this is a container, don't change it if(w->ownCursor()) w->setCursor(TQt::ArrowCursor); TQObjectList *l = w->queryList( TQWIDGET_OBJECT_NAME_STRING ); for(TQObject *o = l->first(); o; o = l->next()) ((TQWidget*)o)->setCursor(TQt::ArrowCursor); delete l; } TQSize KFormDesigner::getSizeFromChildren(TQWidget *w, const char *inheritClass) { int tmpw = 0, tmph = 0; TQObjectList *list = w->queryList(inheritClass, 0, false, false); for(TQObject *o = list->first(); o; o = list->next()) { TQRect r = ((TQWidget*)o)->tqgeometry(); tmpw = TQMAX(tmpw, r.right()); tmph = TQMAX(tmph, r.bottom()); } delete list; return TQSize(tmpw, tmph) + TQSize(10, 10); } // ----------------- HorWidgetList::HorWidgetList(TQWidget *tqtopLevelWidget) : WidgetList() , m_tqtopLevelWidget(tqtopLevelWidget) { } HorWidgetList::~HorWidgetList() { } int HorWidgetList::compareItems(TQPtrCollection::Item item1, TQPtrCollection::Item item2) { TQWidget *w1 = TQT_TQWIDGET(item1); TQWidget *w2 = TQT_TQWIDGET(item2); return w1->mapTo(m_tqtopLevelWidget, TQPoint(0,0)).x() - w2->mapTo(m_tqtopLevelWidget, TQPoint(0,0)).x(); } // ----------------- VerWidgetList::VerWidgetList(TQWidget *tqtopLevelWidget) : WidgetList() , m_tqtopLevelWidget(tqtopLevelWidget) { } VerWidgetList::~VerWidgetList() { } int VerWidgetList::compareItems(TQPtrCollection::Item item1, TQPtrCollection::Item item2) { TQWidget *w1 = TQT_TQWIDGET(item1); TQWidget *w2 = TQT_TQWIDGET(item2); int y1, y2; TQObject *page1 = 0; TabWidget *tw1 = KFormDesigner::findParent(w1, "KFormDesigner::TabWidget", page1); if (tw1) // special case y1 = w1->mapTo(m_tqtopLevelWidget, TQPoint(0,0)).y() + tw1->tabBarHeight() -2 -2; else y1 = w1->mapTo(m_tqtopLevelWidget, TQPoint(0,0)).y(); TQObject *page2 = 0; TabWidget *tw2 = KFormDesigner::findParent(w2, "KFormDesigner::TabWidget", page2); if (tw1 && tw2 && tw1 == tw2 && page1 != page2) { // this sorts widgets by tabs there're put in return tw1->indexOf(TQT_TQWIDGET(page1)) - tw2->indexOf(TQT_TQWIDGET(page2)); } if (tw2) // special case y2 = w2->mapTo(m_tqtopLevelWidget, TQPoint(0,0)).y() + tw2->tabBarHeight() -2 -2; else y2 = w2->mapTo(m_tqtopLevelWidget, TQPoint(0,0)).y(); kdDebug() << w1->name() << ": " << y1 << " " << " | " << w2->name() << ": " << y2 << endl; //kdDebug() << w1->name() << ": " << w1->mapTo(m_tqtopLevelWidget, TQPoint(0,0)) << " " << w1->y() //<< " | " << w2->name() << ":" /*<< w2->mapFrom(m_tqtopLevelWidget, TQPoint(0,w2->y()))*/ << " " << w2->y() << endl; return y1 - y2; } #include "utils.moc"