Picon

Re: Loading icon from Application.Icon

Can you post a very simple, but complete, example which fails?

The code you showed on the first e-mail was too short to check if your
code is wrong or if it's a bug in TIcon.

--

-- 
Felipe Monteiro de Carvalho
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Paul Ishenin | 1 Feb 13:20
Picon

Re: Loading icon from Application.Icon

Guionardo Furlan wrote:
> Windows XP SP3
> FPC 2.2.2
> Lazarus 0.9.26
>   
In 0.9.27 we've made rather big icon rework. Please test with either 
0.9.27 snapshot or with svn version. I think your problem is solved.

Best regards,
Paul Ishenin.
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Picon
Favicon

Re: Loading icon from Application.Icon

Dear Paul Ishenin:
 I want to know if in my 0.9.27 I can insert a gif (moving chetach) in my 
application first form.

thanks in advance,

Ing. Héctor F. Fiandor
hfiandor <at> infomed.sld.cu

> Guionardo Furlan wrote:
>> Windows XP SP3
>> FPC 2.2.2
>> Lazarus 0.9.26
>>
> In 0.9.27 we've made rather big icon rework. Please test with either
> 0.9.27 snapshot or with svn version. I think your problem is solved.
>
> Best regards,
> Paul Ishenin.
> _______________________________________________
> Lazarus mailing list
> Lazarus <at> lazarus.freepascal.org
> http://www.lazarus.freepascal.org/mailman/listinfo/lazarus
>
> __________ Información de ESET Smart Security, versión de la base de 
> firmas de virus 3744 (20090106) __________
>
> ESET Smart Security ha comprobado este mensaje.
> http://www.eset.com
>
(Continue reading)

Graeme Geldenhuys | 1 Feb 17:53
Picon
Gravatar

Re: LCL based image viewer like ACDSee?

On Fri, Jan 30, 2009 at 5:14 PM, dmitry boyarintsev
<skalogryz.lists <at> gmail.com> wrote:
>
> Graeme, what's your interest in this kind of software?

If none exist, to write such an application using Free Pascal &
Lazarus/fpGUI. :-)  Or at least put it on my todo list for later in
the year.

Required features:
  * excellent keyboard navigation support
  * full screen support
  * dynamically adjust windows size or image size while viewing
  * cache previous and next image for quicker viewing.
  * toolbar prev and next buttons (and mouse being repositioned on
those after clicking).
  * thumbnail view
  * directory browse feature

Regards,
  - Graeme -

_______________________________________________
fpGUI - a cross-platform Free Pascal GUI toolkit
http://opensoft.homeip.net/fpgui/
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

(Continue reading)

Sebastian Kraft | 1 Feb 19:29
Picon
Picon

Re: LCL based image viewer like ACDSee?

On Sonntag, 1. Februar 2009 17:53:40 Graeme Geldenhuys wrote:
> On Fri, Jan 30, 2009 at 5:14 PM, dmitry boyarintsev
>
> <skalogryz.lists <at> gmail.com> wrote:
> > Graeme, what's your interest in this kind of software?
>
> If none exist, to write such an application using Free Pascal &
> Lazarus/fpGUI. :-)  Or at least put it on my todo list for later in
> the year.
>
> Required features:
>   * excellent keyboard navigation support
>   * full screen support
>   * dynamically adjust windows size or image size while viewing
>   * cache previous and next image for quicker viewing.
>   * toolbar prev and next buttons (and mouse being repositioned on
> those after clicking).
>   * thumbnail view
>   * directory browse feature
>
>

You could try GQView... it's fast and simple and I think it fullfills 
most parts of your requirements.

sebastian
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus
(Continue reading)

Picon

cross compiling

hello @ all,

I am trying to set up fpc as a cross-compiler

I am developing on linux x86_64 (debian etch) and i want to compile
laz-projects to i386-linux and i386-win32

but i am not able to compile from x86_64-linux to i386-linux

i read all docs on the lazarus page and the fpc pages.
but no success to cross compile anything... even the compiler itself.

I used fpc 2.2.2 and the current svn version 2.3.1

someone of you got this done and has tipps?

regards
alex

_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

Guionardo Furlan | 1 Feb 21:54
Picon
Gravatar

Re: Loading icon from Application.Icon

The application don't have a main form.
Look:

program nodort;

{$mode objfpc}{$H+}

uses
 {$IFDEF UNIX} {$IFDEF UseCThreads}
  cthreads,
 {$ENDIF} {$ENDIF}
  Interfaces, // this includes the LCL widgetset
  Forms
  { you can add units after this }, uEvento, uTrayIcon, uResources, uConfigura,
  foConfig, uTipos;

{$IFDEF WINDOWS}
  {$R nodort.rc}
{$ENDIF}
begin
  Application.Title := uTipos.ProgTitulo;
  Application.Initialize;
  Application.Run;
end.

The uTrayIcon unit have a class TTray:

TTray = class (TComponent)
    FMenu: TPopupMenu;
    FTrayIcon: TTrayIcon;
(Continue reading)

Vincent Snijders | 1 Feb 22:03
Picon

Re: Loading icon from Application.Icon

Guionardo Furlan schreef:
> The application don't have a main form.
> Look:
> 
> program nodort;
> 
> {$mode objfpc}{$H+}
> 
> uses
>  {$IFDEF UNIX} {$IFDEF UseCThreads}
>   cthreads,
>  {$ENDIF} {$ENDIF}
>   Interfaces, // this includes the LCL widgetset
>   Forms
>   { you can add units after this }, uEvento, uTrayIcon, uResources, uConfigura,
>   foConfig, uTipos;
> 
> {$IFDEF WINDOWS}
>   {$R nodort.rc}
> {$ENDIF}
> begin
>   Application.Title := uTipos.ProgTitulo;
>   Application.Initialize;
>   Application.Run;
> end.
> 
> The uTrayIcon unit have a class TTray:
> 
> TTray = class (TComponent)
>     FMenu: TPopupMenu;
(Continue reading)

Picon
Gravatar

Re: cross compiling

Op zondag 01-02-2009 om 19:42 uur [tijdzone +0100], schreef Alexander
Kaupp aka tanila:
> but i am not able to compile from x86_64-linux to i386-linux
> 
> i read all docs on the lazarus page and the fpc pages.
> but no success to cross compile anything... even the compiler itself.
> 
> I used fpc 2.2.2 and the current svn version 2.3.1
> 
> someone of you got this done and has tipps?

Easiest solution? Install fpc-2.2.2 for i386 on your x86_64 system. 

Joost

_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus

dmitry boyarintsev | 2 Feb 09:11
Picon
Gravatar

Re: LCL based image viewer like ACDSee?

Graeme,

are you interested in LCL version of viewer, or fpGUI?
_______________________________________________
Lazarus mailing list
Lazarus <at> lazarus.freepascal.org
http://www.lazarus.freepascal.org/mailman/listinfo/lazarus


Gmane