Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
102 user(s) are online (56 user(s) are browsing Forums)

Members: 0
Guests: 102

more...

Headlines

 
  Register To Post  

« 1 ... 14 15 16 (17) 18 19 20 »
Re: Qt Native News
Home away from home
Home away from home


See User information
@Jaokim

Can Jamiga in current form run some GUI kind code and handle graphics/sound and stuff ? I mean i thinking about porting of some Java based games, so want to know how much to do (and what need to implement) to make port of some basic/initial java-game to os4 ?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Qt Native News
Just popping in
Just popping in


See User information
@kas1e:
Moved question (and answer) to separate thread here.

Go to top
Re: Qt Native News
Not too shy to talk
Not too shy to talk


See User information
@Jaokim
I was just going to suggest Alfkil to get in touch with you.

Bounty site for AmigaOS4! www.amigabounty.net
Go to top
Re: Qt Native News
Amigans Defender
Amigans Defender


See User information
@alfkil
I know you're busy playing Napalm but...

I've just ported QSimpleSheet. It's a basic spreadsheet program, quite nice, but tbh you're better off with TurboCalc.

However, in running it I've spotted a few minor problems with the current Qt port:

* Cursor does not show when trying to input text (I think you know about this already)
* When the toolbar does not fit on the window, clicking » does odd things (it seems to add an additional toolbar, or overwrite in the wrong place, difficult to explain, it isn't doing what it should be anyway!)
* The documentation says it uses the global clipboard, but the data isn't passing to the Amiga's clipboard on copy.
* HelpHints (tooltips) deactivate the window containing the button you're trying to find out about, so you can't hover over them all. If you're opening an invisible window for these, it might just need WA_Toolbox set.

I'm also still getting those odd freezes with ASL, it's quite random.

Go to top
Re: Qt Native News
Just can't stay away
Just can't stay away


See User information
@chris

Thanks for the update and the effort to port Qt apps . I will take a look at it when I get back from Norway next week.

Go to top
Re: Qt Native News
Amigans Defender
Amigans Defender


See User information
ok.. it is time to put my hands on qt ports... Alfkill.. stay tuned..

i'm really tired...
Go to top
Re: Qt Native News
Amigans Defender
Amigans Defender


See User information
@alfkil

Cool, don't rush back

Can I add QDeclarative to your list too? Just found something which needs it.

Did you get anywhere with QtScript?


Go to top
Re: Qt Native News
Home away from home
Home away from home


See User information
@Chris
Quote:

I'm also still getting those odd freezes with ASL, it's quite random.


I have ASL freezes only with opengl programs which have native asl requesters (like with lodepaint), and never with non-opengl apps. If it the same for you (only ogl + native asl), then its again our current opengl related.

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: Qt Native News
Amigans Defender
Amigans Defender


See User information
@kas1e

I've only seen it with Qt, so it sounds plausible.

Looking forward to seeing a full OpenGL implementation!

Go to top
Re: Qt Native News
Not too shy to talk
Not too shy to talk


See User information
Installed Qt from OS4depot, but getting an error message:

Failed to load shared object
libssl.so.1.0.0

as timberwolf also uses shared objects, it (still) works.

regards Gerograph

Go to top
Re: Qt Native News
Just popping in
Just popping in


See User information
Quote:

gerograph wrote:
Installed Qt from OS4depot, but getting an error message:

Failed to load shared object
libssl.so.1.0.0

as timberwolf also uses shared objects, it (still) works.

regards Gerograph


Same issue here. I've checked my user-startup and the stuff added there looks ok to me. Does anyone know what needs doing so QT can find the .so that it needs?

assign sobjs: Qt:sobjs

Does not seem to be working.

Mike

Go to top
Re: Qt Native News
Home away from home
Home away from home


See User information
At the very least that should be

assign sobjs: qt:sobjs add

note the added add


Go to top
Re: Qt Native News
Amigans Defender
Amigans Defender


See User information
@EvilDrMike

The name of the SObj is different to what it has been linked as.

Simple rename libssl.so as libssl.so.1.0.0 (which is what it is supposed to be called) and it will work.

If you don't have libssl.so, download the libssl 1.0 archive on OS4Depot, as this is what it is looking for.

Go to top
Re: Qt Native News
Just popping in
Just popping in


See User information
Quote:

broadblues wrote:
At the very least that should be

assign sobjs: qt:sobjs add

note the added add



Sorry my bad typing the add was there.

Mike

Go to top
Re: Qt Native News
Just popping in
Just popping in


See User information
Quote:

Chris wrote:
@EvilDrMike

The name of the SObj is different to what it has been linked as.

Simple rename libssl.so as libssl.so.1.0.0 (which is what it is supposed to be called) and it will work.

If you don't have libssl.so, download the libssl 1.0 archive on OS4Depot, as this is what it is looking for.


Thanks for that I'm sure that's all I need.

Mike

Go to top
Re: Qt Native News
Just can't stay away
Just can't stay away


See User information
Quote:

* HelpHints (tooltips) deactivate the window containing the button you're trying to find out about, so you can't hover over them all. If you're opening an invisible window for these, it might just need WA_Toolbox set.


Sounds like he is using WFLG_ACTIVATE (with WA_Flags) or WA_Activate.

Go to top
Re: Qt Native News
Amigans Defender
Amigans Defender


See User information
@alfkil

You wrote in another thread:
Quote:
BTW just got around to testing your QSimpleSheet port, it actually runs, but the startup time is just horrendously slow! It is by far the slowest start I have experienced yet with Qt apps. And I can see the problem with the >>... Strange!

EDIT: Tried it (QSS) again, and this time it opens very quickly. I think it must be something with fontconfig, possible influenced by MUI-OWB.


I used a Qt app a few days ago for the first time in a while, and it took an extraordinarily long time to start up (longer than I remember). I think you are right that it is fontconfig. Could you add an information window for when fontconfig runs? Preferably a progress bar if you can get that information!

Or perhaps ditch fontconfig and use native font routines?

Go to top
Re: Qt Native News
Just can't stay away
Just can't stay away


See User information
Quote:
Sounds like he is using WFLG_ACTIVATE (with WA_Flags) or WA_Activate.


It opens with WA_Activate, FALSE, but then by mistake it updates itself with WindowActivate. This has been fixed now.

Go to top
Re: Qt Native News
Just can't stay away
Just can't stay away


See User information
@chris

As far as I recall, it should be fairly simple to do a progress report on fontconfig. I will do this as soon as I get around to it. For native fonts I would say, that this is not likely to happen (from me at least). Sorry!

Go to top
Re: Qt Native News
Home away from home
Home away from home


See User information
@spotUP

Quote:

QTerminal link is broken, plz can you upload the file again ?

Go to top

  Register To Post
« 1 ... 14 15 16 (17) 18 19 20 »

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project