Re: [lazarus] New widget set for Lazarus

2006-07-06 Thread Felipe Monteiro de Carvalho
be very nice to have a good X11 widgetset. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

[lazarus] Lazarus Forum Organization

2006-07-06 Thread Felipe Monteiro de Carvalho
. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Lazarus Forum Organization

2006-07-07 Thread Felipe Monteiro de Carvalho
On 7/7/06, Marc Weustink [EMAIL PROTECTED] wrote: IMO, the amount of spam is still managable. And as long that is the case there is no need to register. Acctually I´ve being cleaning about 5 spam messages each day. -- Felipe Monteiro de Carvalho

Re: [lazarus] Lazarus Forum Organization

2006-07-09 Thread Felipe Monteiro de Carvalho
?) it will be obrigatory to have a account to post messages on the forum, and all those having problems registering should contact us to solve those problems. Do you guys agree? thanks, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL

Re: [lazarus] Lazarus Forum Organization

2006-07-10 Thread Felipe Monteiro de Carvalho
Yet another 15 spam messages. Maybe 2 weeks is too long and it could be only 1 week? After all, people having trouble do can send their questions to the mailling list. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail

Re: [lazarus] About Promoting-FPC

2006-07-11 Thread Felipe Monteiro de Carvalho
On 7/11/06, Lord ZealoN [EMAIL PROTECTED] wrote: This is for me? No, to Al Boldi. The word propaganda can mislead into thinking it´s related to the original thread when it´s not. -- Felipe Monteiro de Carvalho

Re: [lazarus] ScrollBar with a canvas ?

2006-07-12 Thread Felipe Monteiro de Carvalho
GUI component written in Object Pascal, have a look at the fpGUI project or the LPTK project. I think he doesn´t want to write a new widgetset. He just wants to write a single component. -- Felipe Monteiro de Carvalho

[lazarus] -WR works with stand alone fpc 2.0.2 but not with lazarus's fpc

2006-07-13 Thread Felipe Monteiro de Carvalho
line to compile the project. I took a look at both fpc.cfg files and they seam to be exactly equal to me. Both compilers have the same version 2.0.2 The project is just a completely empty library: library newlib; {$mode objfpc}{$H+} begin end. All of this on Windows XP. thanks, -- Felipe Monteiro

Re: [lazarus] About Promoting-FPC

2006-07-14 Thread Felipe Monteiro de Carvalho
it if they want immediate answers. Currently we already have the bounties: http://wiki.lazarus.freepascal.org/index.php/Bounties -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe

Re: [lazarus] Lazarus website down.

2006-07-14 Thread Felipe Monteiro de Carvalho
On 7/14/06, Michael Van Canneyt [EMAIL PROTECTED] wrote: The lazarus website is down ? Yes -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives

Re: [lazarus] Writing a class (please point me to a good reading)

2006-07-18 Thread Felipe Monteiro de Carvalho
theory. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Whee and How ?

2006-07-19 Thread Felipe Monteiro de Carvalho
to understand how to use it. There are some comments there that will help you. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Whee and How ?

2006-07-19 Thread Felipe Monteiro de Carvalho
On 7/20/06, franzato [EMAIL PROTECTED] wrote: Thank you ry much By The way I wondered whether and How I could use the objet printer Any suggestion? There is a tutorial here: http://www.delphibasics.co.uk/Article.asp?Name=Printing -- Felipe Monteiro de Carvalho

Re: [lazarus] FP/Lazarus for production use

2006-07-22 Thread Felipe Monteiro de Carvalho
perfectly under win32 and gtk 1.2 widgetsets. They also work (but not perfectly) on gtk 2 and windows CE widgetsets. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject

Re: [lazarus] Naming conventions

2006-07-23 Thread Felipe Monteiro de Carvalho
and FreeBSD). It can probably help you understand how to keep the same code compilable with both compilers, and maintain a project like that. You can download the full source code here: http://sourceforge.net/projects/magnifier/ thanks, -- Felipe Monteiro de Carvalho

Re: [lazarus] IDE menu text colour wrong

2006-07-23 Thread Felipe Monteiro de Carvalho
versions of each structure, then we should have at least 2: One for the first version of the structure (to ensure maximum compatibility) and one with the newest version (for people that want to use new features). thanks, -- Felipe Monteiro de Carvalho

