Send Notepad-plus-plus mailing list submissions to
        notepad-plus-plus@lists.sourceforge.net

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: New       plugin - CharM
      (Character Map) upload (SourceForge.net)
   2. [notepad-plus - Plugin Development] RE: New       plugin - CharM
      (Character Map) upload (SourceForge.net)
   3. [notepad-plus - Open Discussion] Multi-word       keywords
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Multi-word   keywords
      (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE:   NppExport 0.2.7
      released (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE:      Indentation problem
      (SourceForge.net)
   7. [notepad-plus - Help] RE: Is there a ruler        available?
      (SourceForge.net)
   8. [notepad-plus - Help] Mass edit files and copy    and paste text
      (SourceForge.net)
   9. [notepad-plus - Plugin Development] RE:   NppExport 0.2.7
      released (SourceForge.net)
  10. [notepad-plus - Open Discussion] RE:      Indentation problem
      (SourceForge.net)
  11. [notepad-plus - Plugin Development] RE:   NppExport 0.2.7
      released (SourceForge.net)
  12. [notepad-plus - Plugin Development] RE:   NppExport 0.2.7
      released (SourceForge.net)


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

Message: 1
Date: Mon, 25 Feb 2008 03:05:39 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     plugin - CharM (Character Map) upload
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=4799035
By: vor0nwe

The TNT Unicode controls not freeware anymore!  Now that's a shame...  (Good
thing I still have my old copies here. :-P)

The license I've got here says:
============================================================
TntWare Delphi Unicode Controls
      http://www.tntware.com/delphicontrols/unicode/

Copyright (c) 2002-2006, Troy Wolbrink (www.tntware.com) 

License
Redistribution and use in binary forms, with or without modification, are 
permitted.
Redistribution and use in source forms, with or without modification, are 
permitted
provided that the redistributions of source code retain the above copyright.

Disclaimer
This software is provided by the author "as is" and any express or implied
warranties, including, but not limited to, the implied warranties of 
merchantability
and fitness for a particular purpose are disclaimed. In no event shall the 
author
be liable for any direct, indirect, incidental, special, exemplary, or 
consequential
damages (including, but not limited to, procurement of substitute goods or 
services;
loss of use, data, or profits; or business interruption) however caused and
on any theory of liability, whether in contract, strict liability, or tort 
(including
negligence or otherwise) arising in any way out of the use of this software,
even if advised of the possibility of such damage.
============================================================

I can send the files to you, if you like.  This license definitely seems to
allow that.
It includes the source code, so you need have no compunctions about using 
third-party
controls.  At the very least, you can take a look at how they've done it.  ;-)

The two advantages of the new (paid) TMS Unicode Component Pack, of course,
are a) that they're continually being improved (they're already at version 1.5,
1.0 being the latest TntUnicode release at the time of takover), and that you
get support.

Good luck in any case!
-- 
Martijn

______________________________________________________________________
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: Mon, 25 Feb 2008 03:20:59 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     plugin - CharM (Character Map) upload
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=4799064
By: vor0nwe

