Modal Dialogs in Linux Ubuntu

Discuss GUI programming with the RapaGUI plugin here
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Modal Dialogs in Linux Ubuntu

Post by airsoftsoftwair »

Can you post some minimal sample code that I can try here or is it reproducable with an example script that comes with RapaGUI?
SamuraiCrow
Posts: 475
Joined: Fri May 15, 2015 5:15 pm
Location: Waterville, Minnesota USA

Re: Modal Dialogs in Linux Ubuntu

Post by SamuraiCrow »

Try single clicking the "Edit me" item twice to edit it. There's an instant coredump on my Linux box.

Code: Select all

@VERSION 7,1
@REQUIRE "RapaGUI"

moai.CreateApp([[
<?xml version="1.0" encoding="iso-8859-1"?>
<application id="app">
	<window title="List" id="WINDOW">
		<vgroup>
			<listview id="lv" notify="StartEditing">
				<column title="List Title" editable="true">
					<item>Edit me</item>
				</column>
			</listview>
		</vgroup>
	</window>
</application>
]])

Function p_EventFunc(msg)
	Switch(msg.action)
	Case "RapaGUI":
		Switch(msg.Attribute)
		Case "ValueChanged":
			If (msg.id = "lv")
				moai.Request("Update",
					"Listview row " .. msg.row .. " column " .. msg.column ..
					"\nchanged to " .. msg.triggervalue , "OK", "Information")
			EndIf
		Case "AbortEditing":
			If (msg.id = "lv")
				moai.Request("Update",	"Listview change aborted", "OK", "Information")
			EndIf
		Case "StartEditing":
			If (msg.id = "lv")
				moai.Request("Warning", "Edit mode activated", "OK", "Warning")
			EndIf
		EndSwitch
	EndSwitch
EndFunction

InstallEventHandler({RapaGUI = p_EventFunc})

Repeat
	WaitEvent
Forever
I'm on registered MorphOS using FlowStudio.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Modal Dialogs in Linux Ubuntu

Post by airsoftsoftwair »

Thanks for the test case, crashes here too. Will be fixed.
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Modal Dialogs in Linux Ubuntu

Post by airsoftsoftwair »

Can't reproduce any of the issues reported in this thread with my latest build of RapaGUI 2.0 any more so I guess it all has been fixed along the way because several core components have been completely rewritten in RapaGUI 2.0 and I have also updated to wxWidgets 3.1.4. So I consider all of this fixed without explicitly fixing it ;)
davec
Posts: 21
Joined: Thu Sep 03, 2020 10:39 pm

Re: Modal Dialogs in Linux Ubuntu

Post by davec »

Howdy,
I am coming across all the weird gtk stuff mentioned above too.

Any idea when RapaGUI2.0 will be released?

Thanks
Dave
airsoftsoftwair wrote: Fri Jul 31, 2020 3:48 pm Can't reproduce any of the issues reported in this thread with my latest build of RapaGUI 2.0 any more so I guess it all has been fixed along the way because several core components have been completely rewritten in RapaGUI 2.0 and I have also updated to wxWidgets 3.1.4. So I consider all of this fixed without explicitly fixing it ;)
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Modal Dialogs in Linux Ubuntu

Post by airsoftsoftwair »

davec wrote: Wed Nov 25, 2020 9:09 pm Any idea when RapaGUI2.0 will be released?
It's basically ready but can't be released before the next Hollywood update because it requires some new Hollywood functionality...
User avatar
Juan Carlos
Posts: 884
Joined: Mon Sep 06, 2010 1:02 pm

Re: Modal Dialogs in Linux Ubuntu

Post by Juan Carlos »

airsoftsoftwair wrote: Sat Nov 28, 2020 6:44 pm
davec wrote: Wed Nov 25, 2020 9:09 pm Any idea when RapaGUI2.0 will be released?
It's basically ready but can't be released before the next Hollywood update because it requires some new Hollywood functionality...
The next Hollywood update will be free or of payment?
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Modal Dialogs in Linux Ubuntu

Post by airsoftsoftwair »

Constantly nagging about this won't get you anywhere, wait and see :)
User avatar
Juan Carlos
Posts: 884
Joined: Mon Sep 06, 2010 1:02 pm

Re: Modal Dialogs in Linux Ubuntu

Post by Juan Carlos »

airsoftsoftwair wrote: Wed Dec 02, 2020 9:31 pm Constantly nagging about this won't get you anywhere, wait and see :)
You don't think that I nagging for me, I speak for the people that secretly criticize you, for no free updates and the price of Hollywood.
For me, you wait perhaps you have a surprise from me too. :?:
PEB
Posts: 567
Joined: Sun Feb 21, 2010 1:28 am

Re: Modal Dialogs in Linux Ubuntu

Post by PEB »

Allow me to speak up for the silent masses of those who believe that not only should Andreas continue charging for major Hollywood updates, but that he should also start charging for all of the plugins that massively extend the abilities of Hollywood, that require of him untold hours of development time, and that he always provides to his customers free of charge.

Keep up the great work, Andreas!
(And keep charging for it!) :D
Post Reply