Re: [lazarus] Naming conventions

2006-07-23 Thread Felipe Monteiro de Carvalho
things easier, on the magnifier I created a big shell script which I run and select my build options (like build rpm package, build tar.gz package, build freebsd package, etc). This automates the whole process of building a release. -- Felipe Monteiro de Carvalho

Re: [lazarus] ButtonPanel component issues

2006-07-26 Thread Felipe Monteiro de Carvalho
Anybody got an idea how we can change the TButtonPanel to check the Desktop Environment (widget set) instead of the OS? Each widgetset has a define, like: $ifdef lclgtk2 or $ifdef lclqt or $ifdef lclwin32 -- Felipe Monteiro de Carvalho

Re: [lazarus] Inserting CPU and OS type in output filename

2006-08-03 Thread Felipe Monteiro de Carvalho
. There are instructions on the Wiki about how to create a makefile for lazarus projects. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Last release of documentation

2006-08-05 Thread Felipe Monteiro de Carvalho
On 8/2/06, Arí Ricardo Ody [EMAIL PROTECTED] wrote: Which is the link for the latest version of FPC manuals? You mean this one: http://www.freepascal.org/docs.html ? The really latest docs are on subversion in xml format. I´m not sure how to transform them into html. -- Felipe Monteiro de

Re: [lazarus] Transparent glyphs

2006-08-09 Thread Felipe Monteiro de Carvalho
it will be a color. All pixels with that color will be transparent. Try: bmp := TBitmap.Create; bmp.LoadFromFile('x.bmp'); bmp.Transparent := True; bmp.TransparentColor := clFuchsia; // Insert color here glyph.Assign(bmp); -- Felipe Monteiro de Carvalho

Re: [lazarus] Transparent glyphs

2006-08-10 Thread Felipe Monteiro de Carvalho
On 8/10/06, Micha Nelissen [EMAIL PROTECTED] wrote: Lazarus should (and did AFAIK) do so as well, when loading a .bmp file. Better to make it only when loading glyphs. We shouldn´t guess that a generic bmp file has transparency information on the left bottom pixel. -- Felipe Monteiro de

Re: [lazarus] Console application

2006-08-21 Thread Felipe Monteiro de Carvalho
Put {$apptype console} on your main file, the one with the program directive. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Console application

2006-08-21 Thread Felipe Monteiro de Carvalho
Brazilian? Yes. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Minor issue while compiling Lazarus

2006-08-27 Thread Felipe Monteiro de Carvalho
Maybe you should do make clean all instead of only make -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org

Re: Free Pascal widget set

2006-08-28 Thread Felipe Monteiro de Carvalho
thaught it was a wrapper for GTK or another widget set. Yes, wxWidgets works almost in the same way as LCL -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject

Re: Free Pascal widget set

2006-08-29 Thread Felipe Monteiro de Carvalho
. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] paradox access fron lazarus?

2006-08-31 Thread Felipe Monteiro de Carvalho
, such as: MySQL, PostgreSQL, SQLite, etc ... -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

[lazarus] Implementing TLabel

2006-08-31 Thread Felipe Monteiro de Carvalho
DeleteObject] [WinAPI SetWindowOrgEx] [WinAPI EndPaint] Handle: -1220879116 PS.HDC: -1220879052 Freeing resources TQtDeviceContext.Destroy TQtMainWindow.Destroy -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] Implementing TLabel

2006-08-31 Thread Felipe Monteiro de Carvalho
On 8/31/06, Mattias Gaertner [EMAIL PROTECTED] wrote: Is labels TGraphicControl.WMPaint called? No, it's never called. However, TScrollingWinControl.WMPaint (The paint event of a TForm ) is called twice. The first time is right after the SlotPaint event received from Qt. Here the DC parameter

Re: [lazarus] Implementing TLabel

2006-08-31 Thread Felipe Monteiro de Carvalho
and at the correct position. Still doesn't work, but I certainly advanced a lot today. thanks for the help, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives

Re: [lazarus] Implementing TLabel

2006-09-01 Thread Felipe Monteiro de Carvalho
and other things like that, but it's working. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] fpGUI and Qt

