Skip to content

Commit

Permalink
Merge pull request #4 from superolmo/dev
Browse files Browse the repository at this point in the history
Version 0.1.1.0
  • Loading branch information
superolmo committed Sep 4, 2019
2 parents db41381 + e6c3326 commit 3ee0411
Show file tree
Hide file tree
Showing 10 changed files with 745 additions and 597 deletions.
Binary file modified bin64/BigFiles.dll
Binary file not shown.
Binary file removed src/BigFiles.aps
Binary file not shown.
14 changes: 13 additions & 1 deletion src/BigFiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,13 @@ extern "C" __declspec(dllexport) void beNotified(SCNotification *notifyCode)
commandMenuCleanUp();
}
break;

case NPPN_TBMODIFICATION:
{
commandRegToolbarIcons();
}
break;

case NPPN_FILECLOSED:
{
//When the FileClosed event happens, the Scintilla Buffer gets closed.
Expand All @@ -85,7 +87,17 @@ extern "C" __declspec(dllexport) void beNotified(SCNotification *notifyCode)

}
break;


case NPPN_BUFFERACTIVATED:
{
// This happens when a Scintilla Buffer tab has been activated
int record_index = getBigFileRecordIndex((int)notifyCode->nmhdr.idFrom);
if (record_index >= 0)
updateStatusBar(record_index);

}
break;

default:
return;
}
Expand Down
196 changes: 98 additions & 98 deletions src/BigFiles.rc
Original file line number Diff line number Diff line change
@@ -1,98 +1,98 @@
// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
/////////////////////////////////////////////////////////////////////////////
// English (United States) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)

/////////////////////////////////////////////////////////////////////////////
//
// Version
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,1,0,0
PRODUCTVERSION 0,1,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Claudio Olmi [email protected]"
VALUE "FileDescription", "BigFiles Plugin for Notepad++ to read very large files"
VALUE "FileVersion", "0.1"
VALUE "InternalName", "BigFiles.dll"
VALUE "LegalCopyright", "Copyright 2019 by Claudio Olmi"
VALUE "OriginalFilename", "BigFiles.dll"
VALUE "ProductName", "BigFiles Plugin"
VALUE "ProductVersion", "0.1"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END


#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE
BEGIN
"resource.h\0"
END

2 TEXTINCLUDE
BEGIN
"\0"
END

3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END

#endif // APSTUDIO_INVOKED


/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//

IDB_BITMAP1 BITMAP "back.bmp"

IDB_BITMAP2 BITMAP "forward.bmp"

#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////



#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//


/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED

// Microsoft Visual C++ generated resource script.
//
#include "resource.h"
/////////////////////////////////////////////////////////////////////////////
// English (United States) resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
/////////////////////////////////////////////////////////////////////////////
//
// Version
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,1,1,0
PRODUCTVERSION 0,1,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
#else
FILEFLAGS 0x0L
#endif
FILEOS 0x40004L
FILETYPE 0x2L
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "CompanyName", "Claudio Olmi [email protected]"
VALUE "FileDescription", "BigFiles Plugin for Notepad++ to read very large files"
VALUE "FileVersion", "0.1.1.0"
VALUE "InternalName", "BigFiles.dll"
VALUE "LegalCopyright", "Copyright 2019 by Claudio Olmi"
VALUE "OriginalFilename", "BigFiles.dll"
VALUE "ProductName", "BigFiles Plugin"
VALUE "ProductVersion", "0.1.1.0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//
IDB_BITMAP1 BITMAP "back.bmp"
IDB_BITMAP2 BITMAP "forward.bmp"
#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////
#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
/////////////////////////////////////////////////////////////////////////////
#endif // not APSTUDIO_INVOKED
Loading

0 comments on commit 3ee0411

Please sign in to comment.