Oh, I forgot, you can also look at the HTMLTag plug-in, though its code is not
all that readable (it's also far from finished).

I work with WideStrings internally, and only convert them as required whenever
I'm reading or writing text from the scintilla component.  I'm posting the most
important bit here: the two functions that do the conversion.

============================================================

function TActiveDocument.AdjustFromCodePage(AText: string): WideString;
var
  CP: integer;
  ReqSize: integer;
begin
  CP := SendMessage(SCI_GETCODEPAGE);
  if CP = 0 then begin
    Result := AText;
  end else begin
    ReqSize := MultiByteToWideChar(CP, 0, PChar(AText), System.Length(AText),
nil, 0);
    Result := StringOfChar(WideChar(#0), ReqSize + 1);
    SetLength(Result, MultiByteToWideChar(CP, 0, PChar(AText), 
System.Length(AText),
PWChar(Result), ReqSize + 1));
  end;
end;
{ ------------------------------------------------------------------------------
------------------ }
function TActiveDocument.AdjustToCodePage(AText: WideString): string;
var
  CP: integer;
  ReqSize: integer;
begin
  CP := SendMessage(SCI_GETCODEPAGE);
  if CP = 0 then begin
    Result := AText;
  end else begin
    ReqSize := WideCharToMultiByte(CP, 0, PWChar(AText), System.Length(AText),
nil, 0, nil, nil);
    Result := StringOfChar(#0, ReqSize + 1);
    SetLength(Result, WideCharToMultiByte(CP, 0, PWChar(AText), 
System.Length(AText),
PChar(Result), ReqSize + 1, nil, nil));
  end;
end;

============================================================


______________________________________________________________________
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: Mon, 25 Feb 2008 03:46:11 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion]
        Multi-word      keywords
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=4799106
By: nobody

Is it possible to enter a sentence, that is multiple words, as a single keyword
in the keywords list in the User Define dialog for defining a custom language
syntax? Is there such a thing as an escape character or something that I can
group words together to make e.g. "one two" a unique keyword?

______________________________________________________________________
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: Mon, 25 Feb 2008 03:55:22 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Multi-word      keywords
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=4799131
By: nobody

Try a search for "keyword".


______________________________________________________________________
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: 5
Date: Mon, 25 Feb 2008 04:10:23 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExport 0.2.7 released
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=4799144
By: nobody

I thought you meant the foreground indicators like that rounded box, I dont
know how to do such thing in HTML. The background might be possible, I'd have
to look into that (I'd like to avoid stuff like <div> and complex css since
that complicates matters quite a bit afaik, although I probably have to use
it sometime if I'm going to fix tabs in HTML).

-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: 6
Date: Mon, 25 Feb 2008 04:18:14 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Indentation problem
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=4799156
By: lucas_malor

So it's not a bug, but a desired behaviour?  ?__?

______________________________________________________________________
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: Mon, 25 Feb 2008 04:30:36 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Is there a
        ruler   available?
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=4799172
By: nobody

(From ruler guy) Wow, great!  Thanks for your help!!

______________________________________________________________________
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: 8
Date: Mon, 25 Feb 2008 04:31:40 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Mass edit files and
        copy    and paste text
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=4799174
By: nobody

Hello,
I'm a newbie to notepad++ but it looks great. I tried this software because
of it looks really flexible and able to do lots of regular expressions tips.
I tested lots of functions but I have a question:

I need to mass edit lots of files. In every file there is a tag <BEGIN HERE>
and I have to select the next 3 words (or 20 chars) and to copy them to the
beginning of the file adding a new line after that. Is it possible to do it
easily using macros or any other notepad++ option?

Thank you very much
Andrea

______________________________________________________________________
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: 9
Date: Mon, 25 Feb 2008 04:47:03 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExport 0.2.7 released
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=4799204
By: nobody

Background colors seem to work for HTML files when exporting to HTML, so that
shouldn't be the problem, I guess. I meant background coloring of different
lines and inline differences. I didn't even notice the rounded box until now.
No, I won't ask you to make a painting of it...


______________________________________________________________________
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: 10
Date: Mon, 25 Feb 2008 04:53:39 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Indentation problem
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=4799214
By: nobody

I'm currently making a new plugiin which I named it 'Advanced Auto-Indent'.
It'll override NPP's internal 'Auto-indent' feature, and will be released in
a week. Please check if it would fit with you.

______________________________________________________________________
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: Mon, 25 Feb 2008 04:54:39 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExport 0.2.7 released
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=4799215
By: alexiljin

<span style="background-color: #FFFFCC">Text on the background</span>

______________________________________________________________________
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: 12
Date: Mon, 25 Feb 2008 05:08:43 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExport 0.2.7 released
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=4799240
By: nobody

I reckon I can try to add that, but I was hoping for something that would extend
the background to the full width of the screen in the browser, any ideas on
that =]? (this also misses for the normal styled backgrounds that extend to
the full width, like javascript.)

-(the not so HTML expert) 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



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

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

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

_______________________________________________
Notepad-plus-plus mailing list
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 21, Issue 86
*************************************************

Reply via email to