rejetto forum
February 11, 2012, 01:58:05 PM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: This forum is free, you do NOT need to register to post. But you may.
PROBLEMS? QUESTIONS? CLICK HERE!
Fill the survey!
 
   Home   Help Search Login Register  
Pages: 1 2 [3] 4
  Print  
Author Topic: sources  (Read 42634 times)
0 Members and 1 Guest are viewing this topic.
Xecutor
Occasional poster
*
Offline Offline

Posts: 8

19188240
View Profile
« Reply #30 on: January 30, 2004, 09:31:41 AM »

Quote from: "rejetto"
yes, now i remember i had to modify the png unit
but i lost changes Sad
i kept only the compiled one (DCU)

did you find a way to get the same making changes in &RQ sources without modifying pngunit?
Mmmm... I also modified pngunit, but I think it is possible
to modify loadpic instead.

There is another reason to modify pngunit - there are several nasty warnings about non-returning value from a function (i.e. returning samething nearly random). I prefer to keep sources clean from such warnings Smiley


p.s. btw what is wrong with www.rejetto.com domain?
Logged
Anonymous
Guest
« Reply #31 on: February 03, 2004, 03:28:37 AM »

rejetto, please make a new build asap with optioned single/double click activation from tray .... i am so tired clicking twice ....
thanks Cheesy
Logged
Stamir
Occasional poster
*
Offline Offline

Posts: 6


133594
View Profile WWW
« Reply #32 on: February 04, 2004, 01:51:29 AM »

Quote from: "Xecutor"
Quote
But everifing is all right, if user with &RQ is invisible to user with ICQ. Strange things.
I'll look, what we can do.
Probably something can be done with the
way icqlite identify destination icq client?
i.e. for icqlite users &RQ must identify itself as ... something else Smiley

You was right. The trouble is in the protocol.  Sad
It is hard to make anything with this... But i'll still trying...
Logged

perf
Guest
« Reply #33 on: February 04, 2004, 05:28:36 AM »

i can't download the source
http://www.uniroma1.com/rejetto/&RQ/&RQ09417b.src.zip
server name not found
all links to &rq binaries on main page are also broken.

want to have the source so much..
Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11759


View Profile
« Reply #34 on: February 04, 2004, 07:45:30 PM »

the previous webspace is gone
this morning i will upload files to another webspace (rejetto.com itself)
Logged
Anonymous
Guest
« Reply #35 on: February 05, 2004, 03:40:28 AM »

rejetto. any news about final 0.9.4.17 ?
Logged
rejetto forum
« Reply #35 on: February 05, 2004, 03:40:28 AM »

Do you like this software? Consider even $2
 Logged
watt
Guest
« Reply #36 on: March 05, 2004, 07:36:22 AM »

Quote from: "rejetto"
until it is found somewhere else, you can download it from my webspace
http://www.uniroma1.com/rejetto/temp/pngunit.zip
bad link:( Help please!
Logged
watt
Guest
« Reply #37 on: March 05, 2004, 07:46:17 AM »

http://andrqlibs.narod.ru/
Logged
Kirys
Experienced poster
***
Offline Offline

Posts: 30



View Profile WWW Email
« Reply #38 on: March 08, 2004, 06:47:22 AM »

Quote from: "Xecutor"
Mmmm... I also modified pngunit, but I think it is possible
to modify loadpic instead.

There is another reason to modify pngunit - there are several nasty warnings about non-returning value from a function (i.e. returning samething nearly random). I prefer to keep sources clean from such warnings Smiley

Please fell free to fix a cleanup the png unit and then make that available to &RQ Smiley
Logged

Kirys
Experienced poster
***
Offline Offline

Posts: 30



View Profile WWW Email
« Reply #39 on: March 08, 2004, 06:53:28 AM »

Latest Source Smiley
Is available here on SourceForge

Libpng and regexpr are available Here
Logged

alkimiya
Moderator
Insane poster
*****
Offline Offline

Posts: 315


986246
View Profile Email
« Reply #40 on: March 08, 2004, 08:27:14 AM »

Quote from: "Kirys"

Great :^:

Anything new since sources got released?
I think I should look for Delphi PE6 now Smiley
Logged
Kirys
Experienced poster
***
Offline Offline

Posts: 30



View Profile WWW Email
« Reply #41 on: March 08, 2004, 09:06:38 AM »

just removed all references to rxlib and converted all form to txt format.
I don't know if rejetto made some more modification to cvs.
Logged

Vilux
Occasional poster
*
Offline Offline

Posts: 6


View Profile
« Reply #42 on: May 03, 2004, 10:09:12 AM »

I think that I found how to fix pngunit for normal showing icons.

Open  PngUnit.pas and find procedure DrawPng with strings:

if a = 0 then
begin
// alpha is zero so no blending, just image data
sl[ndx] := b;
sl[ndx + 1] := g;
sl[ndx + 2] := r;
end
else if a < 255 then
begin
// blend with data from ACanvas as background
sl[ndx] := ((sl[ndx] * a) + ((255 - a) * b)) div 255;
sl[ndx + 1] := ((sl[ndx + 1] * a) + ((255 - a) * g)) div 255;
sl[ndx + 2] := ((sl[ndx + 2] * a) + ((255 - a) * r)) div 255;
end;

Then replace them with strings:
if (a > 0) then
begin
// alpha is zero so no blending, just image data
sl[ndx] := b;
sl[ndx + 1] := g;
sl[ndx + 2] := r;
end
else
begin
// blend with data from ACanvas as background
sl[ndx] := ((sl[ndx] * a) + ((255 - a) * b)) div 255;
sl[ndx + 1] := ((sl[ndx + 1] * a) + ((255 - a) * g)) div 255;
sl[ndx + 2] := ((sl[ndx + 2] * a) + ((255 - a) * r)) div 255;
end;

Find function loadPic in utilLib.pas and check that bmp.Transparent is true (bmp.Transparent:=true;)
After that all icons shows normally... check,please this method...
Logged
vorland
Occasional poster
*
Offline Offline

Posts: 1



View Profile Email
« Reply #43 on: July 11, 2004, 01:49:00 AM »

good!!very good....
hfs1.6a good!!!!!!!!
Logged
rejetto
Administrator
Insane programmer
*
Offline Offline

Italy Italy

Posts: 11759


View Profile
« Reply #44 on: July 11, 2004, 07:22:33 AM »

Quote from: "Vilux"
Find function loadPic in utilLib.pas and check that bmp.Transparent is true (bmp.Transparent:=true;)
After that all icons shows normally... check,please this method...
this sounds weird to me
what if the pic is not transparent?
Logged
Pages: 1 2 [3] 4
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!


Google visited last this page January 22, 2012, 08:46:59 PM
anything