Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
117 user(s) are online (94 user(s) are browsing Forums)

Members: 0
Guests: 117

more...

Headlines

Forum Index


Board index » All Posts (elfpipe)




Re: Java on Amiga
Just can't stay away
Just can't stay away


Any news on the java front?

Go to top


Re: Wait() returns -1
Just can't stay away
Just can't stay away


@abalaban

I finally got around to reply

Go to top


Re: Qt Designer
Just can't stay away
Just can't stay away


@DAX

and Google Earth... and Skype... and.... 8-D

Go to top


Re: Qt Designer
Just can't stay away
Just can't stay away


@kas1e

...and _create_ many more new apps, hopefully

No seriously, if you are thinking of learning how to code apps, Qt is a really great environment. Of course you have to get your grips on c++, but then you get a really easy and diverse environment, and not to forget near instant portability 8-D

A native version is pretty far out in the future, though...

Go to top


Re: where is dlopen ?
Just can't stay away
Just can't stay away


@kas1e

Thanks for the info

I'll see if I can use it, only rebuilding libQtGui takes almost half a day... :(

Go to top


Qt Designer
Just can't stay away
Just can't stay away


First screenshot of the Qt Designer running:

http://dl.dropbox.com/u/5482530/Images/designer.png

And yes, it _does_ work and doesn't crash (at least not yet!).

Go to top


Re: where is dlopen ?
Just can't stay away
Just can't stay away


@Chris

I needed the static version, because Qt cannot build with -use-dynld at this time. Sadly.

There is a bug in elf.library, though, that makes dlopen() crash with my plugins.

Go to top


Re: where is dlopen ?
Just can't stay away
Just can't stay away


@MickJT

Thanks. libdl seems to be exactly what I need!

Go to top


where is dlopen ?
Just can't stay away
Just can't stay away


I'm trying to expand plugin-capabilities of Qt, and
some code refers to dlopen()/dlclose()/dlsym(). The code links, but does not work.

Now I'm trying to make a small test-app that uses
dlopen, but it doesn't link, telling me "undefined reference to
dlopen".

I can't seem to find dlopen as symbol in any of the SDK libraries, so how come Qt links? If there is some macro definition somewhere, I can't find it. Help!

Go to top


Re: Qt - work in progress
Just can't stay away
Just can't stay away


@kas1e + others

I think the big slowdown is some obscure timing issue, because in several
of the demos I can "speed up" animation by moving the mouse in front
of it.

About a native port: It is very unlikely that I will find time and (not least)
energy to do it. Qt is a monster, and the only real reason that I have
come so far, is because of Edgar and amicygnix. I'm going to try and
finish the amicygnix port, and then I hope somebody will be so
inspired, that they dive in and finish the job

Go to top


Re: USB Printers & OS4.1 on Samflex **Beta driver at OS4depot**
Just can't stay away
Just can't stay away


@Chris

Maybe update the readme to explain a bit more for us dummies, who don't know how the printer system actually works ... ? :)

Go to top


Re: USB Printers & OS4.1 on Samflex **Beta driver at OS4depot**
Just can't stay away
Just can't stay away


@rwo

Hehe, it's working alright, but something is still missing.

I found out, that prefs/Printer was set to Postscript instead of Generic. So far so good. But when printing from Multiview, the printer takes in the paper, and then it just sits there waiting for smth and nothing is printed. Then I try switching back to Postscript, go to a shell and type "echo hello >prt:" and suddenly my text file comes out, followed by the PS mumbo-jumbo from before follower by lots of linefeeds...

So it seems, that when printing generic, the printer is missing a 'flush' or 'eof' at the end of printing. Correct??... Is this an issue of your driver, or is it the software (multiview etc.)?

EDIT: typing "echo hello >prt:" with Generic turned on does nothing. Also "cat file >prt:" does nothing, except add data, that is eventually flushed when switching to PS mode.

EDITEDIT: Hurrah! I got it printing graphics from amipdf, just needed to install generic HP Deskjet driver from SYS:Storage/printers. Ren?, you are a genius!

Go to top


Re: USB Printers & OS4.1 on Samflex **Beta driver at OS4depot**
Just can't stay away
Just can't stay away


@rwo

How do I get hold of the debug buffer? I don't have any serial terminal, if that's what you are talking about...

EDIT: I can tell you, that from amipdf the following text is written by the printer:

%!PS-Adobe-3.0
%%DocumentMedia: letter 612 792 0 () ()
%%EndComments
% The line abo

(each line starting horizontally at the point where the above line ended)...and then comes a lot of (6-7) page feeds, and the printer seems to be left waiting for more data.


Edited by alfkil on 2010/5/21 16:43:46
Edited by alfkil on 2010/5/21 16:45:15
Go to top


Re: Qt - work in progress
Just can't stay away
Just can't stay away


Project started at qt.gitorious:

http://gitorious.org/qt-for-amicygnix-amiga-os-4-1

Also updates of SDK and examples uploaded to os4depot (now without debug data ).


Things to be done next:
jpg support doesn't work
there is a timing issue, so animations are slooow
(+more)

Go to top


Re: USB Printers & OS4.1 on Samflex
Just can't stay away
Just can't stay away


I have a HP Photosmart C3180, and I think it is supposed to be DOT4 compatible, but I'm not sure. Anyway, it doesn't work with the usbdot4.device, it only spews out nonsense when I try printing from notepad or amipdf. Does anywone know if this printer is supposed to work with the device?

Go to top


Re: Qt - work in progress
Just can't stay away
Just can't stay away


@alfkil

Alas, I was wrong again: Update 2 _did_ solve the problem, the file dialog problem was just an entirely different issue. Now Qt works with both dock widgets and file dialogs :) (update uploaded soon).

Go to top


Re: Qt - work in progress
Just can't stay away
Just can't stay away


@Mrodfr

I installed update 2, and it didn't solve the issue. Sadly :-I

Go to top


Re: Qt - work in progress
Just can't stay away
Just can't stay away


@all:

First of all: Don't get your hopes up too high. A lot of features are working, but a lot is also missing. As you will see, only 4 libraries are available now. QtGui has problems with threads that I have been banging my head against for some time with no success. Basically, if you add any gui element that opens a thread (like a file requester), you are going to get into trouble.

I'm going to work on a different project for some time now, so I wanted to share the project at it's current level. Of course I'm going to work on it again in the future, and of course any help would be appreciated

About the sources:

1) Stay away from the configure script!
2) Use 'gmake staticlib' to build any library, as dynamic linking is not available at this stage

Go to top


Qt - work in progress
Just can't stay away
Just can't stay away


New SDK available:

http://dl.dropbox.com/u/5482530/Qt/qt ... rce-microsdk-4.6.2.tar.gz

It requires amicygnix and the amicygnix SDK.


If you just want to watch, there are a couple of random examples:

http://dl.dropbox.com/u/5482530/Qt/qt ... nix-examples-4.6.2.tar.gz

Examples only requires amicygnix base, no SDK. Please run from Workbench!



And finally, if you are in for the big lebowski, here is my complete source archive:

http://dl.dropbox.com/u/5482530/Qt/qt ... mpletesource-4.6.2.tar.gz

Requires: Patience, lots of patience and spare time...


Happy coding!

Go to top


Re: Wait() returns -1
Just can't stay away
Just can't stay away


@salass00

Yeah, checking printouts is a good idea, and you
happen to be spot on... I must have been asleep
writing it... Doh!

Go to top



TopTop
« 1 ... 67 68 69 (70) 71 72 73 74 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project