Author Topic: Aurel Edit  (Read 18801 times)

0 Members and 3 Guests are viewing this topic.

chrisc

  • Guest
Re: Aurel Edit
« Reply #45 on: March 23, 2018, 06:37:42 AM »
i have downloaded the reply #38 code and compiled it
BUT when i run the exe there is still no tooltips. 

 my pc is  Win 10 64bits


Charles Pegge

  • Guest
Re: Aurel Edit
« Reply #46 on: March 23, 2018, 06:54:25 AM »
I've checked the download on #38. I found that the window does not have focus until you click on it somewhere. Then hovering should produce tooltips. That is also the case with the 32bit version.

chrisc

  • Guest
Re: Aurel Edit
« Reply #47 on: March 23, 2018, 07:05:40 AM »
Clicking on it first to produce tooltips ... ok  got it

i think it would be better that to have it automatically display tooltips when mouse hover over
the toolbar?   maybe use setfocus on the toolbar whenever the program is loaded?

Charles Pegge

  • Guest
Re: Aurel Edit
« Reply #48 on: March 23, 2018, 07:21:21 AM »

SetFocus win

Drop it in just above 'message loop

:)

chrisc

  • Guest
Re: Aurel Edit
« Reply #49 on: March 23, 2018, 09:09:00 AM »
Thanxx Charles
it works now

Aurel

  • Guest
Re: Aurel Edit
« Reply #50 on: March 30, 2018, 01:37:25 PM »
In this fixing session of Aurel Edit i stuck little bit with
TOOLWINDOW - FindWindow
In older version i just use :

fWindow = CreateWindowEx ( WS_TOOLWINDOW|WS_EX_TOPMOST,wcx.lpcClassName,"Find/Replace...", 524288 , 600, 160, 412, 300, 0, 0, null, 0)
524288 is just ws_sysmenu
and as result when i click on Find button i get nothing... what?
then i figured that I must use registered CLASS NAME?
and it is "Oxygen"
so now is:
fWindow = CreateWindowEx ( WS_TOOLWINDOW|WS_EX_TOPMOST,"Oxygen","Find/Replace...", 524288 , 600, 160, 412, 300, 0, 0, null, 0)

Aurel

  • Guest
Re: Aurel Edit
« Reply #51 on: March 31, 2018, 03:53:32 PM »
..and more menu item + bitmaps added
,,now I need to add functions for menu items.. ahh

 :)

Aurel

  • Guest
Re: Aurel Edit
« Reply #52 on: June 10, 2018, 05:43:50 AM »
Here is latest code compiled with o2Progress (not last one i think)

matthew

  • Guest
Re: Aurel Edit
« Reply #53 on: June 11, 2018, 02:51:01 AM »
Hi Aurel, I just compiled with the latest version of OxygenBasic. Everything looks good here.

Aurel

  • Guest
Re: Aurel Edit
« Reply #54 on: June 11, 2018, 07:38:56 AM »
Thanks Matthew !

Aurel

  • Guest
Re: Aurel Edit
« Reply #55 on: January 18, 2019, 10:10:39 AM »
Just to let you know if someone ask why WM_CREATE not work
with awinh include created by me.
When i do some testing (learning) some programming in C winapi programs
i figured why WM_CREATE not work with mine include file.
Also i remove from skelton program message loop as separate function called Wait()
and put MessageLoop inside ( something like in C )

Aurel

  • Guest
Re: Aurel Edit
« Reply #56 on: January 18, 2019, 10:51:28 AM »
In attachment is awinh038.inc
EDIT: deleted because of strange problems ..sorry

« Last Edit: August 25, 2019, 03:45:25 AM by Aurel »

Aurel

  • Guest
Re: Aurel Edit
« Reply #57 on: February 04, 2020, 12:32:30 PM »
Hello
After some time i finally compiled AurelEdit with last self-compiled o2 version 0.2.8.
In attachment is complete Scintilla.zip so you just must to unpack content into existing folder.
\projectsB\Scintilla
What is new , well some things are fixed, i just started on config file and you can change theme then when you start
editor again your theme would be ON.
This is still just 32bit version but i will create 64bit version too.
« Last Edit: March 27, 2020, 12:49:41 PM by Aurel »