Commit graph

141 commits

Author SHA1 Message Date
Mirek Fidler
11399b1e23 uppsrc: Ctrl-Y as Redo support 2025-08-18 14:35:06 +02:00
mirek-fidler
0b44641396
CtrlCore, ide: Custom TitleBar 2025-06-04 14:14:06 +02:00
Mirek Fidler
ac96b3831a ide: External mode improvements 2025-05-01 13:36:05 +02:00
Mirek Fidler
b2e14fdba5 ide: In external mode, opening main package that is empty now loads all files from folder into package 2025-04-24 10:47:25 +02:00
Mirek Fidler
cf9b0c551d HexView: Fixed problem with displaying text 2025-01-28 14:51:37 +01:00
Mirek Fidler
d473f36605 .cosmetics 2025-01-17 09:47:22 +01:00
Mirek Fidler
a0bf195b95 ide: Cosmetics 2025-01-05 14:17:22 +01:00
Mirek Fidler
3379925b26 ide: Debugging ide app icon fixes (cosmetics) 2025-01-02 20:56:00 +01:00
Mirek Fidler
122e456cbf ide: Now using 256x256 main icon 2025-01-02 15:52:00 +01:00
Zbigniew Rębacz
807a0a8d14
Ide: Fix compilation error and warnings related to MSVC 22 (#211)
* Ide: Fix compilation error and warnings related to MSVC 22

* Ide: instant setup now detects llvm include and bin directory for MSVC to compile TheIDE out of the box.
2024-10-23 00:11:46 +02:00
Mirek Fidler
720c0b38eb ide: Repo sync now shows git branch 2024-02-23 10:07:49 +01:00
Mirek Fidler
0f5ff7055f ide: Changed branch in editor bar design 2023-12-07 10:17:34 +01:00
Mirek Fidler
eba38dda5d ide: branch bar color now depends on branch (via hash) 2023-11-24 21:48:50 +01:00
Mirek Fidler
547a50d33c Core: ValueCache limits simplified, ide: Show branch in editorbar 2023-11-15 10:47:12 +01:00
Mirek Fidler
79fe8271b0 ide: Improved fix of avoiding menu triggered reparse 2023-10-03 13:29:33 +02:00
Mirek Fidler
7d4bb4f19f ide: Code scanning now only gets triggered on activate if theide was deactivated to another app. 2023-10-01 20:47:00 +02:00
Mirek Fidler
f1f28cd00a ide: reduced background CPU utilisation 2023-09-20 14:09:50 +02:00
Mirek Fidler
ba48e12f26 ide: Various windows (XML, Json, diffs) are now changed changed from modal to main 2023-08-13 20:13:32 +02:00
Mirek Fidler
d5133628b4 ide: Nicer animation of indexer running 2023-08-04 12:33:55 +02:00
Mirek Fidler
a6575f3a16 ide: Compare with improvements 2023-08-03 11:17:40 +02:00
Mirek Fidler
a7768b36f6 ide: Display out of page function/class headers 2023-07-22 20:30:06 +02:00
Mirek Fidler
069e7a52d8 ide: Replace found items 2023-07-09 14:08:33 +02:00
Mirek Fidler
761cce1a9c Draw/CtrlLib: StdDisplay (if CtrlLib is present) now supports \1 qtf escape code, ide: small git improvements 2023-06-22 13:25:25 +02:00
Mirek Fidler
3ad091f9ec ide: cosmetics 2023-05-12 10:16:22 +02:00
Mirek Fidler
36ef12fdc3 MacOS: Fixed rendering of apple chars in italic, removed Insert key from mac menu (gets displayed wrongly) 2023-04-18 11:12:27 +02:00
Mirek Fidler
d0149d8734 ide: Now shows git branch 2023-03-27 20:11:27 +02:00
Mirek Fidler
b2456a14bb uppsrc: MacOS fixes 2023-03-21 11:10:03 +01:00
Mirek Fidler
bba3c76769 ide: Fixed issue with assist and main.conf 2023-03-02 14:17:34 +01:00
Mirek Fidler
c53f0d4d70 ide: reverted faulty master optimisation 2023-02-24 13:40:47 +01:00
Mirek Fidler
74b0c3f791 ide: Old Hdepend replaced with PPinfo, master file optimisations 2023-02-24 11:10:55 +01:00
Mirek Fidler
723c3e716a ide: Disableing libclang after crash now PromptYesNo, canceling build after the new main package is selected 2022-12-28 09:31:53 +01:00
Mirek Fidler
e096ae1076 ide: Fixed Assist problem with main.conf 2022-12-03 00:41:28 +01:00
Mirek Fidler
540631c844 ide: Rescanning on main config switching 2022-11-27 20:01:05 +01:00
mirek-fidler
e8035690b9
libclang ide #94
- Assist/Autocomplete refactored to use libclang

Other minor changes:

- Removed CoWork Pipe
- .dli runtime loading of dynamic libraries now supports path to library in access function
- EditField::SetBackground
- RichTextView::GotoLabel variant with Gate for matching
- RichEdit::GotoLabel variant with Gate for matching
2022-09-16 10:31:14 +02:00
Mirek Fidler
198e8114a6 CtrlCore: Ctrl::GetEventLevel 2021-12-05 10:03:47 +01:00
Mirek Fidler
34ff691308 sizeof(wchar) is changed to 4 (32 bits) to support non BMP unicode characters
This might bring some incompatibilities in the code that expects wchar to be 16 bit, which
  escpecially involves dealing with Win32 (and to lesser extend MacOS) APIs, so if your application
  is doing that, please check all instances of WCHAR (UniChar on MacOS) or even wchar
  especially type casts.

  To support host APIs, char16 is introduced (but there is no 16-bit String varian).

  Use ToSystemCharsetW, FromSystemCharsetW to convert texts to Win32 API.

- Support of drawing non-BMP characters in GUI
- Vastly improved character font replacement code (when drawing characters missing with requested font, replacement font is used)
- Last instances of Win32 ANSI calls (those ending with A) are removed
- UTF handling routines are refactored and their's naming is unified
- RTF is now being able to handle non-BMP characters (RTF is used as clipboard format for RichText)

Other minor changes:

- fixed TryRealloc issue
- improved MemoryCheck
- Removed MemoryAlloc48/MemoryFree48
- In theide Background parsing should less often cause delays in the main thread
2021-12-02 12:03:19 +01:00
cxl
10fc7a1e99 CtrlLib: Do not ask again option in Prompts, ide: Compare with now has LRU list
git-svn-id: svn://ultimatepp.org/upp/trunk@15971 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-05-31 09:00:13 +00:00
cxl
8ee2a9d46f ide, CodeEditor: Move line/selection up/down
git-svn-id: svn://ultimatepp.org/upp/trunk@15924 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-04-18 22:49:59 +00:00
cxl
c5dd8aff7c ide: Optimized Assist speed (problem with include cache)
git-svn-id: svn://ultimatepp.org/upp/trunk@15851 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-03-18 08:14:58 +00:00
cxl
42ba8e7854 ide: Dir diff can now limit files by time, report history of .upp file, fixed SSL issue
git-svn-id: svn://ultimatepp.org/upp/trunk@15773 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-02-16 12:39:19 +00:00
cxl
550e2e7e1a ide: Support for same name main package in different nest
git-svn-id: svn://ultimatepp.org/upp/trunk@15606 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-12-17 23:25:23 +00:00
cxl
84aae8ed12 ide: LocalHost/Host, urepo refactored
git-svn-id: svn://ultimatepp.org/upp/trunk@15586 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-12-12 19:27:04 +00:00
cxl
8570270fe1 ide: UppHub: automatic installation of missing packages
git-svn-id: svn://ultimatepp.org/upp/trunk@15544 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-11-29 16:42:49 +00:00
cxl
16c1fab3d4 CtrlLib, ide: Support for mouse fw/bk buttons
git-svn-id: svn://ultimatepp.org/upp/trunk@15453 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-11-19 10:16:03 +00:00
cxl
c146c6aa54 ide: Compare with next file
git-svn-id: svn://ultimatepp.org/upp/trunk@15325 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-10-30 10:00:14 +00:00
cxl
6fca987969 uppsrc: Fixing GCC 10.2. warnings
git-svn-id: svn://ultimatepp.org/upp/trunk@15182 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-10-01 08:03:33 +00:00
cxl
174098ef72 Core: CheckLogEtalon, ide: Compare with log
git-svn-id: svn://ultimatepp.org/upp/trunk@14837 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-08-19 08:46:50 +00:00
cxl
00a1274137 ide: Fixed minor issue with open main package
git-svn-id: svn://ultimatepp.org/upp/trunk@14751 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-08-05 08:42:12 +00:00
cxl
ebd680ff2e ide: C++ parsing now parallel and in background
git-svn-id: svn://ultimatepp.org/upp/trunk@14618 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-06-22 14:02:45 +00:00
cxl
51904d3621 ide: Display/apply patch tool in Assist
git-svn-id: svn://ultimatepp.org/upp/trunk@13482 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-07-11 13:20:14 +00:00