Вы находитесь на странице: 1из 19

Presentation for Mini-Project On

By: ABHAY YEOLE. ASHWIN BANDE. PRAVIN KAHIRE. SAMIR MISKIN.

1. 2. 3.

4.

Introduction Functions Advantages Conclusion.

Source Code Editor is an Editor for editing and debugging C/C++ Source code. This Editor have all features of Conventional Text Editor. Additionally having Colored Syntax Highlighting Feature. Source Code Editor Can be used As Text Editor Also. It can be used as component of an IDE or Used as separate editor.

FILE

New : creates a new file at any instance. Open : Opens a file from disk.

Save : Save a file at any instance. Save As : Saves a copy of file.

Close: Close the opened file. Exit: Exit application.

Edit

Cut : moves selected text to clipboard. Copy : copies selected text to clipboard. Paste : moves clipboard text to current location.

Clear : delete selected text. Select All : selects all the text in the application. Clear All : clears all the text in the application.

Convert

To Upper : converts selected text into upper case letters.

To Lower : converts selected text into lower case letters. Trim : removes all leading and trilling spaces from selected text.

New creates a new file at any instance and closes already opened file.

Open opens already saved file from disk and closes already opened file.

Save saves current file to disk at any instance. If file is already exists then update it else creates new file.

Save As saves copy of current file to disk at any instance. If file is already saved then update it else create new file.

Close closes current opened file.

Exit exits the application.

Moves selected text to clipboard.

Copies selected text to clipboard.

Moves clipboard text to current location.

Delete selected text.

Select all the text in the application. Clears all the text in the application.

Converts selected text into upper case letters.

Converts selected text into lower case letters

Removes all leading and trilling spaces from selected text.

Can be used as replacement to conventional notepad or other text editor. Mainly used for editing and debugging C/C++ source code. Also may be added in IDE package as source code editor. Keywords of other languages can be added and used for other languages. System independency provides use on different OS like Linux, Mac, Windows.

A source code editor for C/C++ is made in java. All the features of traditional text editor are included in it. Further development can be made by adding other functions in it.

THANK YOU

Вам также может понравиться