|
|
|
@ -435,7 +435,7 @@ void FormWindow::insertWidget()
|
|
|
|
|
++it;
|
|
|
|
|
if ( o->isWidgetType() &&
|
|
|
|
|
( (TQWidget*)o )->isVisibleTo( this ) &&
|
|
|
|
|
insertedWidgets.find( TQT_TQWIDGET(o) ) && TQT_BASE_OBJECT(o) != TQT_BASE_OBJECT(w) ) {
|
|
|
|
|
insertedWidgets.find( o ) && TQT_BASE_OBJECT(o) != TQT_BASE_OBJECT(w) ) {
|
|
|
|
|
TQRect r2( ( (TQWidget*)o )->pos(),
|
|
|
|
|
( (TQWidget*)o )->size() );
|
|
|
|
|
if ( r.contains( r2 ) )
|
|
|
|
@ -737,7 +737,7 @@ void FormWindow::handleMouseDblClick( TQMouseEvent *, TQWidget *w )
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
if ( !WidgetFactory::isPassiveInteractor( TQT_TQOBJECT(w) ) &&
|
|
|
|
|
( isMainContainer( TQT_TQOBJECT(w) ) || TQT_BASE_OBJECT(w) == TQT_BASE_OBJECT(this) ) )
|
|
|
|
|
( isMainContainer( w ) || TQT_BASE_OBJECT(w) == TQT_BASE_OBJECT(this) ) )
|
|
|
|
|
mainWindow()->editSource();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
@ -1569,7 +1569,7 @@ void FormWindow::invalidCheckedSelections()
|
|
|
|
|
|
|
|
|
|
void FormWindow::checkPreviewGeometry( TQRect &r )
|
|
|
|
|
{
|
|
|
|
|
if ( !TQT_TQRECT_OBJECT(rect()).contains( r ) ) {
|
|
|
|
|
if ( !rect().contains( r ) ) {
|
|
|
|
|
if ( r.left() < rect().left() )
|
|
|
|
|
r.moveTopLeft( TQPoint( 0, r.top() ) );
|
|
|
|
|
if ( r.right() > rect().right() )
|
|
|
|
@ -2525,7 +2525,7 @@ TQWidget *FormWindow::containerAt( const TQPoint &pos, TQWidget *notParentOf )
|
|
|
|
|
TQWidget *container = 0;
|
|
|
|
|
int depth = -1;
|
|
|
|
|
TQWidgetList selected = selectedWidgets();
|
|
|
|
|
if ( TQT_TQRECT_OBJECT(rect()).contains( mapFromGlobal( pos ) ) ) {
|
|
|
|
|
if ( rect().contains( mapFromGlobal( pos ) ) ) {
|
|
|
|
|
container = mainContainer();
|
|
|
|
|
depth = widgetDepth( container );
|
|
|
|
|
}
|
|
|
|
@ -2545,7 +2545,7 @@ TQWidget *FormWindow::containerAt( const TQPoint &pos, TQWidget *notParentOf )
|
|
|
|
|
// the rectangles of all ancestors of the container must contain the insert position
|
|
|
|
|
TQWidget *w = it.current();
|
|
|
|
|
while ( w && !w->isTopLevel() ) {
|
|
|
|
|
if ( !TQT_TQRECT_OBJECT(w->rect()).contains( ( w->mapFromGlobal( pos ) ) ) )
|
|
|
|
|
if ( !w->rect().contains( ( w->mapFromGlobal( pos ) ) ) )
|
|
|
|
|
break;
|
|
|
|
|
w = w->parentWidget();
|
|
|
|
|
}
|
|
|
|
|