Click here to Skip to main content
Licence 
First Posted 29 Aug 2000
Views 58,586
Bookmarked 9 times

Level Add-in

By | 29 Jan 2001 | Article
An add-in that helps you hide 'inactive' pieces of your code in include files
  • Download source files - 24 Kb
  • Download add-in - 18 Kb
  • Introduction

    Have you ever worked with extremely long source files? I did and found that it may be quite difficult to find those pieces of code you need right now. Level add-in can help you hide 'inactive' pieces of your code into include files. So, for example if you don't work with function exampleFunction right now.

    int ExampleFunction( void )
    {
    	// function body
    	return 1;
    }

    You may use the level add-in commands and have, instead,

    int ExampleFunction( void )
    #include "./level/in312897.h";
    

    The body of ExampleFunction will be hidden inside of the file ./level/in312897.h. The file with ExampleFunction still will be perfectly compilable, but it will be much smaller in size. Level add-in also easily reverses the operation and restores normal text.

    I think you get the main idea. Now the details.

    Level Add-In has 6 commands.

    1. Wrap Selection

    This will take the selected text and hide it into an include file. To execute this command, select text and press the first toolbar button.

    2. Wrap Function

    This will take text, enclosed it in a couple of '{' '}' braces and save it into an include file. You may use this command not only for function. This function will be executed when you push the second button on the toolbar.

    3. Restore

    This will restore the original text. You need to put the cursor on the string with the corresponding #include and press the first button on the toolbar again.

    4. Restore in File

    This will restore the original text in the current file. Just press the third button ( red arrow up ) and Add-In will search for all #include "./level in the current file and restore it.

    5. Restore in Project

    This will restore the original text in the whole project. To invoke you need to press the fourth button ( two yellow arrows up ). All files in the current project will be restored.

    6. delete backup files

    The Add-In doesn't delete restored include files automatically, but rather waits for you to press the fifth button - familiar garbage bucket :)

     

    Installation of the Level add-in is as usual, just please, before using it, restart Developer Studio.

    I have some ideas on how to improve this add-in, but your suggestions, comments or bug reports are welcome.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Red Pilgrim



    United States United States

    Member



    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    QuestionFolder at root? PinsussD. Adams7:12 6 Sep '00  
    General"origami" editor PinsussJ Cardinal6:23 4 Sep '00  
    GeneralFunction Folding Pinsussanonymous7:44 4 Sep '00  
    GeneralRe: Function Folding PinsussGlenn Carr4:54 5 Sep '00  
    GeneralRe: Function Folding PinmemberNick Carruthers5:18 1 Feb '01  
    GeneralRe: Function Folding PinmemberPhilippe Lhoste1:54 6 Feb '01  
    GeneralA possibly better approach... PinsussMike18:38 30 Aug '00  
    GeneralRe: A possibly better approach... PinmemberMick Bythell1:58 20 Nov '00  
    GeneralRe: A possibly better approach... PinmemberGamaliel Masters12:27 5 Feb '01  
    GeneralRe: A possibly better approach... PinmemberKir11:02 6 Feb '01  

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

    Permalink | Advertise | Privacy | Mobile
    Web02 | 2.5.120517.1 | Last Updated 30 Jan 2001
    Article Copyright 2000 by Red Pilgrim
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid