Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
157 user(s) are online (109 user(s) are browsing Forums)

Members: 0
Guests: 157

more...

Headlines

Forum Index


Board index » All Posts (cha05e90)




Re: Beta testing
Quite a regular
Quite a regular


Hey, all you Qt specialists!

Is there any chance to tell Qt to use a borderless window?

@spotUP

Where and how did you set the StackCookie in Lifetime2? I couldn't find anything in the source code...

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


@Chris, Alfkil

Ok, the line

"ld: warning: libfreetype.so, needed by /qt/lib/libQtGui.so, not found (try using -rpath or -rpath-link) "

is what's left for now...

Indeed my SDK install was somewhat borked, I did a fresh and new install and a whole bunch of problems are gone. Nevertheless libiconv.so and linintl.so are not part of the standard linking from the SDK, so I had to do them manually. Maybe this should be part of the Qt installation routine (check and link, if it's not present).


There's another culprit - but I assume this has nothing to do with Qt: While my Sam440ep (slooooow) and my X1000 (faaaast) compile stuff like Analogclock or Calculator, my Pegasos II does this only sometimes - ca. 30% of the gmakes fail with a GrimReaper in a "cc1plus" process... ?!?

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


AFAIK I use the same SDK than you (53.20). Maybe my install is borked, but I don't think so, because all my other stuff (plain C, AmigaOS API and Reaction tools) compiles just nice and never has ever complained about something missing...maybe Guillaume has an idea or tip, what might be wrong...

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


Ah, thanks. Copying/linking a bunch of sobjs from "SOBJS:" to "SDK:local/newlib/lib/" helped and, indeed, I were able to compile something!

But I *still* get complaints about:

ldwarninglibfreetype.soneeded by /qt/lib/libQtGui.sonot found (try using -rpath or -rpath-link)
ldwarninglibc.soneeded by /qt/lib/libQtGui.sonot found (try using -rpath or -rpath-link)

...despite the fact that they *are* there. Wrong version of libfreetype.so and libc.so or wrong combination of .a/.so-files, perhaps?

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


I tried to obey to Scott's resume and tried to build at least some simple demo apps from the Qt archive. But, sadly, I can't seem to get anything builded.

1. There's no "ppc-amigaos-c++"/"ppc-amigaos-gcc" in my SDK. SOLVED by making appropiate soft links from "gcc" and "c++".
2. One after another "ld ..." from gmake fails, because it can't find something, first: "-lfreetype". SOLVED by downloading and installing the "libfreetype.lha" from OS4Depot.
3. Can't find "-lfontconfig", "-liconv", ... Huh?

I have a fresh install of the latest OS SDK, enriched with "freetype" (see above) and the changed "_signals" stuff. What am I missing?

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: About Icons, automated Effects and why it will never work
Quite a regular
Quite a regular


Thanks for your insights into the "automatic effect" topic! Still, I think, a well thought and implemented "embleming" might be useful. But this isn't something that will replace the typical amigan "animated and glowing" effect...

And, by the way, I'm looking forward to see your new, shiny, perfect and excellent artwork for the next OS release!

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


It's only a frontend for ffmpeg - we don't need Qt for this. You can already use ffmpegGUI for stuff like this.

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


I assume it's the same cause as with the non-working tool tests: Somehow the started processes can't re-send their output back to QDevelop. You can see this when it (former QDevelop version) i.e. checks for qmake: QDevelop seems to open some PIPEs for refetching output from the started processes (i.e. qmake "-v" outputs), but never receives something.

Whether this is a specific tool problem or a general Qt thing or not - maybe we need some more test cases for this...

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


@zzd10h
Quote:
But certainly problem of paths (with make too), don't recognize it => no completion and no build

It should be possible to fix this, I checked with SnoopDOS and looked into the code snippet that is checking the tools qmake, make, ctags and gdb. Indeed all are found by QDevelop (if you configure the right pathes, i.e. "sdk/c/make"), but the simple string comparison doesn't seem to work:

SnoopDOS (qmake):

01531 qmake           : -----> RunCommand(0x17C7D8CD "qt:bin/qmake",,"-v",3)
...
01560 qmake           : <----- RunCommand(0x17C7D8CD "qt:bin/qmake",,"-v",3) = [0x00000000] [31341uS]

From "toolscontrolimpl.cpp" (test for "qmake"):

// Control external tools
    
QString lu;
    
QProcess *testqmake = new QProcess(this);
    
testqmake->start(qmake->text(), QStringList("-v"));
    
testqmake->waitForFinished(5000);
    
lu testqmake->readAll();
    
m_qVersion lu.section("Using Qt version"11).section("in "00).simplified();
    if ( 
lu.remove(":").left(15) != "QMake version 2" ) {
        
qmakeIcon->setPixmapQPixmap(":/divers/images/nogood.png") );
        
result false;
    }
    
delete testqmake;

I assume the "lu = testqmake->readAll();" doesn't work and "lu" is empty, so the string tests afterwards fail. Maybe it's easier to make a simple "it's there" test like the author did for the other tools (linguist, see some lines further in the code...).

Nice port, by the way!

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


@Chris
Quote:
Are you using the same libsqlite3.so on all machines?

Ha! Thanks, that was the cause! Indeed my Sam440ep and my Pegasos II somehow missed the libsqlite3.so from Update 2 (!!!) - now no crashes, nice!

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


I can still confirm with both qOrganizer compliles that they both crash badly when hitting the SQLite button with my Sam440ep and my Pegasos II but *not* with X1000! Crashlog seems to indicate a problem somewhere in the libqsqlite.so. Strange.

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


I commented something about themes here: http://www.amigans.net/modules/xforum ... t_id=80748#forumpost80748

AFAIK nobody is working on a native skin atm - but I may be wrong here...

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


Is that browser different to the DemoBrowser that came with the Qt package?

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


@chris

qOrganizer is really nice - maybe i'll try to use the MySQL feature in the next days. BTW: Hitting the SQLite button leads to a system lockup/crash (the MySQL button doesn't).

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


@gero
Quote:
How hard is it to create an AOS4 Skin?

Hard - I assume. I did some research in Qt themeing during the first beta phase of Alfkil's port and must admit that I got lost somewhere... From what I understood it's more coding than graphics work to make a new Qt theme (like Plastic or Motif). Maybe when I'm bored enough I'll try do to some more in-depth research work here. Maybe Alfkil has some tips where to start and what to do...

The easy part is changing most of the button graphics, 'cos usually they are plain application dependend png images that can be easily echanged with AISS ones...

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: How close are we to Eclipse?
Quite a regular
Quite a regular


@broadblues

Yep - maybe some day it will integrate db101.

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Beta testing
Quite a regular
Quite a regular


@SpotUP

Thanks for VizMol, really appreciated! And: No crashes here with About-Window, it just works nice here with my Sam440ep. Although I pimped up the stack as I do usually with all Qt apps.

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: PGP
Quite a regular
Quite a regular


Works flawless, thanks!

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


PGP
Quite a regular
Quite a regular


Is there any more or less fresh port of PGP for AmigaOS 4.x?

I tried the Release 3.x/68k variants of PGP 5.1 but I got Grims every now and then...

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top


Re: Spoof As ?
Quite a regular
Quite a regular


...and this is exactly what the cycle gadget in the right upper corner does for you with OWBUtilities...

X1000|II/G4|440ep|2000/060|2000/040|1000
Go to top



TopTop
« 1 ... 3 4 5 (6) 7 8 9 ... 26 »




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project