Search found 63 matches

by Edgar5
Sat Nov 25, 2017 6:42 am
Forum: Bug Reports
Topic: Unable to drag back navigation pane (folders tree view)
Replies: 4
Views: 7708

Re: Unable to drag back navigation pane (folders tree view)

I don't use Explorer++ "out-of-the-box" (I have made hundreds of changes to the code - many thousands of lines) and some of the changes affect this functionality specifically. In the View menu there is a selection for "Folders". The toggling code could be made smarter such that i...
by Edgar5
Thu Nov 16, 2017 2:38 am
Forum: Bug Reports
Topic: Unable to drag back navigation pane (folders tree view)
Replies: 4
Views: 7708

Re: Unable to drag back navigation pane (folders tree view)

Worst case solution…
Run Explorer++ from the command line:
Explorer++.exe -clear_settings
this should cause Explorer++ to clear out all its settings and return the Navigation Pain to its normal size and location.
by Edgar5
Sun Oct 22, 2017 11:57 pm
Forum: Feature Requests
Topic: About icon design
Replies: 1
Views: 4229

Re: About icon design

+1
For my personal build I've redrawn quite a few of the images including the main program icon.
by Edgar5
Sat Sep 02, 2017 7:12 am
Forum: Development
Topic: OnAutoSizeColumns improvement
Replies: 0
Views: 23137

OnAutoSizeColumns improvement

In file: \Explorer++\MsgHandler.cpp at or near line #1600 the old Explorerplusplus::OnAutoSizeColumns () logic ignored the possibility that the header text could be wider than the widest item in the column. This sizes the columns based on the widest of either the header or the widest item. void Expl...
by Edgar5
Wed Aug 30, 2017 4:28 am
Forum: Feature Requests
Topic: Automatically size and sort the Default Columns in the dialog
Replies: 0
Views: 4908

Automatically size and sort the Default Columns in the dialog

On the Options > Default Settings tab the "Default columns" button brings up a new dialog which offers a large number of possible columns (specifically under the General Folder option). There's one bug/enhancement that is easy to fix/improve; the fixed width of the column checkbox items wa...
by Edgar5
Wed Aug 23, 2017 3:46 pm
Forum: Development
Topic: Almost completely font sensitive…
Replies: 0
Views: 22976

Almost completely font sensitive…

1) I rearranged the menus little bit and changed one of the strings ("Change Display Window Colors" moved out of the View menu into the Tools menu and changed its name to "Change Display Panel Details" to reflect that it also had a font picker). 2) The main toolbar derives its fo...
by Edgar5
Wed Aug 23, 2017 4:07 am
Forum: Bug Reports
Topic: Rectangle width/height off-by-one?
Replies: 1
Views: 5330

Re: Rectangle width/height off-by-one?

A global Search & Replace; all files (*.c;*.cpp;*.h); In the solution:
Replace:
GetRectHeight(&
With:
GetRectHeight(
and Replace:
GetRectWidth(&
With:
GetRectWidth(
resolves all the coding changes.
by Edgar5
Wed Aug 23, 2017 4:01 am
Forum: Bug Reports
Topic: Rectangle width/height off-by-one?
Replies: 1
Views: 5330

Rectangle width/height off-by-one?

In file: \Helper\Helper.h at or near line #220, there are two functions: int GetRectHeight(RECT *rc); int GetRectWidth(RECT *rc); implemented in file: \Helper\Helper.cpp at or near line #575 thus: int GetRectHeight(RECT *rc) { return rc->bottom - rc->top; } int GetRectWidth(RECT *rc) { return rc->ri...
by Edgar5
Tue Aug 22, 2017 5:58 am
Forum: Development
Topic: Changing the "spelling" of some #defined functions
Replies: 1
Views: 23336

Re: Changing the "spelling" of some #defined functions

Here's what I ended up with for my personal build: #define Set_Window_ThumbnailFile(hDisplay,FileName,bShowImage) \ SendMessage(hDisplay,DWM_SETTHUMBNAILFILE,(WPARAM)FileName,(LPARAM)bShowImage) //#define Get_Window_Surround_Color(hDisplay) \ //SendMessage(hDisplay,DWM_GETSURROUNDCOLOR,0,0)//efm5 un...
by Edgar5
Mon Aug 21, 2017 8:48 am
Forum: Development
Topic: Changing the "spelling" of some #defined functions
Replies: 1
Views: 23336

Changing the "spelling" of some #defined functions

In file \DisplayWindow\DisplayWindow.h at or near line number #28 there are quite a few #defines of which these are two examples: #define DisplayWindow_SetFont(hDisplay,hFont) \ SendMessage(hDisplay,DWM_SETFONT,hFont,0) #define DisplayWindow_GetFont(hDisplay,hFont) \ SendMessage(hDisplay,DWM_GETFONT...