SlimShady Posted October 16, 2004 Posted October 16, 2004 (edited) I made a text editor with AutoIt3.I called it Notepad NG because I couldn't think of a better name...It has many features:- Open file- Save file- Reload file- Execute file- Find- Replace- Go To Line- Auto indent- Bookmark lines- Send tabs as spaces (you can configure how many spaces equal to 1 tab)- Set font (Note: you can't change the color of the text box)- Word Wrap- line numbers on the left- Remember search queries (is configurable)- a status bar that shows you info: current line, total lines, selected chars, filenameThese features are coming:- recent filesPost any problems, suggestions you have.You need the latest beta version of AutoIt to use it.See hereElse you can use the executable I added to the zip.Download the script below:http://www.autoitscript.com/fileman/users/public/SlimShady/NotepadNG.zipHistory:v1.0 - Initial releasev1.01 - fixed: caret jumping to the beginning of the line - added: command line support you can run NotepadNG with a text file or drop a text file on the executable - added: forgot to update the menu items with shortcut keys (Find, Replace, Word Wrap) - added: Run file you can execute the file you're editingv1.1 - changed: all send functions are replaced with GUISendMsg - changed: the way "Go To Line" works - added: when you scroll, the line bar updates itself - added: error message when user enters an invalid line number (Go To Line) - minor thingsv1.2 - changed: how "Replace once" works, it uses GUISendMsg now - changed: "Find" and "Replace" function; You can now search using new-line chars! - fixed: reloading when there's no file open showed -1 - fixed: "enter" not working on message boxes and dialogs - added: tabs as spaces; when you press TAB, spaces are sent (as many as you want, default 3). - added: auto indent - added: select all using shortcut key Ctrl+A - added: unindent using Shift+TAB - added: save search queries - added: line bookmarks (needs testing) Edited October 19, 2004 by SlimShady
Josbe Posted October 16, 2004 Posted October 16, 2004 Nice. I like the Font Dialog. Remarks:When you update the 'linebar' in a CR, this go to first line.(normally it's the next or current line)I think you forgot include the file: @ScriptDir & '\images\PickColor.bmp'Good Luck! AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
this-is-me Posted October 16, 2004 Posted October 16, 2004 (edited) @Slim, why don't you use the new oneventmode? Also, could the line numbers on the word wrap reflect the lines in the file, and not the visible lines? Perhaps you could split the edit's output with @CRLF and parse line #'s by that. Edited October 16, 2004 by this-is-me Who else would I be?
CyberSlug Posted October 16, 2004 Posted October 16, 2004 The caret cursor keeeps jumping to the very begining of the text box? Also, perhaps you could add support for command line parameters so that I can drop a txt file on NotepadNG.exe to open it. Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
SlimShady Posted October 16, 2004 Author Posted October 16, 2004 Allright, feedback...@josbe:1. Thank you.2. I don't understand the 1st sentence very much. You shouldn't update the line bar manually.3. You don't need the PickColor.bmp because you can't change the text color of an edit box anyways.@this-is-me:I was thinking about that, but after I created the 2nd and 3rd dialog, I was wondering: "Does the OnEvent option/mode work only for 1 dialog or all of them?"And I don't want to use OnEvent option/mode for all the dialogs.@CyberSlug:To match the line bar with the lines of the edit box, I can only update by sending the "up arrow" and "down arrow" keys.And that can cause unexpected behaviour.The "Go To Line" function is made 50% using Windows API messages and the other half by sending arrow keys.For Word Wrap I couldn't find a Windows control message that I could send.I think I can use DllCall for that, but I need time to understand that function.If you're interested, I found some information that may be useful:http://msdn.microsoft.com/library/default....rdbreakproc.aspAs you did with your AutoPad, I made 2 edit boxes and that works well (here at least)Meanwhile I fixed your problem and added some things.See first post.
friends Posted October 17, 2004 Posted October 17, 2004 @SlimShady I think many of us would love to have a better Notepad functions compare to MS Notepad. Do you mind to have screenshot of your program ? That would be easier for other to take a look of the preview before download. Thanks.... Keep the good work up !
friends Posted October 17, 2004 Posted October 17, 2004 OK... Just downloaded and tested a while.... I'm not sure if this is a bug or what. The current line is "1", and I test for the "Go To Line" feature. Right now, I enter LINE "3". Nothing happens as LINE 3 yet does not exist. After I did this, the program goes wrong, where I'm unable to close the program or do anything else.... When I click back on Internet Explorer (I'm browsing while testing your program), the IE automatically scroll down to Page 3 where this was from NotepadNG. Please check it out.... Side Note : Why not name it "Intelli NotePad".... just a suggestion
SlimShady Posted October 17, 2004 Author Posted October 17, 2004 The problem you had with "Go To Line" happens because I used Send() functions. In the latest version I replaced them all with GUISendMsg().
MHz Posted October 17, 2004 Posted October 17, 2004 Simple and functional. Starting to look alittle like notepad2. Possible bug? The reload function, restarts with a -1 in line 1 ?
SlimShady Posted October 17, 2004 Author Posted October 17, 2004 I don't have that problem. Can you tell me what you did so I can reproduce the problem? Thanks.
this-is-me Posted October 17, 2004 Posted October 17, 2004 And I don't want to use OnEvent option/mode for all the dialogsNot sure what you mean by this, but the oneventmode lets you bind a function to a button or control, no matter whether it is in one gui or another. Who else would I be?
SlimShady Posted October 17, 2004 Author Posted October 17, 2004 (edited) As you said in the other topic:You can't have AutoItSetOption("GUIOnEventMode", 1) and a GuiGetMsg loop, I don't think. I believe it is one or the other.<{POST_SNAPBACK}>And Jon confirmed.That means if you have multiple GUIs in one script and you enable GUIOnEventMode, you can't use GUIGetMsg in any of the other GUIs.At least that's my theory. And I don't feel like making a function of every action. Edited October 17, 2004 by SlimShady
MHz Posted October 18, 2004 Posted October 18, 2004 I don't have that problem.Can you tell me what you did so I can reproduce the problem? Thanks.<{POST_SNAPBACK}>All I do is start your program. Press F5 and I get -1 in line 1. Same if I use menu to Reload.
Josbe Posted October 18, 2004 Posted October 18, 2004 2. I don't understand the 1st sentence very much. You shouldn't update the line bar manually.The same thing like CyberSlug said... 3. You don't need the PickColor.bmp because you can't change the text color of an edit box anyways.You're right. AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
SlimShady Posted October 19, 2004 Author Posted October 19, 2004 I changed and added many things. Can someone please test all the features?
Helge Posted October 19, 2004 Posted October 19, 2004 I haven't tested NNG so much, but it looks pretty good ! Nice work, SlimShady !
SlimShady Posted October 19, 2004 Author Posted October 19, 2004 Thank you. I'm proud of it myself I'm currently trying to make a nice "Recent Files" dialog. With icons if I'm lucky.
SlimShady Posted October 20, 2004 Author Posted October 20, 2004 (edited) I failed to create a Recent files dialog with icons.So I created one like Notepad2 has, without icons.Here's my latest to do list:To do list: - about dialog - Always On Top: Alt+T - settings dialog * Remember windows size and position on exit - Tabs so you can edit multiple files - Tools menu which you can configure, so you can run Tidy instantly or compile the current fileDo you have ideas or suggestions? Please post them. Edited November 19, 2004 by SlimShady
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now