1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This is free software; you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* This software 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 General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
#include "BaseIconNames.h"
#include "BrowsedLineEditor.h"
#include "File.h"
#include "FileDialog.h"
#include "IconEngine.h"
#include "InformationDialog.h"
#include "LineEditor.h"
#include "Util.h"
#include "Debug.h"
#include <QLayout>
#include <QToolButton>
#if QT_VERSION < 0x050000
#include <QProcessEnvironment>
#else
#include <QStandardPaths>
#endif
//____________________________________________________________
BrowsedLineEditor::BrowsedLineEditor( QWidget *parent ):
QWidget( parent ),
Counter( "BrowsedLineEditor" )
{
Debug::Throw( "BrowsedLineEditor::BrowsedLineEditor.\n" );
// insert horizontal layout
QHBoxLayout *layout = new QHBoxLayout;
layout->setMargin(0);
layout->setSpacing(2);
setLayout( layout );
// create line editor
lineEditor_ = new Editor( this );
layout->addWidget( lineEditor_, 1 );
// create button
QToolButton *button = new QToolButton( this );
button->setAutoRaise( true );
button->setIcon( IconEngine::get( IconNames::Open ) );
button->setToolTip( tr( "Browse file system" ) );
layout->addWidget( button, 0 );
// connect button
connect( button, SIGNAL(clicked()), SLOT(_browse()) );
}
//_____________________________________________________________
void BrowsedLineEditor::setTargetApplication( File target )
{
targetApplication_ = target;
if( findTargetButton_ && target.isEmpty() )
{
findTargetButton_->hide();
findTargetButton_->deleteLater();
findTargetButton_ = nullptr;
return;
}
if( !findTargetButton_ )
{
auto button = new QToolButton( this );
button->setAutoRaise( true );
button->setIcon( IconEngine::get( IconNames::Reload ) );
button->setText( tr( "Refresh" ) );
layout()->addWidget( button );
connect( button, SIGNAL(clicked()), SLOT(_findTargetApplication()) );
findTargetButton_ = button;
}
}
//____________________________________________________________
void BrowsedLineEditor::setFile( const QString& file )
{ editor().setText( file ); }
//____________________________________________________________
void BrowsedLineEditor::_browse()
{
Debug::Throw( "BrowsedLineEditor::_browse.\n" );
FileDialog dialog( this );
dialog.setAcceptMode( acceptMode_ );
dialog.setFileMode( fileMode_ );
if( !editor().text().isNull() ) dialog.selectFile( File( editor().text() ) );
QString file( dialog.getFile() );
if( !file.isNull() ) setFile( file );
return;
}
//_____________________________________________________________
void BrowsedLineEditor::_findTargetApplication()
{
// check if current text is valid
File current( editor().text() );
if( current.exists() ) return;
// path list
#if QT_VERSION < 0x050000
// get path list from environment
auto environment = QProcessEnvironment::systemEnvironment();
auto path = environment.value( "path" );
if( path.isEmpty() ) path = environment.value( "PATH" );
if( path.isEmpty() ) return;
// split
File::List pathList;
auto list = path.split(":", QString::SkipEmptyParts);
for( const auto& item:list ) pathList.append( File( item ) );
if( pathList.empty() ) return;
// find
File found( targetApplication_.find( pathList ) );
#else
File found( QStandardPaths::findExecutable( targetApplication_ ) );
#endif
editor().setText( found );
}
|