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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
/***************************************************************************
* copyright : (C) 2003-2007 by Pascal Brachet *
* addons by Frederic Devernay <frederic.devernay@m4x.org> *
* addons by Luis Silvestre *
* http://www.xm1math.net/texmaker/ *
* *
* 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. *
* *
***************************************************************************/
#include "mostQtHeaders.h"
/*! \mainpage TexStudio
*
* \see Texstudio
* \see PDFDocument
*/
#include "texstudio.h"
#include "smallUsefulFunctions.h"
#include "debughelper.h"
#include "utilsVersion.h"
#include <qtsingleapplication.h>
#include <QSplashScreen>
#ifdef Q_OS_WIN32
#include "windows.h"
typedef BOOL (WINAPI *AllowSetForegroundWindowFunc)(DWORD);
#endif
class TexstudioApp : public QtSingleApplication
{
public:
bool initialized;
QString delayedFileLoad;
Texstudio *mw; // Moved from private:
TexstudioApp(int &argc, char **argv);
TexstudioApp(QString &id, int &argc, char **argv);
~TexstudioApp();
void init(QStringList &cmdLine); // This function does all the initialization instead of the constructor.
/*really slow global event logging:
bool notify(QObject* obj, QEvent* event){
qWarning(qPrintable(QString("%1 obj %2 named %3 typed %4 child of %5 received %6").arg(QTime::currentTime().toString("HH:mm:ss:zzz")).arg((long)obj,8,16).arg(obj->objectName()).arg(obj->metaObject()->className()).arg(obj->parent()?obj->parent()->metaObject()->className():"").arg(event->type())));
return QApplication::notify(obj,event);
}
*/
protected:
bool event(QEvent *event);
};
TexstudioApp::TexstudioApp(int &argc, char **argv) : QtSingleApplication(argc, argv)
{
mw = 0;
initialized = false;
}
TexstudioApp::TexstudioApp(QString &id, int &argc, char **argv) : QtSingleApplication(id, argc, argv)
{
mw = 0;
initialized = false;
}
void TexstudioApp::init(QStringList &cmdLine)
{
QPixmap pixmap(":/images/splash.png");
QSplashScreen *splash = new QSplashScreen(pixmap);
splash->show();
processEvents();
mw = new Texstudio(0, 0, splash);
connect(this, SIGNAL(lastWindowClosed()), this, SLOT(quit()));
splash->finish(mw);
delete splash;
initialized = true;
if (!delayedFileLoad.isEmpty()) cmdLine << delayedFileLoad;
mw->executeCommandLine(cmdLine, true);
mw->startupCompleted();
}
TexstudioApp::~TexstudioApp()
{
if (mw) delete mw;
}
bool TexstudioApp::event(QEvent *event)
{
if (event->type() == QEvent::FileOpen) {
QFileOpenEvent *oe = static_cast<QFileOpenEvent *>(event);
if (initialized) mw->load(oe->file());
else delayedFileLoad = oe->file();
event->accept();
return true;
}
return QApplication::event(event);
}
QString generateAppId()
{
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
QString user = env.value("USER");
if (user.isEmpty()) {
user = env.value("USERNAME");
}
return QString("%1_%2").arg(TEXSTUDIO).arg(user);
}
QStringList parseArguments(const QStringList &args, bool &outStartAlways)
{
QStringList cmdLine;
for (int i = 1; i < args.count(); ++i) {
QString cmdArgument = args[i];
if (cmdArgument.startsWith('-')) {
// various commands
if (cmdArgument == "--start-always")
outStartAlways = true;
else if (cmdArgument == "--no-session")
ConfigManager::dontRestoreSession = true;
else if ((cmdArgument == "-line" || cmdArgument == "--line") && (++i < args.count()))
cmdLine << "--line" << args[i];
else if ((cmdArgument == "-page" || cmdArgument == "--page") && (++i < args.count()))
cmdLine << "--page" << args[i];
else if ((cmdArgument == "-insert-cite" || cmdArgument == "--insert-cite") && (++i < args.count()))
cmdLine << "--insert-cite" << args[i];
else if (cmdArgument == "--ini-file" && (++i < args.count()))
ConfigManager::iniFileOverride = args[i];
else if (cmdArgument.startsWith("-"))
cmdLine << cmdArgument;
} else
cmdLine << QFileInfo(cmdArgument).absoluteFilePath();
}
return cmdLine;
}
bool handleCommandLineOnly(const QStringList &cmdLine) {
// note: stdout is not supported for Win GUI applications. Will simply not output anything there.
if (cmdLine.contains("--help")) {
QTextStream(stdout) << "Usage: texstudio [options] [file]\n"
<< "\n"
<< "Options:\n"
<< " --ini-file FILE use the specified config file\n"
<< " --master define the document as explicit root document\n"
<< " --line LINE[:COL] position the cursor at line LINE and column COL\n"
<< " --insert-cite CITATION inserts the given citation\n"
<< " --start-always start a new instance, even if TXS is already running\n"
<< " --pdf-viewer-only run as a standalone pdf viewer without an editor\n"
<< " --page PAGENUM display a certain page in the pdf viewer\n"
<< " --no-session do not load/save the session at startup/close\n";
return true;
}
if (cmdLine.contains("--version")) {
QTextStream(stdout) << "TeXstudio " << TXSVERSION << " (" << TEXSTUDIO_HG_REVISION << ")\n";
return true;
}
return false;
}
int main(int argc, char **argv)
{
QString appId = generateAppId();
// This is a dummy constructor so that the programs loads fast.
TexstudioApp a(appId, argc, argv);
bool startAlways = false;
QStringList cmdLine = parseArguments(QCoreApplication::arguments(), startAlways);
if (handleCommandLineOnly(cmdLine)) {
return 0;
}
if (!startAlways) {
if (a.isRunning()) {
#ifdef Q_OS_WIN32
AllowSetForegroundWindowFunc asfw = (AllowSetForegroundWindowFunc) GetProcAddress(GetModuleHandleA("user32.dll"), "AllowSetForegroundWindow");
if (asfw) asfw(/*ASFW_ANY*/(DWORD)(-1));
#endif
a.sendMessage(cmdLine.join("#!#"));
return 0;
}
}
a.setApplicationName( TEXSTUDIO );
a.init(cmdLine); // Initialization takes place only if there is no other instance running.
QObject::connect(&a, SIGNAL(messageReceived(const QString &)),
a.mw, SLOT(onOtherInstanceMessage(const QString &)));
try {
return a.exec();
} catch (...) {
#ifndef NO_CRASH_HANDLER
catchUnhandledException();
#endif
throw;
}
}
|