2006-09-04 Thread Felipe Monteiro de Carvalho
any application you with to recompile for Qt, just say what it needs and I will try to implement the necessary parts (if it doesn´t take too much time). I got no idea at what level the Qt4 Bindings are at They are very complete and well tested. -- Felipe Monteiro de Carvalho

Re: [lazarus] fpGUI and Qt

2006-09-04 Thread Felipe Monteiro de Carvalho
. It believed that KDE added many new things to Qt or more facility, for access peripheral for example (scanner, parallel port, etc.) . Yes, but it´s desktop environment dependent. It´s much better to create our own units. We already have good support for parallel port for example. -- Felipe Monteiro

Re: [lazarus] lazarus SVN broken

2006-09-05 Thread Felipe Monteiro de Carvalho
On 9/5/06, Sam Washkansky [EMAIL PROTECTED] wrote: I am experiencing the same problems with FPC 2.0.4 and latest lazarus. updated today On which operating system? -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL

Re: [SPAM] - AW: [lazarus] cross compiling - Email found in subject

2006-09-06 Thread Felipe Monteiro de Carvalho
are already distributed for easy install, such as a RPM Package for Linux To Windows cross-compilation. For other things involving cross-compilation, please read the documentation: http://wiki.lazarus.freepascal.org/Cross_compiling -- Felipe Monteiro de Carvalho

Re: [SPAM] - AW: [lazarus] cross compiling - Email found in subject

2006-09-06 Thread Felipe Monteiro de Carvalho
Ah, I forgot to mention that if anyone wants to volunteer to create more cross-compiling packages they would be welcome =) -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe

Re: [lazarus] Identifier not found TQtListView

2006-09-06 Thread Felipe Monteiro de Carvalho
is to the uses clause. If this class doesn´t exist already, you will need to write it on the file qtprivate.pas Take a look at that file and create a object just like the others. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail

Re: [lazarus] Identifier not found TQtListView

2006-09-06 Thread Felipe Monteiro de Carvalho
Just to help you, here is the documentation of QListView: http://doc.trolltech.com/4.2/qlistview.html Oh, and that class doesn´t already exist. You will need to create a new one on qtprivate.pas The Qt functions to be used are located on the qt4.pas unit. -- Felipe Monteiro de Carvalho

Re: [lazarus] The spirit lost of Borland

2006-09-06 Thread Felipe Monteiro de Carvalho
Look at the list of pre-requisites: Microsoft .NET Framework v1.1, Microsoft .NET SDK v1.1, Microsoft Visual J# v1.1, Microsoft XML Core Services v4.0 SP2. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

[lazarus] Create Form without Maximize button

2006-09-07 Thread Felipe Monteiro de Carvalho
. thanks, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: Create Form without Maximize button

2006-09-07 Thread Felipe Monteiro de Carvalho
Hello, I will answer my own question. If you set a MaxHeight and MaxWidth on the Constraints property, the Maximize button will disappear. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

Re: Create Form without Maximize button

2006-09-08 Thread Felipe Monteiro de Carvalho
On 9/8/06, Graeme Geldenhuys [EMAIL PROTECTED] wrote: What window manager are you using or are you running under Windows? KDE _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives

[lazarus] How can I implement Items.Add ?

2006-09-11 Thread Felipe Monteiro de Carvalho
controls on the qt interface. thanks, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Roadmap Qt update

2006-09-15 Thread Felipe Monteiro de Carvalho
://wiki.lazarus.freepascal.org/index.php/Qt_Interface#Qt_4_Bindings components scheduled to be implemented Acctually I think I will remove that section. Components under implementation can be marked as In Progress on the road map -- Felipe Monteiro de Carvalho

Re: [lazarus] Help!!

2006-09-16 Thread Felipe Monteiro de Carvalho
Which distribution do you use? Normally you should install from the RPM packages ... that´s the correct (and easy) way to install. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] LCL Message

2006-09-19 Thread Felipe Monteiro de Carvalho
On 9/19/06, Luis R. Hilario B. [EMAIL PROTECTED] wrote: If someone understands what is happening that he fix him because no longer I know what to do. I will investigate this. -- Felipe Monteiro de Carvalho _ To unsubscribe

