summaryrefslogtreecommitdiff
path: root/src/gui/fpg_style_win2k.pas
blob: 70ae4e0fb7833c75830d65c2c9b024a6e78e854c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
unit fpg_style_win2k; 

{$mode objfpc}{$H+}

interface

uses
  fpg_main
  ,fpg_style
  ;

type
  TfpgWin2000Style = class(TfpgStyle)

  end;

implementation

uses
  fpg_stylemanager
  ;


initialization
  fpgStyleManager.RegisterClass(cDefaultStyle, TfpgWin2000Style);   // TODO: This will change later
  fpgStyleManager.RegisterClass('Win2000', TfpgWin2000Style);


end.