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 150 151 152 153 154 155 156 157 158
|
/******************************************************************************
*
* 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 "LineEditor.h"
#include "CustomPixmap.h"
#include "File.h"
#include "IconSize.h"
#include "BrowseIconButton.h"
#include "ImageFileDialog.h"
#include "InformationDialog.h"
#include "XmlOptions.h"
#include "QtUtil.h"
#include <QMimeData>
#include <QUrl>
//_____________________________________________
BrowseIconButton::BrowseIconButton( QWidget* parent, const QString& file):
CustomToolButton( parent )
{
setIconSize( IconSize::get( IconSize::Huge ) );
setAutoRaise( false );
setFile( file, false );
connect( this, SIGNAL(clicked()), SLOT(_browse()) );
setAcceptDrops( true );
}
//_____________________________________________
bool BrowseIconButton::setFile( const QString& file, bool check )
{
Debug::Throw() << "BrowseIconButton::setFile - " << file << endl;
// do nothing for empty file
if( file.isEmpty() ) return false;
// load pixmap
CustomPixmap pixmap( file );
// update file if pixmap is valid or current file is undefined
if( !pixmap.isNull() || file_.isEmpty() )
{ file_ = file; }
// update pixmap if valid
if( !pixmap.isNull() )
{
// resize pixmap
if( pixmap.size() != IconSize::get( IconSize::Huge ) )
{ pixmap = CustomPixmap( pixmap.scaled( IconSize::get( IconSize::Huge ), Qt::KeepAspectRatio, Qt::SmoothTransformation ) ); }
setIcon( pixmap );
return true;
}
// popup dialog if invalid
if( check )
{ InformationDialog( this, QString( tr( "Invalid icon file %1" ) ).arg( file ) ).exec(); }
// if file, set pixmap to empty
if( noIconPixmap_.isNull() ) {
noIconPixmap_ = CustomPixmap( IconSize::get( IconSize::Huge ), CustomPixmap::Flag::Transparent );
setIcon( noIconPixmap_ );
}
return false;
}
//_____________________________________________
void BrowseIconButton::_browse()
{
Debug::Throw( "BrowseIconButton::_Browse.\n" );
ImageFileDialog dialog( this );
dialog.setFileMode( QFileDialog::AnyFile );
dialog.setAcceptMode( QFileDialog::AcceptOpen );
dialog.setWindowTitle( tr( "Open" ) );
QtUtil::centerOnParent( &dialog );
if( !file_.isEmpty() )
{
// warning: inneficient
File path( File( file_ ).path() );
if( path.exists() && path.isDirectory() ) dialog.setDirectory( path );
dialog.selectFile( File( file_ ) );
}
dialog.show();
if( dialog.exec() == QDialog::Rejected ) return;
// retrieve selected files
QStringList files( dialog.selectedFiles() );
// check file size
if( files.size() > 1 )
{
InformationDialog( this, tr( "Too many files selected." ) ).exec();
return;
}
if( files.size() < 1 )
{
InformationDialog( this, tr( "No file selected." ) ).exec();
return;
}
setFile( files.front(), true );
return;
}
//______________________________________________________________________
void BrowseIconButton::dragEnterEvent( QDragEnterEvent *event )
{
Debug::Throw( "BrowseIconButton::dragEnterEvent.\n" );
if (event->mimeData()->hasUrls()) event->acceptProposedAction();
}
//______________________________________________________________________
void BrowseIconButton::dropEvent( QDropEvent *event )
{
Debug::Throw( "BrowseIconButton::dropEvent.\n" );
// check if event is valid
if( !event->mimeData()->hasUrls() ) return;
// loop over event URLs
for( const auto& url:event->mimeData()->urls() )
{
QFileInfo fileInfo( url.toLocalFile() );
if( fileInfo.exists() && setFile( fileInfo.filePath(), true ) ) event->acceptProposedAction();
}
return;
}
|