Click here to Skip to main content
Licence 
First Posted 9 Aug 2001
Views 44,969
Bookmarked 11 times

Enum Viewer Dialog

By PPresedo | 4 Oct 2001
This article demonstrates a tool for displaying enum values

1
1 vote, 100.0%
2

3

4

5
1.86/5 - 21 votes
μ 1.86, σa 5.00 [?]

Sample Image

Introduction

The enum viewer utility is used to read C/C++ include files and pull out the enums and their values. Enter an include file name into the Enum File edit control and press OK. This will a load list of enums found in the file into the Enums combo box. Select an enum from the combo box and its members and the values assigned to the enum member will be listed in the list control. There are two columns. The first column is used to display what the assigned enum value would be. The second column displays the enum text. The utility is useful when working with large enums and you are debugging an application and you are trying to determine what the enum is from a numeric value.

It currently handles enums of the following form:

enum TestEnum
{
   TEST_ENUM_1=100,
   TEST_ENUM_2,
   TEST_ENUM_3,
   TEST_ENUM_4=500,
   TEST_ENUM_5,
   TEST_ENUM_6,
};

enum TestEnum2 { TENUM1, TENUM2, TENUM3=200, TENUM4, };

enum TestEnum3 { TNUM1, TNUM2, TNUM3=200, TNUM4, };

enum {A = 1, B =2};
enum {C,D};

void f()
{
   enum {e, f, g = 20};
}

enum {H, I ,J};

It demonstrates the use of a recent file list in a MFC dialog based application.

History

5 Oct 2001 - updated source

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

PPresedo

Software Developer

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
GeneralBUGS PinmemberRejeesh.T.S19:40 14 Aug '01  
GeneralRe: BUGS PinmemberAnonymous19:39 21 Aug '01  
Question??? PinmemberRejeesh.T.S18:55 13 Aug '01  
Question??? PinmemberRejeesh.T.S2:16 13 Aug '01  
AnswerRe: ??? PinmemberCathy10:50 13 Aug '01  
GeneralRe: ??? PinmemberLarry Dobson13:50 8 Oct '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
Web04 | 2.5.120210.1 | Last Updated 5 Oct 2001
Article Copyright 2001 by PPresedo
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid