Send Notepad-plus-plus mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Notepad-plus-plus digest..."


Today's Topics:

   1. [notepad-plus - Plugin Development] RE:   FTP_synchronize
      0.9.5.1 (SourceForge.net)
   2. [notepad-plus - Plugin Development] RE: Need      input on the
      future of Simple Script (SourceForge.net)
   3. [notepad-plus - Open Discussion] Notepad++ to     PDA (WM5)
      (SourceForge.net)
   4. [notepad-plus - Plugin Development] Plugin vs.    External
      Binary Dialogue... (SourceForge.net)
   5. [notepad-plus - Help] RE: find and replace        multiple lines
      (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: Notepad++    4.7.3 Docking
      Modification (SourceForge.net)
   7. [notepad-plus - Open Discussion] RE: feature      request -
      clipboard/code snippets (SourceForge.net)
   8. [notepad-plus - Plugin Development] RE:   FTP_synchronize
      0.9.5.1 (SourceForge.net)
   9. [notepad-plus - Help] RE: .config file -> XML     language
      (SourceForge.net)
  10. [notepad-plus - Open Discussion] Find in Files    results: what
      language markup? (SourceForge.net)
  11. [notepad-plus - Help] RE: Explorer Plugin (SourceForge.net)


----------------------------------------------------------------------

Message: 1
Date: Wed, 09 Jan 2008 22:09:11 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        FTP_synchronize 0.9.5.1
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713350
By: nobody

Great. Thanks for the great plugin. Can I know why the AINSI version is included
with N++ not the unicode?

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=482781



------------------------------

Message: 2
Date: Thu, 10 Jan 2008 00:01:55 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Need    input on the future of Simple Script
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713456
By: nobody

> surround(fronttext,backtext): Places fronttext at the beginning of the 
> document
and
> backtext at the end of the document.

Just to extend this, which may lead to a more simple implementation, it could
be made possible to refer to the selected text, being either the complete 
document,
a selection, or no selection at all, as a variable. This would allow using it
more than once in a template. For example, to create a link the template could
look something like:

<a href="@SelectedText">@SelectedText</a>


______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=482781



------------------------------

Message: 3
Date: Thu, 10 Jan 2008 01:00:30 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Notepad++ to    PDA (WM5)
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713519
By: nobody

It is possible?
Help me!

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331753



------------------------------

Message: 4
Date: Wed, 09 Jan 2008 23:53:06 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Plugin vs.      External Binary Dialogue...
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713449
By: todwulff

Hey guys & gals.

During my travels earlier this week, I have come up with a vehicle that I think,
if implemented, would be worth it's weight in gold, and have broad enough 
application
to where it's development by the NPP team may make 'Spock-sense' - i.e. 
providing
a large leverage-able direct benefit to many users vs. a few (one? ;-).  I am
posting to throw this idea out here for consideration by Jens/Don/others.

I pose my question:  Is the development of a plug-in framework where a
docked-horizontal window is created, where an external application's 
process'/windows
could exist, viable?

I'll explain.  Currently, I am using NPP in it's native form, with plug-ins.
I am using NPP as the front end of an ARMbasic IDE (ARMbasic is a BASIC for
programming embedded ARM-based micro-controller Single Board Computers - i.e.
the NXP 2103/2106-based ARMmite).  I am using the ability to execute external
binaries, calling compiled AutoHotKey scripts.  Right now, when I click the
'Compile&Flash' command from the run menu, I pass the current source file, via
the $(FULL_CURRENT_PATH) env. variable, to the compiled script.  My script then
takes this and passes the source file path/name to the preprocessor.  The
preprocessor generates a composite __temp.bas source file (or a __cmperr.tmp
if errors exist).  If no errors, the script then serially (via the port.dll
tool) queries the target board to get some parameters, and concatenates these
parameters onto the front end of the composite file and then passes the 
resultant
__temp.bas file to the compiler which generates a pseudo-intel-hex __temp.out
file (or a __cmperr.tmp file if errors).  Once the compiling is done, if no
errors are tossed, the resultant hex file is then flashed to the target by the
script itself (again, making use of the port.dll tool).  If the flashing is
successful, as determined by the script, the application in the 
newly-flashed-target
is executed.

My end goal is to get all of the functionality embedded from within the NPP
environment - i.e. have a horizontal docked plug-in that has several tabs 
(flashing
options(com port/baud/etc)|preprocessor results|composite source|compiler
dialogue|compiler output|etc.).

Now, the obvious approach would be to write a plug-in that facilitates this
directly.  That approach makes complete sense, and frankly, if I possessed the
skill sets, would be my first choice.  However, the problem, as I eluded to,
is that I don't possess the skill sets to code up a plug-in.  It is simply not
something that I feel would provide the return desired, based upon the amount
of investment that I would have to make to get through the learning curve...

So, is it the group's opinion that a framework for 'housing' an external
application's windows viable and easily implemented, allowing a user to then
create application that could be programmed to take focus inside of this frame?

It seems that if this was facilitated, then any number of users could then write
scripts in their language of choice and program the scripts to take focus inside
the target frame, giving the NPP user community another tool with which to 
leverage
NPP as the front end for their needs, and writing widgets that will work taking
their control from and residing inside of the NPP frame.

Now, I understand that normal servicing of events could be problematic for 
events
such as frame resizing, but much like what I vaguely understand with the plug-in
implementation, things are passed via messages, right.?.  The difference is
that the messaging interface for the external tools could be through environment
variables, vs. the windows messaging subsystem.

A simple example - assuming that a frame was created and the frame's vitals
(position/size) were passed to the external tool, and the external tool placed
a window inside of this frame (i.e. AHK allows a 'owned' window to be opened,
allowing user interaction, but not steal focus from the app that has focus,
and staying on top).  If the frame's border was resized in NPP by the user,
on the mouse-down-frame-resize event, a call to the external app could be made
passing the event handle, telling the tool that the frame is being resized and
to hide/destroy it's window.  When the resizing event is completed, call the
external app again, passing the new frame's vitals, indicating that the resizing
event is completed and that the window needs to be un-hidden & 
repositioned/resized
(or recreated) and things progress on their merry way.

There are four other events that I could see would be immediately needed:

1) frame-create - i.e. when the tool was 'opened' inside NPP
2) frame-closed - i.e. if the tool was closed by the user (or if NPP exited)
3) frame to back - i.e. if the user brought up a different tab in the horizontal
dock area, and
4) frame to top - i.e. if the user clicked on the tool's tab bringing it to
the front.

