41 lines
889 B
Text
41 lines
889 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,50,39)
|
|
Text = ("Ajustar SUDO")
|
|
Icon = Picture["sudo.png"]
|
|
{ txtClaveRoot TextBox
|
|
MoveScaled(24,9,24,4)
|
|
Password = True
|
|
}
|
|
{ SudoComodo RadioButton
|
|
MoveScaled(2,15,46,4)
|
|
Text = ("Sudo Cómodo (sin pedir contraseña)")
|
|
Value = True
|
|
}
|
|
{ SudoSeguro RadioButton
|
|
MoveScaled(2,20,46,4)
|
|
Text = ("Sudo Seguro (pide clave siempre)")
|
|
}
|
|
{ SinSudo RadioButton
|
|
MoveScaled(2,25,46,4)
|
|
Text = ("Quitar Sudo a mi usuario")
|
|
}
|
|
{ btnAjustarSudo Button
|
|
MoveScaled(20,32,28,4)
|
|
Text = ("Ajustar SUDO a mi usuario")
|
|
}
|
|
{ btnSalir Button
|
|
MoveScaled(2,32,16,4)
|
|
Text = ("Salir")
|
|
}
|
|
{ txtUsuario TextLabel
|
|
MoveScaled(2,3,46,4)
|
|
Border = Border.Plain
|
|
}
|
|
{ lblClaveRoot TextLabel
|
|
MoveScaled(2,9,21,4)
|
|
Text = ("Escriba clave de root:")
|
|
Alignment = Align.Center
|
|
}
|
|
}
|