| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //##########################################################################
- //# #
- //# CLOUDCOMPARE #
- //# #
- //# This program 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; version 2 or later of the License. #
- //# #
- //# This program 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. #
- //# #
- //# COPYRIGHT: CloudCompare project #
- //# #
- //##########################################################################
- #include <QtGlobal>
- #ifdef Q_OS_MAC
- #include <QFileOpenEvent>
- #endif
- #include "ccviewer.h"
- #include "ccViewerApplication.h"
- ccViewerApplication::ccViewerApplication( int &argc, char **argv, bool isCommandLine )
- : ccApplicationBase( argc, argv, isCommandLine, QString( "1.41 (%1)" ).arg(__DATE__))
- {
- setApplicationName( "CloudCompareViewer" );
- }
- void ccViewerApplication::setViewer(ccViewer *inViewer)
- {
- mViewer = inViewer;
- }
- bool ccViewerApplication::event(QEvent *inEvent)
- {
- #ifdef Q_OS_MAC
- switch ( inEvent->type() )
- {
- case QEvent::FileOpen:
- {
- if ( mViewer == nullptr )
- {
- return false;
- }
-
- mViewer->addToDB( { static_cast<QFileOpenEvent *>(inEvent)->file() } );
- return true;
- }
-
- default:
- break;
- }
- #endif
- return ccApplicationBase::event( inEvent );
- }
|