Yesterday, Apple released Mac OS X Yosemite.
We have a new Yosemite style pack available for RAD Studio XE7 users that includes both a blue and a dark style. The blue style is the default Yosemite style, and the dark style is designed for Yosemite’s dark (graphite) mode.
You can get both styles and the sample project by going to: http://cc.embarcadero.com/item/30025
Here are the steps to add Yosemite styling support to your project:
1. Place TStyleBook onto the Master view
2. Set TStyleBook.Name = "YosemiteStyleBook"
3. Load Yosemite.fsf or YosemiteDark.fsf to YosemiteStyleBook
4. Use the TForm.OnCreate event and add this code:
procedure TForm1.FormCreate(Sender: TObject); begin {$IFDEF MACOS} if (TOSVersion.Major = 10) and (TOSVersion.Minor = 10) then Form1.StyleBook := YosemiteStyleBook; {$ENDIF} end;