Re: [lazarus] LCL Message

2006-09-19 Thread Felipe Monteiro de Carvalho
and TListWidget. Also, the way OnChangeEvent was implemented for TMemo is wrong. It will override all other events, and only allow OnChangeEvent, and show it for any event. I will try to implement it correctly. -- Felipe Monteiro de Carvalho

Re: [lazarus] LCL Message

2006-09-19 Thread Felipe Monteiro de Carvalho
); // OnSelectionChange event QListWidget_currentItemChanged_Event(Method) := QtListWidget.SlotSelectionChange; QListWidget_hook_hook_currentItemChanged(Hook, Method); end; I also attached a diff. -- Felipe Monteiro de Carvalho Index: lcl/interfaces/qt/qtobjects.pas

Re: [lazarus] LCL Message

2006-09-22 Thread Felipe Monteiro de Carvalho
I will send this patch to be applied. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] UTF-8 application

2006-09-24 Thread Felipe Monteiro de Carvalho
application you will need to create and use .po resource files with your application, like Lazarus does. Strings not loaded using this method are more problematic because win32 and gtk1 widgetsets only use ansi codepages, and gtk2 uses utf-8 -- Felipe Monteiro de Carvalho

Re: [lazarus] TBitBtn.Glyph / Enabled := False

2006-09-26 Thread Felipe Monteiro de Carvalho
Can you create a bug report for this and put those images there? thanks, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Bounty - Visual Form Inheritance

2006-09-26 Thread Felipe Monteiro de Carvalho
On 9/26/06, Graeme Geldenhuys [EMAIL PROTECTED] wrote: Excellent. It would be great if you could add this to the wiki, to keep track of the bounties. thanks, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL

Re: [lazarus] character map screen

2006-09-26 Thread Felipe Monteiro de Carvalho
Do you have a screenshot of the delphi version to compare? -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org

Re: Re: [lazarus] Bug Tracking, of nothing serves?

2006-09-26 Thread Felipe Monteiro de Carvalho
. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: Lazarus bug report

2006-09-27 Thread Felipe Monteiro de Carvalho
. This will not only work on Lazarus, it will also work on all platforms. So you can solve your problem and be cross-platform at the same time =) -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] Is LineEnding multiplatform? /no text

2006-09-29 Thread Felipe Monteiro de Carvalho
On 9/29/06, Alexandre Leclerc [EMAIL PROTECTED] wrote: Is LineEnding multiplatform? Yes, that's exactly why it exists. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe

Re: [lazarus] Some questions about installation

2006-09-30 Thread Felipe Monteiro de Carvalho
on the command line on a directory without source files. Does it show output? If make works, and that´s the only complaint about installing Lazarus, then I think you can just force it´s installation with: rpm -Uvh --nodeps lazarus.rpm -- Felipe Monteiro de Carvalho

Re: [lazarus] Some questions about installation

2006-09-30 Thread Felipe Monteiro de Carvalho
are right, but I think lazarus doesn´t depend on glib. There are other dependencies, however. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives

Re: [lazarus] Lazarus 0.9.18 and compilation speed (what does it look for?)

2006-10-01 Thread Felipe Monteiro de Carvalho
. Also see this wiki page: http://wiki.lazarus.freepascal.org/File_size_and_smartlinking Compiling the Virtual Magnifying Glass, a project much bigger then yours, it never took more then 45 seconds even in the worse possible scenario. -- Felipe Monteiro de Carvalho

Re: [lazarus] Send files to trash

2006-10-01 Thread Felipe Monteiro de Carvalho
} If there are differences between windows and linux, please explain both. On Linux it even isn´t guaranteed that a Trash exists at all, and implementations vary from desktop manager to desktop manager. -- Felipe Monteiro de Carvalho

Re: [lazarus] LCL Message

2006-10-01 Thread Felipe Monteiro de Carvalho
and *not* a OnClick} -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] New Lazarus package: LazRGBGraphics

2006-10-01 Thread Felipe Monteiro de Carvalho
win32} to {$ifdef Windows} it will: * Most likely work for 64 bits Windows and Windows CE * Be compatible with Delphi The ifdef win32 define windows is necessary to be compatible with Free Pascal = 2.0.2 thanks, -- Felipe Monteiro de Carvalho

