Skip to content

Commit 6fb0e9e

Browse files
committed
[Explorer_new]
- Remove CaptionDrawTemp - Added flashing task - Added theming to toolbar buttons svn path=/branches/GSoC_2011/NewExplorer/; revision=51905
1 parent 8a9d4c3 commit 6fb0e9e

File tree

5 files changed

+149
-137
lines changed

5 files changed

+149
-137
lines changed

base/shell/explorer-new/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ add_importlibs(explorer_new
3434
shell32
3535
shlwapi
3636
version
37+
uxtheme
3738
msvcrt
3839
kernel32
3940
ntdll)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3+
<assemblyIdentity
4+
version="1.0.0.0"
5+
processorArchitecture="X86"
6+
name="ReactOS.Explorer"
7+
type="win32"
8+
/>
9+
<description>This is ReactOS Explorer</description>
10+
<dependency>
11+
<dependentAssembly>
12+
<assemblyIdentity
13+
type="win32"
14+
name="Microsoft.Windows.Common-Controls"
15+
version="6.0.0.0"
16+
processorArchitecture="X86"
17+
publicKeyToken="6595b64144ccf1df"
18+
language="*"
19+
/>
20+
</dependentAssembly>
21+
</dependency>
22+
</assembly>

base/shell/explorer-new/explorer.rc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ IDB_TASKBARPROP_NOLOCK_GROUP_NOQL BITMAP DISCARDABLE res/nolock_group_noql.bmp
2020
IDB_TASKBARPROP_NOLOCK_NOGROUP_NOQL BITMAP DISCARDABLE res/nolock_nogroup_noql.bmp
2121
IDB_TASKBARPROP_NOLOCK_NOGROUP_QL BITMAP DISCARDABLE res/nolock_nogroup_ql.bmp
2222
IDB_TASKBARPROP_NOLOCK_GROUP_QL BITMAP DISCARDABLE res/nolock_group_ql.bmp
23+
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "explorer.exe.manifest"
2324

2425
#include "lang/bg-BG.rc"
2526
#include "lang/cs-CZ.rc"

base/shell/explorer-new/precomp.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
#include <tchar.h>
1818
#include <stdio.h>
1919
#include <stdlib.h>
20+
#include <uxtheme.h>
2021

22+
#include "tmschema.h"
2123
#include "resource.h"
2224
#include "comcsup.h"
2325
#include "todo.h"

0 commit comments

Comments
 (0)