Aqua-Soft Forums: Flying Cow - Aqua-Soft Forums

Jump to content

  • 12 Pages +
  • « First
  • 8
  • 9
  • 10
  • 11
  • 12
  • You cannot start a new topic
  • You cannot reply to this topic

Flying Cow Rate Topic: -----

#181 User is offline   axellang Icon

  • Group: Member
  • Posts: 2
  • Joined: 23-April 08

Posted 26 April 2008 - 02:03 PM

hi folks,

this is my first time with OpenGL and i have no plan how does it work. But today i figured out why the application doesn't work in D2007.

First issue:

The declaration in Delphi7 and below for the API function "InterlockedCompareExchange" is:

function InterlockedCompareExchange(

 var Destination: Pointer; 

 Exchange: Pointer; 

 Comperand: Pointer

): Pointer stdcall;


But in Delphi 2007:

function InterlockedCompareExchange(

 var Destination: Longint; 

 Exchange: Longint; 

 Comperand: Longint

): Longint stdcall;


And in MSDN
LONG __cdecl InterlockedCompareExchange(

  __inout  LONG volatile* Destination,

  __in	 LONG Exchange,

  __in	 LONG Comparand

);


The small fix for unitFlyingCow.pas to work in D2007 is:

{$IF CompilerVersion <= 15.0}

	if InterlockedCompareExchange(Pointer(fCaptionCS), Pointer(1), Pointer(0)) = Pointer(0) then

{$ELSE}

	if InterlockedCompareExchange(Integer(fCaptionCS),1 , 0) = 0 then

{$IFEND}



And so on.....


The second issue:

matonga;481496 said:

For OpenGL I'm using dglOpenGL:
wiki.delphigl.com/index.php/DGLOpenGL.pas


this version of DGLOpenGL.pas on wiki.delphigl.com is absolutely crap. You need this "DLGOpenGL.pas" on http-www-delphigl.com/do_download.php?f=12000. This is the right version.

If you take the first one i you project and the command "glClearColor (0.0, 0.0, 0.0, 0.0);" was called (on line 422 in unitFlyingCow.pas) the application crash and the CPU clime up on 100%.

Now the application work like a charm.

I have an another question:

Which program you are using to convert verdana font to verdana.dat?

Best regards

Axel

PS: Sorry for my rusty English ;-)
0

#182 User is offline   devrexster Icon

  • Group: Member
  • Posts: 108
  • Joined: 26-December 07

Posted 02 May 2008 - 03:14 PM

#removed#
0

#183 User is offline   sponbinder Icon

  • Group: Member
  • Posts: 1
  • Joined: 21-May 08

Posted 21 May 2008 - 04:21 AM

Id like to add a text below the Image Separately im wondring if someone can help me
0

#184 User is offline   matonga Icon

  • Group: Developers
  • Posts: 1,286
  • Joined: 04-September 06

Posted 23 May 2008 - 05:45 AM

axellang;498944 said:

(...) I have an another question:

Which program you are using to convert verdana font to verdana.dat?


First: thanks Firecracker6, I haven't visited Aqua-Soft in a while, and I'd have missed some important posts.

For the verdana.dat file, I wrote a program to generate it.

The true is, God knows what happened to that program.

However I'll write it again if you're interested (and I'll upload it with sources).
0

#185 User is offline   matonga Icon

  • Group: Developers
  • Posts: 1,286
  • Joined: 04-September 06

Posted 30 May 2008 - 02:59 AM

Sorry for ''double-posting'', but because of date difference, I supposed I ought do a separate post.

I'm porting FlyingCow to C. The idea is to do a generic FlyingCow which can be compiled on Windows and Linux (and other S.O.s, the more the better) and which can have many interfaces (.dll, object-oriented for Delphi, .ocx, .NET component, etc...)

Also I want to do this in such a way anyway can contribute to the project in a centralized way, so I'll use a Subversion repository.

Also I want to have a Wiki.

This would require a lot of bandwith, but because FlyingCow is GPL, I found a good place for it:

http://sourceforge.n...ects/flyingcow/

By now I'm providing the legacy Delphi 5 source code there. It would be interesting to have a Delphi 2007 version of the sources.

Also I wanted to note I've been investigating ffmpeg library for audio and video, and it turned to be very easy to use, so next version will use that for video (and audio, and yes I mean maybe items which really are folders with a folder.jpg for item picture and all the .mp3s inside as playlist).

This also means the Stacks Docklet will become vastly unmaintained, I'll consider putting up a Wiki for it... mmm... somewhere.

About WinExposé, I sincerely suggest Switcher on Aero capable computers and DExposé on anything else (haven't tested DExposé on Aero, probably it's smoother than Switcher).

Edit: changed 'bastly' to 'vastly'
0

#186 User is offline   Sranshaft Icon

  • Group: Developers
  • Posts: 732
  • Joined: 13-April 05

Posted 30 May 2008 - 03:11 AM

Great news about opening up Flying Cow as a component. Looking forward to dropping it into a few things, movieClerk for sure and going from there. I've been looking into WPF to handle it but would rather stick with Form for a little while longer. Thanks a lot mate! :)
0

#187 User is offline   firecracker6 Icon

  • Group: News Posters
  • Posts: 1,048
  • Joined: 11-October 04

Posted 30 May 2008 - 06:07 AM

Great news matonga, it's good to hear you'll be around more often. And I'd be fine with you focusing on this over stacks for a while. I hope axellang & devrexster will hop on board as well :)
0

#188 User is offline   macfak3r Icon

  • Group: Member
  • Posts: 66
  • Joined: 09-November 07

Posted 30 May 2008 - 05:35 PM

This is really a great program
thanks for sharing.:)
0

#189 User is offline   azerty Icon

  • Group: Member
  • Posts: 6
  • Joined: 04-May 08

Posted 28 June 2008 - 06:07 PM

Woaw awesome application


==> i hope that it could be used later as an explorer, in order to see folders etc....





and i hope that this application will support the drag and drop folders for instance...


anyhow reallly really Good apllication, hope to see next release....this application have a really big potential, maybe latr this apllication will be used as explorer, with skinning options, zooms, etc... :D

luck ;)
0

#190 User is offline   samwilliamh Icon

  • Group: Member
  • Posts: 6
  • Joined: 11-May 08

Posted 29 June 2008 - 03:30 PM

I have a quick question. Being the noob I am, I downloaded the file off your sourceforge project and I don't knwo what to do with it :( I really want to try this out. How do I get it to run?
0

#191 User is offline   Dream_Team Icon

  • Group: Member
  • Posts: 910
  • Joined: 31-March 04

Posted 07 July 2008 - 10:12 AM

matonga;501347 said:

Sorry for ''double-posting'', but because of date difference, I supposed I ought do a separate post.

I'm porting FlyingCow to C. The idea is to do a generic FlyingCow which can be compiled on Windows and Linux (and other S.O.s, the more the better) and which can have many interfaces (.dll, object-oriented for Delphi, .ocx, .NET component, etc...)


Please make it a DLL, it's the most compatible out there and .ocx need administrator privileges to be registered using regsvr32 (fun times with UAC or on computers on which you have limited rights)
0

#192 User is offline   drumboy245 Icon

  • Group: Member
  • Posts: 1
  • Joined: 09-June 08

Posted 09 July 2008 - 11:17 PM

I tried all of your links, and they all say that the file was not found on this server. Is the software still in development?
0

#193 User is offline   Sranshaft Icon

  • Group: Developers
  • Posts: 732
  • Joined: 13-April 05

Posted 10 July 2008 - 03:18 AM

Try the link to the sourceforge page at http://sourceforge.n...ects/flyingcow/
0

#194 User is offline   T3N0R10 Icon

  • Group: Member
  • Posts: 23
  • Joined: 01-August 08

Posted 01 August 2008 - 11:17 PM

hey is there any way to insert this into the explorer?

so when i look into a folder with pictures i can select the flying cow view ????
0

#195 User is offline   AlexEttels Icon

  • Group: Member
  • Posts: 8
  • Joined: 22-August 08

Posted 26 August 2008 - 08:52 AM

i tried the link at sourceforge and it gives me the source and i dont know how to compile these files...
0

#196 User is offline   ntgladia Icon

  • Group: Member
  • Posts: 5
  • Joined: 29-July 07

Posted 29 August 2008 - 07:27 PM

Its even better than Itunes in handling various kind of media. What a beautiful piece of software.
0

#197 User is offline   DoubleDeee Icon

  • Group: Member
  • Posts: 22
  • Joined: 04-October 08

Posted 28 November 2008 - 11:26 AM

Ok having trouble with viewing .pdf formats at times.

The thing is that I can view a few certain .pdfs without system crashing

But usually crashes when viewing folder that has just all pdfs inside and when trying to view my work which I converted to .pdf format using Microsoft Word 2007 Add-In

I actually wouldn't be bothered so much if the program just crashed and I could end it easily with Ctrl - Alt -Del but it seems to take the whole computer down slowing everything down, crashing open programs etc and thats even after its been terminated!

Any suggestions on how to stop this and get pdfs working fullY?

Other than that I think this program is absolutley amazing

Also to make it that bit better. Is there a skin that makes it look more like coverflow with the leopard esque styling?

Thanks
0

#198 User is offline   cns0813h Icon

  • Group: Member
  • Posts: 134
  • Joined: 14-September 08

Posted 17 December 2008 - 01:29 AM

link broken help me!??
0

#199 User is offline   matonga Icon

  • Group: Developers
  • Posts: 1,286
  • Joined: 04-September 06

Posted 17 December 2008 - 07:21 AM

@danhoven:

Ok, I reuploaded this one:

http://www.matiasmoreno.com.ar/FlyingCow-2...lease-tests.rar

BTW FlyingCow is more intended toward developers. It's not meant to be used by end users.

Stay tuned until preview of FingerXP, a Finder clone which will have all four Finder view modes:
  • Icons mode (done).
  • List mode (done).
  • Multi-column mode (done).
  • Cover Flow mode (13% complete).

0

#200 User is offline   devrexster Icon

  • Group: Member
  • Posts: 108
  • Joined: 26-December 07

Posted 17 December 2008 - 09:21 AM

matonga;517543 said:

@danhoven:

Ok, I reuploaded this one:

http://www.matiasmoreno.com.ar/FlyingCow-2...lease-tests.rar

BTW FlyingCow is more intended toward developers. It's not meant to be used by end users.

Stay tuned until preview of FingerXP, a Finder clone which will have all four Finder view modes:
  • Icons mode (done).
  • List mode (done).
  • Multi-column mode (done).
  • Cover Flow mode (13% complete).


Wow thats a tremendous thing to look forward to.:cool: :D
0

  • 12 Pages +
  • « First
  • 8
  • 9
  • 10
  • 11
  • 12
  • You cannot start a new topic
  • You cannot reply to this topic