void manageSystemVolumes::pbPartition()
{
	openvolume * op = new openvolume( this ) ;
	connect( op,SIGNAL( HideUISignal() ),op,SLOT( deleteLater() ) ) ;
	connect( op,SIGNAL( HideUISignal() ),this,SLOT( setFocusTableWidget() ) ) ;
	connect( op,SIGNAL( clickedPartition( QString ) ),this,SLOT( clickedPartition( QString ) ) ) ;
	op->ShowAllPartitions() ;
}
Esempio n. 2
0
void luksaddkey::pbOpenPartition( void )
{
	openvolume * op = new openvolume( this ) ;
	op->showLuksOnly() ;
	connect( op,SIGNAL( clickedPartition( QString ) ),this,SLOT( ShowUI( QString ) ) ) ;
	connect( op,SIGNAL( HideUISignal() ),op,SLOT( deleteLater() ) ) ;
	connect( op,SIGNAL( HideUISignal() ),this,SLOT( setFieldFocus() ) ) ;
	op->ShowAllPartitions() ;
}
Esempio n. 3
0
void favorites::deviceAddress()
{
	openvolume * op = new openvolume( this ) ;
	connect( op,SIGNAL( clickedPartition( QString ) ),this,SLOT( PartitionEntry( QString ) ) ) ;
	connect( op,SIGNAL( HideUISignal() ),op,SLOT( deleteLater() ) ) ;
	op->ShowAllPartitions() ;
}
Esempio n. 4
0
void manageluksheader::pbOpenPartition()
{
	openvolume * op = new openvolume( this );
	connect( op,SIGNAL( clickedPartition( QString ) ),this,SLOT( selectedPartition( QString ) ) );
	connect( op,SIGNAL( HideUISignal() ),op,SLOT( deleteLater() ) );
	op->ShowNonSystemPartitions();
}
Esempio n. 5
0
void favorites::HideUI()
{
	this->hide() ;
	emit HideUISignal() ;
}
Esempio n. 6
0
void manageluksheader::HideUI()
{
	this->hide();
	emit HideUISignal();
}
Esempio n. 7
0
void createkeyfile::HideUI()
{
	this->hide() ;
	emit HideUISignal() ;
}
void manageSystemVolumes::HideUI()
{
	this->hide() ;
	emit HideUISignal() ;
}
Esempio n. 9
0
void luksaddkey::HideUI()
{
	this->hide() ;
	emit HideUISignal() ;
}
Esempio n. 10
0
void managevolumeheader::HideUI()
{
	this->hide() ;
	emit HideUISignal() ;
}