Click here to Skip to main content
15,896,207 members
Articles / Programming Languages / C++

Writing Win32 Apps with C++ only classes (part 3)

Rate me:
Please Sign up or sign in to vote.
4.76/5 (14 votes)
20 Jun 2004CPOL26 min read 69.1K   979   56  
C++ classes and wrappers to write W32 apps without MFC, ATL or other (part 3).
// Microsoft Visual C++ generated resource script.
//
#include "NGui_res.h"

#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 2 resource.
//
#include "winres.h"

/////////////////////////////////////////////////////////////////////////////
#undef APSTUDIO_READONLY_SYMBOLS

/////////////////////////////////////////////////////////////////////////////
// Inglese (Stati Uniti) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
#ifdef _WIN32
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
#pragma code_page(1252)
#endif //_WIN32

/////////////////////////////////////////////////////////////////////////////
//
// Bitmap
//

IDB_DOCKEREFFECTS       BITMAP                  "../../Libs/NGUI/Res/Dockereffects.bmp"

/////////////////////////////////////////////////////////////////////////////
//
// Cursor
//

IDC_TRACKHORZ           CURSOR                  "../../libs/NGUI/res/TrackHorz.cur"
IDC_TRACKVERT           CURSOR                  "../../libs/NGUI/res/TrackVert.cur"
IDC_TRACKLTRB           CURSOR                  "../../libs/NGUI/res/TrackLTRB.cur"
IDC_TRACKRTLB           CURSOR                  "../../libs/NGUI/res/TrackRTLB.cur"
IDC_TRACK4WAY           CURSOR                  "../../libs/NGUI/res/Track4Way.cur"
IDC_SPLITHORZ           CURSOR                  "../../libs/NGUI/res/SplitHorz.cur"
IDC_SPLITVERT           CURSOR                  "../../libs/NGUI/res/SplitVert.cur"
IDC_SPLIT4WAY           CURSOR                  "../../libs/NGUI/res/Split4Way.cur"
IDC_NODROP              CURSOR                  "../../libs/NGUI/res/nodrop.cur"
IDC_POINTER_DRAG        CURSOR                  "../../libs/NGUI/res/pointerCopy.cur"
IDC_POINTER_COPY        CURSOR                  "../../libs/NGUI/res/pointerDrag.cur"

/////////////////////////////////////////////////////////////////////////////
//
// String Table
//

STRINGTABLE 
BEGIN
    ID_CAPSLOCK             "Keyboard Caps Lock\nCAPS"
    ID_NUMLOCK              "Keyboard Num Lock\nNUM"
    ID_SCROLLLOCK           "Keyboard Scroll Lock\nSCRL"
    ID_INSERTLOCK           "Keyboard Insert-mode\nINS"
END

#endif    // Inglese (Stati Uniti) resources
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
// Italiano (Italia) resources

#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ITA)
#ifdef _WIN32
LANGUAGE LANG_ITALIAN, SUBLANG_ITALIAN
#pragma code_page(1252)
#endif //_WIN32

#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//

1 TEXTINCLUDE 
BEGIN
    "Nlib_res.h\0"
END

2 TEXTINCLUDE 
BEGIN
    "#include ""winres.h""\r\n"
    "\0"
END

3 TEXTINCLUDE 
BEGIN
    "#include ""Accels.rc2""\r\n"
    "\0"
END

#endif    // APSTUDIO_INVOKED

#endif    // Italiano (Italia) resources
/////////////////////////////////////////////////////////////////////////////



#ifndef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// Generated from the TEXTINCLUDE 3 resource.
//
#include "Accels.rc2"

/////////////////////////////////////////////////////////////////////////////
#endif    // not APSTUDIO_INVOKED

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Italy Italy
Born and living in Milan (Italy), I'm an engineer in electronics actually working in the ICT department of an important oil/gas & energy company as responsible for planning and engineering of ICT infrastructures.
Interested in programming since the '70s, today I still define architectures for the ICT, deploying dedicated specific client application for engineering purposes, working with C++, MFC, STL, and recently also C# and D.

Comments and Discussions