1. Edita 0.1.2

Added autoindent, wordwrap, F12 ex.err file handling, shellExecute for
.html and .bat files, and numerous enhancements and bugfixes to Window
Painter, Colour dialogue, OVRstrike mode, and block comment/indent.

Experimental (incomplete) routine list (Ctrl Q) added, and 
experimental display modes (direct as per 0.1.1, using a standard 
offscreen bitmap, and using a DIB section). See readme.txt for 
details.

http://palacebuilders.pwp.blueyonder.co.uk/edita.htm

Regards,
Pete

new topic     » topic index » view message » categorize

2. Re: Edita 0.1.2

Pete Lomax wrote:
> 
> Added autoindent, wordwrap, F12 ex.err file handling, shellExecute for
> .html and .bat files, and numerous enhancements and bugfixes to Window
> Painter, Colour dialogue, OVRstrike mode, and block comment/indent.

This version is still labeled as 0.1.1, but your subject says 0.1.2.

I know I'm not crazy, this time. 8^)

And one question: why doesn't the mouse scroll wheel work in Edita? is this
a known issue or maybe a problem with my set up?

Thanks!!

-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

3. Re: Edita 0.1.2

On Wed, 27 Apr 2005 07:16:59 -0700, cklester <guest at RapidEuphoria.com>
wrote:

>This version is still labeled as 0.1.1, but your subject says 0.1.2.
Thanks, page updated.
>
>And one question: why doesn't the mouse scroll wheel work in Edita? is this
>a known issue or maybe a problem with my set up?
I didn't get round to it. I have done now, it'll be in the next
version. In case you want them, the source mods are:

constant WM_MOUSEWHEEL = #20A -- mouse wheel moved


in procedure mouseHandler(integer msg, atom wParam, object lParam):

