2012-04-15 16:54:38 +00:00
|
|
|
// This file is part of Notepad++ project
|
|
|
|
// Copyright (C)2003 Don HO <don.h@free.fr>
|
2010-03-26 00:22:14 +00:00
|
|
|
//
|
2012-04-15 16:54:38 +00:00
|
|
|
// 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.
|
2010-03-26 00:22:14 +00:00
|
|
|
//
|
2012-04-15 16:54:38 +00:00
|
|
|
// Note that the GPL places important restrictions on "derived works", yet
|
2015-08-06 09:03:57 +00:00
|
|
|
// it does not provide a detailed definition of that term. To avoid
|
|
|
|
// misunderstandings, we consider an application to constitute a
|
2012-04-15 16:54:38 +00:00
|
|
|
// "derivative work" for the purpose of this license if it does any of the
|
2015-08-06 09:03:57 +00:00
|
|
|
// following:
|
2012-04-15 16:54:38 +00:00
|
|
|
// 1. Integrates source code from Notepad++.
|
|
|
|
// 2. Integrates/includes/aggregates Notepad++ into a proprietary executable
|
|
|
|
// installer, such as those produced by InstallShield.
|
|
|
|
// 3. Links to a library or executes a program that does any of the above.
|
2010-03-26 00:22:14 +00:00
|
|
|
//
|
2012-04-15 16:54:38 +00:00
|
|
|
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2015-08-06 09:03:57 +00:00
|
|
|
#pragma once
|
|
|
|
#include "Notepad_plus.h"
|
2012-04-15 16:54:38 +00:00
|
|
|
|
2010-03-26 00:22:14 +00:00
|
|
|
|
|
|
|
|
2014-03-05 22:09:57 +00:00
|
|
|
const TCHAR COMMAND_ARG_HELP[] = TEXT("Usage :\r\
|
|
|
|
\r\
|
2019-06-25 11:37:48 +00:00
|
|
|
notepad++ [--help] [-multiInst] [-noPlugin] [-lLanguage] [-LlangCode] [-nLineNumber] [-cColumnNumber] [-pPosition] [-xLeftPos] [-yTopPos] [-nosession] [-notabbar] [-ro] [-systemtray] [-loadingTime] [-alwaysOnTop] [-openSession] [-r] [-qnEasterEggName | -qtText | -qfCntentFileName] [-qSpeed1|2|3] [-quickPrint] [-openFoldersAsWorkspace] [filePath]\r\
|
2014-03-05 22:09:57 +00:00
|
|
|
\r\
|
2018-03-10 10:30:55 +00:00
|
|
|
--help : This help message\r\
|
|
|
|
-multiInst : Launch another Notepad++ instance\r\
|
|
|
|
-noPlugin : Launch Notepad++ without loading any plugin\r\
|
|
|
|
-l : Open file or display ghost typing with syntax highlighting of choice\r\
|
|
|
|
-L : Apply indicated localization, langCode is browser language code\r\
|
|
|
|
-n : Scroll to indicated line on filePath\r\
|
|
|
|
-c : Scroll to indicated column on filePath\r\
|
|
|
|
-p : Scroll to indicated position on filePath\r\
|
|
|
|
-x : Move Notepad++ to indicated left side position on the screen\r\
|
|
|
|
-y : Move Notepad++ to indicated top position on the screen\r\
|
|
|
|
-nosession : Launch Notepad++ without previous session\r\
|
|
|
|
-notabbar : Launch Notepad++ without tabbar\r\
|
|
|
|
-ro : Make the filePath read only\r\
|
|
|
|
-systemtray : Launch Notepad++ directly in system tray\r\
|
|
|
|
-loadingTime : Display Notepad++ loading time\r\
|
|
|
|
-alwaysOnTop : Make Notepad++ always on top\r\
|
|
|
|
-openSession : Open a session. filePath must be a session file\r\
|
|
|
|
-r : Open files recursively. This argument will be ignored\r\
|
|
|
|
if filePath contain no wildcard character\r\
|
|
|
|
-qn : Launch ghost typing to display easter egg via its name\r\
|
|
|
|
-qt : Launch ghost typing to display a text via the given text\r\
|
|
|
|
-qf : Launch ghost typing to display a file content via the file path\r\
|
|
|
|
-qSpeed : Ghost typing speed. Value from 1 to 3 for slow, fast and fastest\r\
|
|
|
|
-quickPrint : Print the file given as argument then quit Notepad++\r\
|
2019-06-25 11:37:48 +00:00
|
|
|
-openFoldersAsWorkspace: open filePath of folder(s) as workspace\r\
|
2018-03-10 10:30:55 +00:00
|
|
|
filePath : file or folder name to open (absolute or relative path name)\r\
|
2014-03-05 22:09:57 +00:00
|
|
|
");
|
|
|
|
|
2015-08-06 09:03:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Notepad_plus_Window : public Window
|
|
|
|
{
|
2010-03-26 00:22:14 +00:00
|
|
|
public:
|
|
|
|
void init(HINSTANCE, HWND, const TCHAR *cmdLine, CmdLineParams *cmdLineParams);
|
|
|
|
|
2014-05-10 01:12:44 +00:00
|
|
|
bool isDlgsMsg(MSG *msg) const;
|
2015-08-06 09:03:57 +00:00
|
|
|
|
|
|
|
HACCEL getAccTable() const
|
|
|
|
{
|
2010-03-26 00:22:14 +00:00
|
|
|
return _notepad_plus_plus_core.getAccTable();
|
2015-08-06 09:03:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool emergency(generic_string emergencySavedDir)
|
|
|
|
{
|
2010-03-26 00:22:14 +00:00
|
|
|
return _notepad_plus_plus_core.emergency(emergencySavedDir);
|
2015-08-06 09:03:57 +00:00
|
|
|
}
|
2010-03-26 00:22:14 +00:00
|
|
|
|
2015-08-06 09:03:57 +00:00
|
|
|
bool isPrelaunch() const
|
|
|
|
{
|
2010-03-26 00:22:14 +00:00
|
|
|
return _isPrelaunch;
|
2015-08-06 09:03:57 +00:00
|
|
|
}
|
2010-03-26 00:22:14 +00:00
|
|
|
|
2015-08-06 09:03:57 +00:00
|
|
|
void setIsPrelaunch(bool val)
|
|
|
|
{
|
2010-03-26 00:22:14 +00:00
|
|
|
_isPrelaunch = val;
|
2015-08-06 09:03:57 +00:00
|
|
|
}
|
2010-03-26 00:22:14 +00:00
|
|
|
|
2015-08-06 09:03:57 +00:00
|
|
|
virtual void destroy()
|
|
|
|
{
|
|
|
|
::DestroyWindow(_hSelf);
|
|
|
|
}
|
2010-03-26 00:22:14 +00:00
|
|
|
|
2015-08-06 09:03:57 +00:00
|
|
|
static const TCHAR * getClassName()
|
|
|
|
{
|
2010-03-26 00:22:14 +00:00
|
|
|
return _className;
|
2015-08-06 09:03:57 +00:00
|
|
|
}
|
|
|
|
|
2010-03-26 00:22:14 +00:00
|
|
|
static HWND gNppHWND; //static handle to Notepad++ window, NULL if non-existant
|
2015-08-06 09:03:57 +00:00
|
|
|
|
|
|
|
|
2010-03-26 00:22:14 +00:00
|
|
|
private:
|
|
|
|
Notepad_plus _notepad_plus_plus_core;
|
|
|
|
static LRESULT CALLBACK Notepad_plus_Proc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam);
|
|
|
|
LRESULT runProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam);
|
|
|
|
|
|
|
|
static const TCHAR _className[32];
|
2015-08-06 09:03:57 +00:00
|
|
|
bool _isPrelaunch = false;
|
|
|
|
bool _disablePluginsManager = false;
|
2018-03-10 10:30:55 +00:00
|
|
|
|
|
|
|
QuoteParams _quoteParams; // keep the availability of quote parameters for thread using
|
2018-03-07 01:17:26 +00:00
|
|
|
std::wstring _userQuote; // keep the availability of this string for thread using
|
2010-03-26 00:22:14 +00:00
|
|
|
};
|