51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
/****************************************************************************
|
|
**
|
|
* QApplication derived class to catch QFileOpenEvent on Mac OS.
|
|
* This implements opening files on double click in Finder,
|
|
* whether the app is running or not.
|
|
* When the event arrives on start up, the file name is cached here,
|
|
* later an eventFilter in QC_ApplicationWindow handles the event directly.
|
|
|
|
Copyright (C) 2018 A. Stebich (librecad@mail.lordofbikes.de)
|
|
Copyright (C) 2018 Simon Wells <simonrwells@gmail.com>
|
|
|
|
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; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
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.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**********************************************************************/
|
|
|
|
#ifndef LC_APPLICATION_H
|
|
#define LC_APPLICATION_H
|
|
|
|
#include <QApplication>
|
|
|
|
class QStringList;
|
|
|
|
class LC_Application : public QApplication
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit LC_Application(int &argc, char **argv);
|
|
|
|
QStringList const& fileList(void) const;
|
|
|
|
protected:
|
|
bool event(QEvent *event) Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
QStringList files;
|
|
};
|
|
|
|
#endif // LC_APPLICATION_H
|