2002-03-10 00:29:33 +01:00
|
|
|
/*
|
|
|
|
* Copyright 1997,98 Marcel Baur <mbaur@g26.ethz.ch>
|
2002-03-20 23:55:46 +01:00
|
|
|
* Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
*/
|
2000-01-29 23:07:03 +01:00
|
|
|
|
2002-03-20 23:55:46 +01:00
|
|
|
#include "notepad_res.h"
|
2000-01-29 23:07:03 +01:00
|
|
|
|
2003-07-21 22:05:33 +02:00
|
|
|
ID_ACCEL ACCELERATORS
|
|
|
|
{
|
|
|
|
"^A", CMD_SELECT_ALL
|
|
|
|
"^C", CMD_COPY
|
|
|
|
"^F", CMD_SEARCH
|
2009-04-25 17:53:58 +02:00
|
|
|
"H", CMD_REPLACE, VIRTKEY, CONTROL
|
2005-05-07 14:13:51 +02:00
|
|
|
"^N", CMD_NEW
|
2003-07-21 22:05:33 +02:00
|
|
|
"^O", CMD_OPEN
|
2005-05-07 14:13:51 +02:00
|
|
|
"^P", CMD_PRINT
|
2003-07-21 22:05:33 +02:00
|
|
|
"^S", CMD_SAVE
|
|
|
|
"^V", CMD_PASTE
|
|
|
|
"^X", CMD_CUT
|
|
|
|
"^Z", CMD_UNDO
|
2005-05-07 14:13:51 +02:00
|
|
|
VK_BACK, CMD_UNDO, VIRTKEY, ALT
|
2003-07-21 22:05:33 +02:00
|
|
|
VK_F3, CMD_SEARCH_NEXT, VIRTKEY
|
|
|
|
VK_F5, CMD_TIME_DATE, VIRTKEY
|
2005-05-07 14:13:51 +02:00
|
|
|
VK_INSERT, CMD_COPY, VIRTKEY, CONTROL
|
|
|
|
VK_INSERT, CMD_PASTE, VIRTKEY, SHIFT
|
2003-07-21 22:05:33 +02:00
|
|
|
}
|
|
|
|
|
2007-08-25 18:26:15 +02:00
|
|
|
/* @makedep: notepad.ico */
|
|
|
|
IDI_NOTEPAD ICON "notepad.ico"
|