elsif msg = WM_MOUSEWHEEL then
			wParam = floor(wParam/#10000)
			if wParam>=#8000 then	-- sign bit set
				wParam-=#10000
			end if
			wParam=floor(wParam/120) --*mouseWheelScroll
			startSelection()
			while wParam<0 and CursorY and TopLine do
				TopLine-=1
				CursorY-=1
				paintall()
				wParam+=1
			end while
			while wParam>0 and CursorY+1<length(filetext[currfile]) do
				TopLine+=1
				CursorY+=1
				paintall()
				wParam-=1
			end while


in mainHandler:

elsif isMouseMsg(msg)
   or msg = WM_MOUSEWHEEL then	mouseHandler(msg,wParam,lParam)


There'll be a mouseWheelScroll setting in the ini file as well, next
release.

Regards,
Pete

new topic     » goto parent     » topic index » view message » categorize

4. Re: Edita 0.1.2

When I press 'F5' to run my program, it runs into an error due to the fact
that there are spaces in the path to my *.exw file (that's my guess, anyway).
I don't have the source for Edita, but I will download it if necessary to fix
this, as I'd like to continue trying it out.

-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

5. Re: Edita 0.1.2

Pete Lomax wrote:

> On Wed, 27 Apr 2005 07:16:59 -0700, cklester wrote:
>
>> This version is still labeled as 0.1.1, but your subject says 0.1.2.
>
> Thanks, page updated.

Thanks for the new version, Pete.

>> And one question: why doesn't the mouse scroll wheel work in Edita? is this
>> a known issue or maybe a problem with my set up?
>
> I didn't get round to it. I have done now, it'll be in the next
> version. In case you want them, the source mods are:

[snipped some EuCode]

Hmm..? <scratching my head>
The mouse scroll wheel worked fine for me in Edita 0.1.1,
and it also woks fine in this new version. smile

Regards,
   Juergen

new topic     » goto parent     » topic index » view message » categorize

6. Re: Edita 0.1.2

Juergen Luethje wrote:
> 
> Pete Lomax wrote:
> 
> > On Wed, 27 Apr 2005 07:16:59 -0700, cklester wrote:
> >
> >> And one question: why doesn't the mouse scroll wheel work in Edita? is this
> >> a known issue or maybe a problem with my set up?
> > I didn't get round to it. I have done now, it'll be in the next
> > version. In case you want them, the source mods are:
> The mouse scroll wheel worked fine for me in Edita 0.1.1,
> and it also woks fine in this new version. smile

Uh oh. Sounds like you have a virus. :D

-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

7. Re: Edita 0.1.2

cklester wrote:

> Juergen Luethje wrote:
>> 
>> Pete Lomax wrote:
>> 
>>> On Wed, 27 Apr 2005 07:16:59 -0700, cklester wrote:
>>>
>>>> And one question: why doesn't the mouse scroll wheel work in Edita? is this
>>>> a known issue or maybe a problem with my set up?
>>> I didn't get round to it. I have done now, it'll be in the next
>>> version. In case you want them, the source mods are:
>> The mouse scroll wheel worked fine for me in Edita 0.1.1,
>> and it also woks fine in this new version. smile
> 
> Uh oh. Sounds like you have a virus. :D

Uhhh <shudder>.
You probably mean the notorious "I-scroll-your-mouse-wheel" virus? :D

Regards,
   Juergen

new topic     » goto parent     » topic index » view message » categorize

8. Re: Edita 0.1.2

On Wed, 27 Apr 2005 11:39:14 -0700, cklester <guest at RapidEuphoria.com>
wrote:

>When I press 'F5' to run my program, it runs into an error due to the fact
>that there are spaces in the path to my *.exw file (that's my guess, anyway).
>I don't have the source for Edita, but I will download it if necessary to fix
>this, as I'd like to continue trying it out.

OK, I've added a bunch of \" to eacons.ew around line 450:
--	..sprintf("%s %s%s",
	..sprintf("\"%s\" \"%s%s\"",
--	..sprintf("%s %seacons.exw %08x %s %s%s",
	..sprintf("\"%s\" \"%seacons.exw\" %08x \"%s\" \"%s%s\"",
--	..sprintf("%s %s%s",
	..sprintf("\"%s\" \"%s%s\"", 
}}}
<eucode>
which should fix any problems with spaces in path and file names.
Do you want a new release?

Regards, Pete }}}

new topic     » goto parent     » topic index » view message » categorize

9. Re: Edita 0.1.2

On Wed, 27 Apr 2005 21:27:44 +0200, Juergen Luethje <j.lue at gmx.de>
wrote:

>Hmm..? <scratching my head>
>The mouse scroll wheel worked fine for me in Edita 0.1.1,
>and it also woks fine in this new version. smile
Maybe your mouse is configured to send ctrl up & ctrl down instead of
wm_mousewheel messages?

Pete

new topic     » goto parent     » topic index » view message » categorize

10. Re: Edita 0.1.2

Pete Lomax wrote:
> 
> which should fix any problems with spaces in path and file names.
> Do you want a new release?

Yes! Please! :)

-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

11. Re: Edita 0.1.2

Pete Lomax wrote:

> On Wed, 27 Apr 2005 21:27:44 +0200, Juergen Luethje wrote:
>
>> Hmm..? <scratching my head>
>> The mouse scroll wheel worked fine for me in Edita 0.1.1,
>> and it also woks fine in this new version. smile
>
> Maybe your mouse is configured to send ctrl up & ctrl down instead of
> wm_mousewheel messages?

I cannot configure this manually, but maybe the mouse driver does so
automatically. Interestingly my mouse wheel scrolls the display as
expected also in applications, where ctrl up & ctrl down do something
different or don't do anything at all. Maybe my mouse first sends
a wm_mousewheel message to an application, and gets feedback from it?
If the application tells the mouse: "Can't understand you.", then the
mouse maybe sends ctrl up & ctrl down?
Interesting.

Regards,
   Juergen

new topic     » goto parent     » topic index » view message » categorize

12. Re: Edita 0.1.2

On Wed, 27 Apr 2005 17:34:15 -0700, cklester <guest at RapidEuphoria.com>
wrote:

>Pete Lomax wrote:
>> 
>> Do you want a new release?
>
>Yes! Please! :)
OK, 0.1.3 has been uploaded. (mouse wheel and spaces in filenames)

Regards,
Pete

new topic     » goto parent     » topic index » view message » categorize

13. Re: Edita 0.1.2

Pete Lomax wrote:

> OK, 0.1.3 has been uploaded. (mouse wheel and spaces in filenames)

The mousewheel scrolling direction is reversed from common, expected behavior.
:)

-=ck
"Programming in a state of EUPHORIA."
http://www.cklester.com/euphoria/

new topic     » goto parent     » topic index » view message » categorize

14. Re: Edita 0.1.2

On Thu, 28 Apr 2005 07:42:03 -0700, cklester <guest at RapidEuphoria.com>
wrote:

>The mousewheel scrolling direction is reversed from common, expected behavior.
>:)
How's this for a quick hack?
Set mouseWheelScroll negative in the .ini file (but don't forget to
set it back for the next release!)

Chuckling,
Pete

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu