2012-04-15 16:54:38 +00:00
|
|
|
// This file is part of Notepad++ project
|
2021-01-23 03:23:47 +00:00
|
|
|
// Copyright (C)2021 Don HO <don.h@free.fr>
|
|
|
|
|
|
|
|
// 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 3 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
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2021-01-23 03:23:47 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-04-15 16:54:38 +00:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2021-01-23 03:23:47 +00:00
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
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\
|
2020-12-21 16:54:10 +00:00
|
|
|
notepad++ [--help] [-multiInst] [-noPlugin] [-lLanguage] [-LlangCode] [-nLineNumber] [-cColumnNumber] [-pPosition] [-xLeftPos] [-yTopPos] [-nosession] [-notabbar] [-ro] [-systemtray] [-loadingTime] [-alwaysOnTop] [-openSession] [-r] [-qn=\"Easter egg name\" | -qt=\"a text to display.\" | -qf=\"D:\\my quote.txt\"] [-qSpeed1|2|3] [-quickPrint] [-settingsDir=\"d:\\your settings dir\\\"] [-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\
|
2020-12-21 16:54:10 +00:00
|
|
|
-l : Open file or Ghost type with syntax highlighting of choice\r\
|
2018-03-10 10:30:55 +00:00
|
|
|
-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\
|
2020-12-21 16:54:10 +00:00
|
|
|
-qn=\"Easter egg name\": Ghost type easter egg via its name\r\
|
|
|
|
-qt=\"text to display.\": Ghost type the given text\r\
|
|
|
|
-qf=\"D:\\my quote.txt\": Ghost type a file content via the file path\r\
|
2018-03-10 10:30:55 +00:00
|
|
|
-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\
|
2020-12-21 02:40:43 +00:00
|
|
|
-settingsDir=\"d:\\your settings dir\\\": Override the default settings dir\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
|
|
|
}
|
|
|
|
|
2019-06-13 15:54:42 +00:00
|
|
|
bool emergency(const generic_string& emergencySavedDir)
|
2015-08-06 09:03:57 +00:00
|
|
|
{
|
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
|
|
|
|
2019-10-13 19:48:27 +00:00
|
|
|
generic_string getPluginListVerStr() const
|
|
|
|
{
|
|
|
|
return _notepad_plus_plus_core.getPluginListVerStr();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
};
|