Re: [lazarus] LCL Message

2006-10-01 Thread Felipe Monteiro de Carvalho
=) -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] LCL Message

2006-10-01 Thread Felipe Monteiro de Carvalho
, the spacebar, the enterkey ot its accelerator. All generate a onclick. In the first example I have (hold the mouse button, and drag around the listbox to change selection), you will have several OnClick events while only one button was pressed. -- Felipe Monteiro de Carvalho

Re: [lazarus] LCL Message

2006-10-02 Thread Felipe Monteiro de Carvalho
things will probably have to stay as they are. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] LCL Message

2006-10-02 Thread Felipe Monteiro de Carvalho
tracking might need an improvement, but it is certainly possible to detect if a selection changed by a click or not. And what if the selection was changed with the keyboard? Can you also detect that? -- Felipe Monteiro de Carvalho

Re: [lazarus] Qt Message

2006-10-02 Thread Felipe Monteiro de Carvalho
To ask difficult Qt questions I usually go to FreeNode IRC servers on the #qt channel. There are probably other places to ask (maybe some newsgroups?) but this was the best I could find. -- Felipe Monteiro de Carvalho

Re: [lazarus] Some more problems

2006-10-03 Thread Felipe Monteiro de Carvalho
On 10/3/06, Christian Ulrich [EMAIL PROTECTED] wrote: I have some patches for LazReport they are too big for the mailinglist where can i send them ?? Create a bug tracker item for the patch, and attach it to the report. Also put [Patch] on the title of the report. -- Felipe Monteiro de

Re: [lazarus] Does FPC (+Lazarus) can compile for WinCE?

2006-10-03 Thread Felipe Monteiro de Carvalho
version changes so often, on many revisions the cross-compiler is very buggy. The snapshot contains a very good cross-compiler, with very few bugs. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

[lazarus] Confused by component arrays

2006-10-04 Thread Felipe Monteiro de Carvalho
or something like that? thanks, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] TSplitter or TPairSplitter

2006-10-09 Thread Felipe Monteiro de Carvalho
can be very tricky, and documentation is very poor. I recomend going to FreeNode and ask Gtk specific questions on #gtk+ channel. There is also a Gnome server. Or you can ask here too. -- Felipe Monteiro de Carvalho _ To unsubscribe

[lazarus] Much Qt Progress

2006-10-09 Thread Felipe Monteiro de Carvalho
is ridiculously high (or is it that I am poor?) (Qt non-free is around 2000 dolars per platform per developer) -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
missing here is a PDA communications package for Lazarus. And it will have to be partly reimplemented on each widgetset. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
. It's together with my patch here: http://www.freepascal.org/mantis/view.php?id=7582 -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
(and possibly qtopia too) in the near future, then this will be solved. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Much Qt Progress

2006-10-10 Thread Felipe Monteiro de Carvalho
. The standard windows way is to just put on the installer. For Mac OS X Phil is preparing a bundle. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives

Re: [lazarus] subscribe

2006-10-10 Thread Felipe Monteiro de Carvalho
On 10/10/06, Henrique P Faria [EMAIL PROTECTED] wrote: Does anyone can tell me why I can't get subscribed to the mailing list? Which mailling list? It seams to me that you are already subscribed -- Felipe Monteiro de Carvalho

[lazarus] Windows Unicode strategy

2006-10-12 Thread Felipe Monteiro de Carvalho
, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Windows Unicode strategy

2006-10-13 Thread Felipe Monteiro de Carvalho
is neesed. Yes, and gtk2 interface seams to have a reasonable support for utf-8, so we would get cross-platform unicode support. One big thing missing for full unicode support by then would be the SynEdit. I think that it doesn't support utf-8, am I right? -- Felipe Monteiro de Carvalho

Re: [lazarus] Windows Unicode strategy

2006-10-13 Thread Felipe Monteiro de Carvalho
which guidelines to follow before I start coding. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Windows Unicode strategy

2006-10-14 Thread Felipe Monteiro de Carvalho
, but there is a 40k attachment limit. Try to create a diff and compress it. I think others would like to see what you did as well, after all this is colaborative work =) thanks, -- Felipe Monteiro de Carvalho _ To unsubscribe: mail

