In the trademark registration, FireMonkey is described as "Computer software for providing a cross platform graphics engine and component library for generating graphical user interfaces and skinning engine, and for providing controls representation, styles, graphics and effects, animation, 2d and ...
37
votes
1answer
857 views
Firemonkey ScrollBox Bug
We are experiencing what seems to be a strange bug in Firemonkey's ScrollBox component (since TGrid inherits from TScrollBox it also affects all grids). On some ouf our development machines, ...
21
votes
2answers
441 views
Why is drawing a line less than 1.5 pixels thick twice as slow as drawing a line 10 pixels thick?
I'm just playing around with FireMonkey to see if graphical painting is any faster than GDI or Graphics32 (my library of choice at the moment).
To see how fast it is, I've performed some tests, but I ...
21
votes
1answer
564 views
How do you create a Tray icon with FireMonkey?
With the new FireMonkey cross-platform tool, how does one create a tray icon? With Delphi it used to be TTrayIcon.
The documentation has nothing, and no other questions seem to answer this. Would ...
18
votes
1answer
610 views
With FireMonkey and its cross-platforms, where should I store my application data?
Usually, with Windows, I save my application's data in the user folder (%appdata%).
For that, I use the function ExpandEnvironmentStrings which is linked to Windows to get the folder I need, and I ...
16
votes
13answers
6k views
Delphi XE2 Firemonkey sample app not running on a MAC
I am trying to run a sample Firemonkey app on a Mac, but I am getting this message in the mac:
dyld: Library not loaded: @rpath/libcgunwind.1.0.dylib
Referenced from: ...
15
votes
2answers
811 views
How can a designer design a firemonkey style
Firemonkey brings us the ability to add styles, vector graphics, bitmaps, effects, animations etc to our apps. But I'm no designer, so I'll need to hire one to do the fancy work. But as far as I can ...
13
votes
2answers
1k views
Firemonkey version of VirtualTreeView
Does anyone happen to know if there is a Firemonkey version of the popular VirtualTreeView in preparation? Also, has anybody collected some experiences with porting custom controls to Firemonkey and ...
12
votes
3answers
264 views
Delphi Xe2 with Firemonkey : Can you have a non-client area that is painted in a style other than the default Windows nonclient paint style?
Here is a sample of a delphi application I am making using firemonkey + Delphi XE2.
As you can see, you can use the visual style "stylebook" in Firemonkey to customize the appearance of most things ...
12
votes
1answer
780 views
Where are the standard looking iOS controls\styles in Delphi XE2?
We are currently in the process of evaluating Delphi XE2, and as you would expect I've started with FireMonkey as OS X and iOS development is of great interest. I've seen a couple of walkthrough's ...
11
votes
1answer
345 views
How to debug a Delphi iOS FireMonkey application in Xcode?
I am trying to debug a FireMonkey application compiled with Delphi XE2 with Update 1 using Xcode v3.2.6 on Apple Snow Leopard 10.6.8. I am able to load the project in Xcode, compile it and run it in ...
11
votes
1answer
1k views
Firemonkey and large amounts of data
I just had a look at Firemonkey's grid implementation and it turns out that it is a very simple implementation (only 1800 lines which seems not much for a grid implementation). It does almost no ...
11
votes
9answers
4k views
Details of what features FireMonkey (FMX) inside the NEW Delphi Rad Studio XE2 contains?
I've heard that Delphi's NEW Rad Studio XE2 has something called FireMonkey that will allow the same code to build Windows 32, Windows 64 and MacOS applications.
If this is true, this is huge. Where ...
10
votes
2answers
490 views
How to deploy a FireMonkey Application for Mac OSX?
I can run a FireMonkey Application on Mac OSX with PAServer. But now, I would like to deploy the application Mac OS (something like MSI under Windows). How can I do this?
10
votes
1answer
683 views
Printing Firemonkey on Mac OSX
How can I print documents with the newly released Firemonkey framework?
9
votes
0answers
231 views
Remove box from Firemonkey Text3d
** This is fixed in Delphi XE2 Update 3 **
I've create a little Hello World Firemonkey application with a spinning tText3d object.
How do I get rid of the wireframe box that surrounds the text?
...
9
votes
3answers
693 views
Why does my Firemonkey app open a terminal window on OSX but not on Win32?
I created a simple testbed app in Delphi XE2, and compiled both a Win32 and OSX version of the application.
I zipped up the OSX version, along with a copy of the libcgunwind dylib runtime file and ...
8
votes
3answers
313 views
What databases for Mac are directly supported by the FireMonkey framework in Delphi XE2?
Confronted with the task to develop a database application for a company working in a pure Mac environment, what are my options for a central database server to be used by a Delphi FMX application ...
8
votes
4answers
312 views
What road to take to load an SVG graphic into a FireMonkey app?
There are about four implementations I can think of that are capable of loading SVG graphics into a Delphi application.
One of those, by Mattias Andersson, who is the author of FMX.Canvas.VPR
, works ...
8
votes
5answers
556 views
Delphi XE2: Is there a predefined conditional to identify VCL and FireMonkey?
In Delphi XE2, we have use
{$ifdef Win32}
{$ifdef Win64}
to identify which platform we are in.
Is there any predefined conditional that may identify VCL and FMX?
8
votes
2answers
407 views
Toggle between form and unit is not working in Firemonkey project
I'm testing Delphi XE2 and I create a new FireMonkey HD Application, but I have an issue the form designer for the FireMonkey forms is not visible or Available, the option Toggle Form/unit in the ...
8
votes
4answers
2k views
Delphi XE2: Possible to instantiate a FireMonkey Form in VCL application?
Prior to Delphi XE2, we have VCL only to create GUI apps. Delphi XE2 states that:
Caution: FireMonkey (FMX) and the Visual Component Library (VCL) are
not compatible and cannot be used in the ...
8
votes
3answers
1k views
How to access iOS accelerometer in Delphi XE2?
How do I access the accelerometer in iOS using Delphi XE2?
I tried looking through the IDE but did not find a component.
7
votes
0answers
163 views
SynEdit for Firemonkey?
Is there a synedit package that works under firemonkey (or someone working on it) ?
From what I can gather there was a VGScene port earlier (see: ...
7
votes
3answers
192 views
Animating the addition of a string to a ListBox in FireMonkey
The following code nicely animates adding a new string to the end of a ListBox
procedure TForm6.AddItem(s: string);
var
l : TListBoxItem;
OldHeight : Single;
begin
l := ...
7
votes
2answers
309 views
Fastest way to draw pixels in FireMonkey
I have made the following code:
procedure TForm15.Button1Click(Sender: TObject);
var
Bitmap1: TBitmap;
im: TImageControl;
Color: TColor;
Scanline: PAlphaColorArray;
x,y,i: Integer;
begin
...
7
votes
1answer
130 views
How determine that a dragging operation has ended in FireMonkey?
I want to find out if a dragged control has been released outside any target.
One would think that OnDragEnd should be used, but that event doesn't work (they forgot to call the DragEnd procedure in ...
7
votes
2answers
265 views
Delphi XE2: Invisible Firemonkey controls in VirtualBox
I am running a Win7 x64 Pro inside VirtualBox with 2d and 3d acceleration enabled, but most Controls (TButton, TStringGrid, TTabControl, etc.) are invisible inside Delphi. If I run the executable, all ...
7
votes
2answers
187 views
Firemonkey semi-transparent Image3D is sometimes opaque
I create a FireMonkey app with 3 semi-transparent tImage3D's.
Here's the code and the screen. All seems well.
procedure TForm1.Form3DCreate(Sender: TObject);
// create a new semi-transparent ...
7
votes
1answer
206 views
7
votes
4answers
561 views
Firemonkey to iPhone
Here I have my Windows laptop with Delphi XE2 and Firemonkey.
I've written a little Firemokey hello world app.
In my hand I have my new iPhone 4S that I just brought home.
What are the steps to get ...
7
votes
2answers
789 views
How to open an URL with the default browser with FireMonkey cross-platform applications?
Usually, I use: ShellExecute(0, 'OPEN', PChar(edtURL.Text), '', '', SW_SHOWNORMAL);
How can I have the same behaviour (opening a link in the default browser), on all platforms (Windows and OSX)?
7
votes
2answers
714 views
Delphi XE2: Is it possible to create Mac GUI applications without FireMonkey?
Using Delphi XE2, is it possible to create a Mac GUI application without using FireMonkey for the GUI? If so, what could be used and how would one go about it?
7
votes
2answers
373 views
How does copy, cut and paste work in a FireMonkey - HD Form designer
I am trying to write my first firemonkey - HD application
Create an firemonkey - HD application
On the form put a TLabel and change its Name.
Select the TLabel
In the Drop Down Menu select Edit
...
7
votes
4answers
1k views
How feature 'rich' is the FireMonkey framework
I have typical rich gui fat clients and am considering moving to lighter html displaying clients using embedded chrome, but now FireMonkey looks potentialy interesting too.
The 2d/3d transformations ...
6
votes
2answers
243 views
Do FireMonkey controls have an equivalent to the VCL Invalidate() method?
I'm creating some custom FireMonkey GUI controls. The components need to update in response to user interactions. VCL controls can call Invalidate() to be placed into a queue for repainting. Does ...
6
votes
2answers
346 views
How to create subitems menus under the application name on OSX?
How to add TMenuItem under Project1 and above Quit on the screenshot below?
I have created a TMenuBar with property UseOSMenu checked.
The first TMenuItem I added is the second one in the main ...
6
votes
3answers
344 views
How to add menu items separators which work as expected on OSX?
On Windows platform, with the VCL, when we want to add a separator in a menu, we add a TMenuItem with a Caption := '-';
With FireMonkey, we add a TMenuItem with a Text := '-';
It works as expected ...
6
votes
2answers
594 views
With Firemonkey, how to give feedback to the user ? (crHourglass)
Usually, when I have a task which takes some time, I use a script like this:
procedure Work;
var
cPrevious: TCursor;
begin
cPrevious := Screen.Cursor;
Screen.Cursor := crHourGlass;
try ...
6
votes
3answers
1k views
Does Delphi XE2 FireMonkey support Indy for cross-platform apps?
Looking at the new Delphi XE2 with Firemonkey. Considering that it compiles for Windows, Mac OSX and iOS, VCL components are useless in a FireMonkey application.
My question is: Is there/will there ...
5
votes
1answer
144 views
How to use FireMonkey to browse Web URL with Delphi XE2?
In past version of Delphi, when we use VCL framework, TWebBrowser and
some 3rd party components inherited from TWebBrowser, e.g., TEmbeddedWebBrowser
will be used when some web pages need to be shown ...
5
votes
2answers
129 views
Which HW configuration is to be used for building cross-platform FireMonkey applications?
I've just bought a Mac Mini in order to develop Mac OS X FireMonkey applications, using Delphi XE2.
I've a main laptop under Windows Seven, which I use for development since years. But this laptop ...
5
votes
1answer
117 views
Is there any WAV sound playback on Mac from Delphi XE2?
Are there any tutorials or examples on how to play WAV files on Mac from application built by Delphi XE2 FireMonkey?
I'm asking because this code does not work:
var
//fWaves head and data is ...
5
votes
1answer
142 views
Firemonkey Grid Control - Aligning a column to the right
I am using the FireMonkey Grid control but have an on-going issue in trying to right align a column. From other users postings, I have managed to create a new TColumn type, apply a style to this (text ...
5
votes
2answers
167 views
How to change globally the Fonts in FireMonkey?
I’m trying to find a way to globally change the font in a FireMonkey project.
What is the easiest way to do it without having to change the font property for all the components?
If there a way to set ...
5
votes
1answer
480 views
Is there any Delphi XE2 styles gallery?
In XE2 there is a new function : 'styles', for VCL(.vsf) and Firemonkey (.styles), and some are provided in C:\Program Files\Embarcadero\RAD Studio\9.0\Redist\styles directory.
As it seems to be ...
5
votes
1answer
260 views
FireMonkey controls do not animate smoothly
Background
I've created a GUI using some FireMonkey controls.
Some controls are animated and their appearance updates automatically.
Some controls only update in response to user interaction ...
5
votes
1answer
225 views
FireMonkey and showing modal dialog center of the owner form
I have a problem with displaying modal dialog in center of the owner form. My code for showing modal dialog is:
procedure TfrmMain.btnOpenSettingsClick(Sender: TObject);
var
sdSettingsDialog: ...
5
votes
1answer
244 views
Delphi FireMonkey KeyboardType error after installing Update2
I have just installed Update 2 for Delphi XE2 and rebuilt and tested one FireMonkey iOS application I run. Ran fine on Windows so I exported to XCode and rebuilt and ran it.
It gave a runtime ...
5
votes
1answer
513 views
Firemonkey: Styling the tGrid or alternative Grid/List components (Virtual)
I'm trying to create my first app based on FireMonkey, and I hit a wall.
The only virtual list control I can find is tGrid.
This component is pretty good, but I can not figure out how to extend or ...
5
votes
2answers
306 views
How to setup OpenGL1.4 environment in Firemonkey App?
In older days I would create a TForm, place a TMyPanel on it (with overriden WM_PAINT message) and pass its Handle to a bunch of WGL functions that find a compatible pixelformat and create rendering ...