📄 main.cpp
字号:
/*************************************************************************** * Copyright (C) 2004-2007 by Georgy Yunaev, gyunaev@ulduzsoft.com * * Please do not use email address above for bug reports; see * * the README file * * * * 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., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/#include "kde-qt.h"#include "kchmmainwindow.h"#include "kchmconfig.h"#include "kchmkeyeventfilter.h"#if defined (USE_KDE) #include <kaboutdata.h> #include <dcopclient.h> #include "kde/kchmdcopiface.h"#endifKCHMMainWindow * mainWindow;int main( int argc, char ** argv ){#if defined (USE_KDE) static KCmdLineOptions options[] = { { "autotestmode", "Perform auto testing", 0 }, { "shortautotestmode", "Perform short auto testing", 0 }, { "+[chmfile]", "A CHM file to show", 0 }, { "search <query>", I18N_NOOP("'--search <query>' specifies the search query to search, and activate the first entry if found"), 0 }, { "sindex <word>", I18N_NOOP("'--sindex <word>' specifies the word to find in index, and activate if found"), 0 }, KCmdLineLastOption }; KAboutData aboutdata ( "kchmviewer", APP_NAME, APP_VERSION, I18N_NOOP("CHM file viewer"), KAboutData::License_GPL, "(c) 2004-2007 George Yunaev, gyunaev@ulduzsoft.com", 0, "http://www.kchmviewer.net", "gyunaev@ulduzsoft.com"); KLocale::setMainCatalogue( "kchmviewer" ); KCmdLineArgs::init (argc, argv, &aboutdata); KCmdLineArgs::addCmdLineOptions( options ); KApplication app;#else QApplication app( argc, argv );#endif appConfig.load(); app.installEventFilter( &gKeyEventFilter ); #if defined(USE_KDE) // DCOP stuff KCHMDCOPIface iface; DCOPClient *client = kapp->dcopClient(); if ( !client->attach() ) qWarning("DCOP attach failed"); //QCString realAppId = client->registerAs( kapp->name() ); QCString realAppId = client->registerAs( "kchmviewer" );#endif mainWindow = new KCHMMainWindow(); mainWindow->show(); #if !defined(USE_KDE) app.connect( &app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()) );#else app.setMainWidget( mainWindow );#endif return app.exec();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -