1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- This file is part of QTau
- Copyright (C) 2013-2018 Tobias "Tomoko" Platen <tplaten@posteo.de>
- Copyright (C) 2013 digited <https://github.com/digited>
- Copyright (C) 2010-2013 HAL@ShurabaP <https://github.com/haruneko>
- QTau 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 3 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, see <http://www.gnu.org/licenses/>.
- SPDX-License-Identifier: GPL-3.0+
- */
- #include <QApplication>
- #include "Controller.h"
- #include <QIcon>
- #include "Utils.h"
- #include <sys/file.h>
- #include <errno.h>
- #include <unistd.h>
- #define __devloglevel__ 8
- int main(int argc, char *argv[])
- {
- QApplication app(argc, argv);
- app.setWindowIcon(QIcon(":/images/appicon_ouka_alice.png"));
- int pid_file = open("/tmp/qtau.lock", O_CREAT | O_RDWR, 0666);
- int rc = flock(pid_file, LOCK_EX | LOCK_NB);
- if(rc) {
- if(EWOULDBLOCK == errno)
- {
- DEVLOG_ERROR("qtau is running");
- return rc;
- }
- }
- //NOTHING YET: metatypes for plugins and jack
- //qRegisterMetaType<EAudioPlayback>("EAudioPlayback");
- qtauController c(app.applicationDirPath());
- c.run(); // create UI that can immediately call back, thus requires already created & inited controller
- rc = app.exec();
- unlink("/tmp/qtau.lock");
- c.shutdown(rc);//kill all threads
- return rc;
- }
|