|
|
|
|
@ -76,7 +76,7 @@ void MyPermPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
|
|
|
|
|
Layout0 = new TQVBoxLayout( 0, 0, 6 );
|
|
|
|
|
|
|
|
|
|
groupPermission = new TQGroupBox ( i18n("Access permissions"), w );
|
|
|
|
|
groupPermission->setEnabled( FALSE );
|
|
|
|
|
groupPermission->setEnabled( false );
|
|
|
|
|
|
|
|
|
|
gl = new TQGridLayout (groupPermission, 6, 6, 15);
|
|
|
|
|
gl->addRowSpacing(0, 10);
|
|
|
|
|
@ -125,17 +125,17 @@ void MyPermPlugin::drawInterface( TQWidget* w, TQVBoxLayout* l )
|
|
|
|
|
permBox[row][col] = cb;
|
|
|
|
|
gl->addWidget (permBox[row][col], row+2, col+1);
|
|
|
|
|
|
|
|
|
|
permBox[row][0]->setChecked( TRUE );
|
|
|
|
|
permBox[row][0]->setChecked( true );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
permBox[0][1]->setChecked( TRUE );
|
|
|
|
|
permBox[0][1]->setChecked( true );
|
|
|
|
|
|
|
|
|
|
gl->setColStretch(6, 10);
|
|
|
|
|
|
|
|
|
|
checkOwner = new TQCheckBox( i18n("Change &Owner"), w );
|
|
|
|
|
|
|
|
|
|
groupOwner = new TQGroupBox ( i18n("Ownership"), w );
|
|
|
|
|
groupOwner->setEnabled( FALSE );
|
|
|
|
|
groupOwner->setEnabled( false );
|
|
|
|
|
groupOwner->setColumnLayout(0, TQt::Vertical );
|
|
|
|
|
groupOwner->layout()->setSpacing( 6 );
|
|
|
|
|
groupOwner->layout()->setMargin( 11 );
|
|
|
|
|
|