Added visual style support :o

This commit is contained in:
Scott Ehlert 2006-04-14 15:55:25 +00:00
parent a5df31570e
commit 28b04878ce
5 changed files with 68 additions and 61 deletions

View File

@ -3,16 +3,17 @@
// Used by WinCSX.rc // Used by WinCSX.rc
// //
#define IDC_MYICON 2 #define IDC_MYICON 2
#define IDM_VISUALSTYLES 1
#define IDD_WINCSX_DIALOG 102 #define IDD_WINCSX_DIALOG 102
#define IDS_APP_TITLE 103 #define IDS_APP_TITLE 103
#define IDD_WINCSXBOX 103 #define IDD_WINCSXBOX 103
#define IDM_ABOUT 104 #define IDM_ABOUT 104
#define IDM_EXIT 105
#define IDI_WINCSX 107 #define IDI_WINCSX 107
#define IDI_SMALL 108 #define IDI_SMALL 108
#define IDC_WINCSX 109 #define IDC_WINCSX 109
#define IDR_MAINFRAME 128 #define IDR_MAINFRAME 128
#define IDD_ABOUTBOX 129 #define IDD_ABOUTBOX 129
#define IDR_241 132
#define IDC_LIST 1010 #define IDC_LIST 1010
#define IDC_BUTTON_ABOUT 1029 #define IDC_BUTTON_ABOUT 1029
#define IDC_ABOUT 1029 #define IDC_ABOUT 1029
@ -36,7 +37,6 @@
#define IDC_AUTHOR 1114 #define IDC_AUTHOR 1114
#define ID_HELP_DIALOG 32771 #define ID_HELP_DIALOG 32771
#define IDM_FILE_DIALOG 32773 #define IDM_FILE_DIALOG 32773
#define IDM_WINCSX 32774
#define IDC_STATIC -1 #define IDC_STATIC -1
// Next default values for new objects // Next default values for new objects
@ -44,7 +44,7 @@
#ifdef APSTUDIO_INVOKED #ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS #ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NO_MFC 1 #define _APS_NO_MFC 1
#define _APS_NEXT_RESOURCE_VALUE 131 #define _APS_NEXT_RESOURCE_VALUE 133
#define _APS_NEXT_COMMAND_VALUE 32775 #define _APS_NEXT_COMMAND_VALUE 32775
#define _APS_NEXT_CONTROL_VALUE 1033 #define _APS_NEXT_CONTROL_VALUE 1033
#define _APS_NEXT_SYMED_VALUE 110 #define _APS_NEXT_SYMED_VALUE 110

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" publicKeyToken="6595b64144ccf1df" language="*" processorArchitecture="x86" />
</dependentAssembly>
</dependency>
</assembly>

View File

@ -15,11 +15,11 @@
#undef APSTUDIO_READONLY_SYMBOLS #undef APSTUDIO_READONLY_SYMBOLS
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Swedish resources // Neutral resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_SVE) #if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
#ifdef _WIN32 #ifdef _WIN32
LANGUAGE LANG_SWEDISH, SUBLANG_DEFAULT LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#pragma code_page(1252) #pragma code_page(1252)
#endif //_WIN32 #endif //_WIN32
@ -33,33 +33,6 @@ LANGUAGE LANG_SWEDISH, SUBLANG_DEFAULT
IDI_WINCSX ICON "WinCSX.ico" IDI_WINCSX ICON "WinCSX.ico"
IDI_SMALL ICON "small.ico" IDI_SMALL ICON "small.ico"
/////////////////////////////////////////////////////////////////////////////
//
// Menu
//
IDC_WINCSX MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "WinCSX", IDM_WINCSX
MENUITEM "E&xit", IDM_EXIT
END
END
/////////////////////////////////////////////////////////////////////////////
//
// Accelerator
//
IDC_WINCSX ACCELERATORS
BEGIN
"?", IDM_ABOUT, ASCII, ALT
"/", IDM_ABOUT, ASCII, ALT
END
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// //
// Dialog // Dialog
@ -123,34 +96,6 @@ BEGIN
END END
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
"#include ""windows.h""\r\n"
"#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// //
// DESIGNINFO // DESIGNINFO
@ -188,6 +133,13 @@ END
#endif // APSTUDIO_INVOKED #endif // APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// 24
//
IDM_VISUALSTYLES 24 "WinCSX.exe.manifest"
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// //
// String Table // String Table
@ -199,6 +151,46 @@ BEGIN
IDC_WINCSX "WINCSX" IDC_WINCSX "WINCSX"
END END
#endif // Neutral resources
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// Swedish resources
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_SVE)
#ifdef _WIN32
LANGUAGE LANG_SWEDISH, SUBLANG_DEFAULT
#pragma code_page(1252)
#endif //_WIN32
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
//
// TEXTINCLUDE
//
1 TEXTINCLUDE
BEGIN
"resource.h\0"
END
2 TEXTINCLUDE
BEGIN
"#define APSTUDIO_HIDDEN_SYMBOLS\r\n"
"#include ""windows.h""\r\n"
"#undef APSTUDIO_HIDDEN_SYMBOLS\r\n"
"\0"
END
3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
END
#endif // APSTUDIO_INVOKED
#endif // Swedish resources #endif // Swedish resources
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////

View File

@ -153,6 +153,9 @@
<File <File
RelativePath=".\small.ico"> RelativePath=".\small.ico">
</File> </File>
<File
RelativePath=".\WinCSX.exe.manifest">
</File>
<File <File
RelativePath=".\WinCSX.ico"> RelativePath=".\WinCSX.ico">
</File> </File>

View File

@ -230,6 +230,10 @@
RelativePath="..\small.ico" RelativePath="..\small.ico"
> >
</File> </File>
<File
RelativePath="..\WinCSX.exe.manifest"
>
</File>
<File <File
RelativePath="..\WinCSX.ico" RelativePath="..\WinCSX.ico"
> >