Hermès Bélusca-Maïto
9393fc320e
[FORMATTING] Remove trailing whitespace. Addendum to 34593d93
.
...
Excluded: 3rd-party code (incl. wine) and most of the win32ss.
2021-09-13 03:52:22 +02:00
Victor Perevertkin
74ec94e12c
[CMAKE] Some options are only supported by GCC, don't use them for clang
...
These are (so far):
-Wno-format-overflow
-Wno-nonnull-compare
-Wno-old-style-declaration
-Wno-unused-but-set-variable
2021-04-09 03:58:19 +03:00
Jérôme Gardou
907025a018
[CMAKE] Introduce the atl_classes interface library
...
This takes care of adding the relvant include directory and the _ATL_NO_EXCEPTIONS define, if needed
2020-10-20 21:44:54 +02:00
Jérôme Gardou
d6ea8659c8
[CMAKE] Get rid of the set_cpp macro
...
Instead of messing with global variables and the like, we introduce two target properties:
- WITH_CXX_EXCEPTIONS: if you want to use C++ exceptions
- WITH_CXX_RTTI: if you need RTTI in your module
You can use the newly introduced set_target_cpp_properties function, with WITH_EXCEPTIONS and WITH_RTTI arguments
We also introduce two libraries :
- cpprt: for C++ runtime routines
- cppstl: for the C++ standard template library
NB: On GCC, this requires to create imported libraries with the related built-in libraries:libsupc++, limingwex, libstdc++
Finally, we manage the relevant flags with the ad-hoc generator expressions
So, if you don't need exceptions, nor RTTI, nor use any runtime at all: you simply have nothing else to do than add your C++ file to your module
2020-10-20 21:44:54 +02:00
Katayama Hirofumi MZ
c8e3ef7894
[SHELLFIND] Split encoding detection code ( #3147 )
...
Split encoding detection code to improve code quality. This is follow-up of #3134 (7376cde
). CORE-17250
2020-09-10 19:03:20 +09:00
Katayama Hirofumi MZ
7376cdebb6
[SHELLFIND] Encoding-aware file search ( #3134 )
...
Consider UTF-8/UTF-16/UTF-16BE encodings in file search. Recognize UTF-8/UTF-16/UTF-16BE BOM and NULs at the beginning of the file contents. Optimize for speed.
CORE-17250
2020-09-07 22:30:47 +09:00
Katayama Hirofumi MZ
2dd4f8714d
[SHELLFIND] Fix directory search upon non-empty word/phrase query ( #3130 )
...
If the search phrase was not empty, it must not match the directory. CORE-17244
2020-09-07 15:48:25 +09:00
Brock Mammen
f0d6d9896d
[SHELLFIND] Fix column sorting ( #2814 )
...
CORE-16825
2020-08-16 19:02:42 +03:00
Victor Perevertkin
7e069ccdb2
[CMAKE] Replace custom functions to built-in ones
...
add_target_compile_definitions -> target_compile_definitions
add_target_compile_flags -> target_compile_options
add_target_include_directories -> target_include_directories
2020-04-16 15:59:38 +03:00
Thomas Faber
aee6cbc50a
[SHELL] Add SHOpenFolderAndSelectItems to shlobj.h.
2020-01-18 13:10:35 +01:00
Doug Lyons
103c87d2b9
[SHELLFIND] Add Hidden Files & Folders Selection. CORE-16427
2019-10-19 15:57:34 +02:00
Joachim Henze
cd2a274ef7
[BROWSEUI][SHELLFIND] Allow to 'Open Containing Folder'
...
of a search result again.
The feature regressed by 0.4.13-dev-1133-g
a3ee648d8b
I chose the shorter solution of Brock Mammen instead
of the patch of Doug Lyons from PR1960.
Still many thanks to Doug Lyons for his encouragement
in creating a fix as well and performing
regression-testing.
I intend to merge that back into 0.4.13RCs as well.
2019-10-12 15:44:58 +02:00
Doug Lyons
b6b7bda443
Shell Find Improvements to make Search Item general and Show Sub-directories ( #1927 )
...
* Shell Find Improvement to make Search Item general by adding asterisks before and after before search and show sub-directories in find listing. CORE-16152
2019-10-05 16:32:49 +02:00
Thomas Faber
c2b476bd77
[SHELL] IPersistFolder::Initialize takes a PCIDLIST_ABSOLUTE. CORE-16385
2019-09-22 16:19:11 +02:00
Thomas Faber
b90c24d640
[SHELL] IPersistFolder2::GetCurFolder takes a PIDLIST_ABSOLUTE*. CORE-16385
2019-09-22 16:19:09 +02:00
Brock Mammen
9b75b67e9d
[SHELLFIND] Use IS_INTRESOURCE()
2019-09-15 19:46:36 +03:00
Brock Mammen
8da23e7eb9
[SHELLFIND] Add missing dependency to CMakeLists.txt
2019-09-15 19:46:36 +03:00
Brock Mammen
0311544bb3
[SHELLFIND] Fix return values
2019-09-15 19:46:36 +03:00
Brock Mammen
b766576487
[SHELLFIND] Remove unused COM interfaces
2019-09-15 19:46:36 +03:00
Brock Mammen
8228844241
[SHELLFIND] Remove unused functions
2019-09-15 19:46:36 +03:00
Brock Mammen
12451dc172
[SHELLFIND] Change parameter from array reference to pointer
2019-09-15 19:46:36 +03:00
Brock Mammen
7ac9fd9f51
[SHELLFIND] Remove unnecessary cast
2019-09-15 19:46:36 +03:00
Brock Mammen
0eee3ed368
[SHELLFIND] Remove redundant check
2019-09-15 19:46:36 +03:00
Brock Mammen
2513c47452
[SHELLFIND] Fix unsafe cast
2019-09-15 19:46:36 +03:00
Brock Mammen
fbdc08dceb
[SHELLFIND] Use CoTaskMemAlloc instead of SHAlloc
2019-09-15 19:46:36 +03:00
Brock Mammen
d0171027e0
[SHELLFIND] Fix IImageList leak
2019-09-15 19:46:36 +03:00
Brock Mammen
a3ee648d8b
[SHELLFIND] Simplify PIDLs to paths
2019-09-15 19:46:36 +03:00
Brock Mammen
0f995d77d1
[SHELLFIND] Remove search results folder from address edit box
2019-09-15 19:46:36 +03:00
Brock Mammen
e6a5821e0c
[SHELLFIND] Subscribe to folders that are already opened
2019-09-15 19:46:36 +03:00
Brock Mammen
07d37180a1
[SHELLFIND] Open search bar when search results folder is opened
2019-09-15 19:46:36 +03:00
Brock Mammen
312b628fe1
[SHELLFIND] Remove dependency on internal shell32 functions
2019-09-15 19:46:36 +03:00
Brock Mammen
6c6fd6d989
[SHELLFIND] Localize column names
2019-09-15 19:46:36 +03:00
Brock Mammen
641988a386
[SHELLFIND] Rename data members
2019-09-15 19:46:36 +03:00
Brock Mammen
fe5c76a034
[SHELLFIND] Fix handle leak for stop event
2019-09-15 19:46:36 +03:00
Brock Mammen
dce5ccec4e
[SHELLFIND] Use DeferWindowPos for resizing child windows
2019-09-15 19:46:36 +03:00
Brock Mammen
8aa063b451
[SHELLFIND] Use assignment instead of memcpy
2019-09-15 19:46:36 +03:00
Brock Mammen
3b9508e98f
[SHELLFIND] Fix copyright headers
2019-09-15 19:46:36 +03:00
Brock Mammen
e15445e0c5
[SHELLFIND] Remove unused function
2019-09-15 19:46:36 +03:00
Brock Mammen
ff7e9870ce
[SHELLFIND] Remove unnecessary data member for focus
2019-09-15 19:46:36 +03:00
Brock Mammen
a905699ac6
[SHELLFIND] Use case-insensitive string comparison
2019-09-15 19:46:36 +03:00
Brock Mammen
87c1f457eb
[SHELLFIND] Improve search bar UI
2019-09-15 19:46:36 +03:00
Brock Mammen
c46d60360a
[SHELLFIND] Update status bar text
2019-09-15 19:46:36 +03:00
Brock Mammen
8246cd4e1b
[SHELLFIND] Remove duplicate search code
2019-09-15 19:46:36 +03:00
Brock Mammen
41f9ad120d
[SHELLFIND] Add stop search command
2019-09-15 19:46:36 +03:00
Brock Mammen
41d7b3700d
[SHELLFIND] Add search command events
2019-09-15 19:46:36 +03:00
Brock Mammen
2f3db8d9a3
[SHELLFIND] Add search functionality
2019-09-15 19:46:36 +03:00
Brock Mammen
3583900b17
[SHELLFIND] Move window message constants to header file
2019-09-15 19:46:36 +03:00
Brock Mammen
6d6bc885cb
[SHELLFIND] Use smart pointers for PIDLs
2019-09-15 19:46:36 +03:00
Brock Mammen
27ca55bce6
[SHELLFIND] Add edit box for search location
2019-09-15 19:46:36 +03:00
Brock Mammen
363ddf9c70
[SHELLFIND] Set status bar text after opening search results folder
2019-09-15 19:46:36 +03:00