Re: [lazarus] First Success with Lazarus!

2006-10-15 Thread Felipe Monteiro de Carvalho
. BTW, does the size affect the performance in anyway? Unless you have so little memory that your program must stay on swap, I don't think so. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

Re: [lazarus] Windows Unicode strategy

2006-10-15 Thread Felipe Monteiro de Carvalho
for Win9x). So this is a guideline for Unicode code on win32 interface that I strongly suggest: Put all Unicode changes on IFDEFs, so they don´t contaminate existing code. Either this, or simply fork Win32 interface for Unicode. thanks, -- Felipe Monteiro de Carvalho

Re: [lazarus] Windows Unicode strategy

2006-10-16 Thread Felipe Monteiro de Carvalho
1.0 a lot. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Windows Unicode strategy

2006-10-16 Thread Felipe Monteiro de Carvalho
. wince and win32,win64 yes, but not a separate winu. So there will be no option for the users to use a Ansi IDE on windows in the future? This also impact the time needed to implement basic unicode support on windows a lot. -- Felipe Monteiro de Carvalho

Re: [lazarus] new lazarus component palette images

2006-10-17 Thread Felipe Monteiro de Carvalho
On 10/12/06, Jernej L. [EMAIL PROTECTED] wrote: http://users.volja.net/delfi/lazimages.rar Can you post that as zip? rar and 7zip are problematic to open on non-windows systems. thanks, -- Felipe Monteiro de Carvalho

Re: [lazarus] Lazarus and DOT Net

2006-10-18 Thread Felipe Monteiro de Carvalho
on Free Pascal, but if your employer only uses python then there is little we can do about that. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives

Re: [lazarus] Windows Unicode strategy

2006-10-20 Thread Felipe Monteiro de Carvalho
AText: PWideChar; begin AText := 'ó meu teste'; Windows.TextOutW(Self.Canvas.Handle, 0, 0, AText, Length(Text)); end; -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe

Re: [lazarus] Windows Unicode strategy

2006-10-20 Thread Felipe Monteiro de Carvalho
. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Much Qt Progress

2006-10-22 Thread Felipe Monteiro de Carvalho
to the list of stuff to be installed on the setup program. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org

Re: [lazarus] TTabControl status

2006-10-25 Thread Felipe Monteiro de Carvalho
search and TTabSheet does exist on LCL. It's a page control, not sure exact inside what it goes. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] TTabControl status

2006-10-25 Thread Felipe Monteiro de Carvalho
Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] Problem with UTF8 in ubuntu 6.06

2006-10-25 Thread Felipe Monteiro de Carvalho
on the FAQ to work around this problem. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: [lazarus] KDE

2006-10-25 Thread Felipe Monteiro de Carvalho
On 10/25/06, John Meyer [EMAIL PROTECTED] wrote: Has anybody been able to run Lazarus under KDE (suse 10.1). I can't even get it up. Does it give any error message? What happens? How did you install it? Also, try running it from the command line. The command is: lazarus -- Felipe Monteiro

[lazarus] Windows Unicode implementation proposal

2006-10-26 Thread Felipe Monteiro de Carvalho
to support UTF-16 characters that are dword sized. Else it would fail for them. Please comment, find bugs, improve, modify, etc. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe

Re: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
string? Yes, exactly. Not only one string, but I would say one application. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http

Re: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
for Unicode on Windows 95/98/Me Systems. With certain files they mean the Microsoft Layer for Unicode on Windows Me/98/95 Systems from: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/fontext_8smq.asp -- Felipe Monteiro de Carvalho

Re: Re[2]: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
a Windows 95 machine to test. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED] with unsubscribe as the Subject archives at http://www.lazarus.freepascal.org/mailarchives

Re: Re[2]: [lazarus] Windows Unicode implementation proposal

2006-10-27 Thread Felipe Monteiro de Carvalho
; How can it be unicode enabled? It´s from fpGUI, not lazarus, but should be a good example. I tryed to unicode it, but got a lost in the way. -- Felipe Monteiro de Carvalho _ To unsubscribe: mail [EMAIL PROTECTED

<    1   2   3   4   5   6   7   8   9   10   >