Obviously, as the framework matures, maybe other functionality to further 
integrate
the external tools with NPP could be created...

Implementing this would seem to be a means to allow a greatly broadened use
of NPP, at seemingly very low cost of implementation.?.  Many are using NPP.
Many are using AHK.  Being able to wed the two, as far as the UI goes, would
seem to be a great enhancement for both tools...

OK, I have blabbed on enough.  Please review and advise if any of this makes
sense.

Thanks so much, in advance, for considering what I present.

-t

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=482781



------------------------------

Message: 5
Date: Thu, 10 Jan 2008 03:25:42 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: find and
        replace multiple lines
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713706
By: nobody

thank you.
I'll give it a try.

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331754



------------------------------

Message: 6
Date: Thu, 10 Jan 2008 03:32:29 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Notepad++       4.7.3 Docking Modification
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713716
By: dv__

Nice work, Jens!
Now what about optional auto-hiding behaviour (as in Visual Studio 7/8/9)? ;-)

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331753



------------------------------

Message: 7
Date: Thu, 10 Jan 2008 03:50:42 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        feature request - clipboard/code snippets
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713742
By: nobody

Hello at all,

here my vision about a good code snipped plugin is to combine the current 
available
QuickText plugin with the available Clipboard plugin in a docked version.

The features:

The docked window contains a tree view with all available languages of Notepad++
and one additional item at top - the Clipboard. Within the tree there are the
Tags listed like QuickText have. The preview is shown on top of the tree in
an edit box. So you can add/modify the (new) Tags. A tag can consist a code
snippet or template. Tags can be paste similar to QuickText by typing the 
tagname
and processing a specific shortcut or by double click on the item.
Everytime, when user copy/cuts a text into windows clipboard, the snipped is
now list also in under Clipboard item with a short name.
When user switches between files with different languages, tree do an automatic
expand/unexpand.


Best Regards
Jens

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331753



------------------------------

Message: 8
Date: Thu, 10 Jan 2008 03:51:53 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        FTP_synchronize 0.9.5.1
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713746
By: nobody

Probably for compatibility with old windows versions like 95 and 98.
That and Notepad++ itself is ANSI, so it matches closer (?)

-Harry

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=482781



------------------------------

Message: 9
Date: Thu, 10 Jan 2008 04:09:34 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: .config file ->
        XML     language
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713773
By: nobody

Thanks Mark, that way is much better for me ;)

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331754



------------------------------

Message: 10
Date: Thu, 10 Jan 2008 04:12:02 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Find in
        Files   results: what language markup?
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713775
By: nobody

What language definition is used to show the Find in Files results?

Currently, I only see the word for highlighted in blue color and bold type.

I am searching .SQL files, so, of course, I would like the text to be marked
up as SQL, if marked up at all. I would prefer the correct markup, though.


______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331753



------------------------------

Message: 11
Date: Thu, 10 Jan 2008 04:22:55 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Explorer Plugin
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="UTF-8"


Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=4713792
By: dv__

Jens, can you update sources of the Explorer plugin to VC++ 2005? When I try
to build it in VC++ 2005 Express, it gives me a lot of unminded errors regarding
STL types discrepancy.

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=331754



------------------------------

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace

------------------------------

_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 20, Issue 47
*************************************************

Reply via email to