RxDateEdit - fix work with new ButtonEdit

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2943 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2014-04-18 11:20:04 +00:00
parent 8b688de40b
commit 9ada7c687b
9 changed files with 42 additions and 15 deletions

View File

@ -104,6 +104,10 @@ procedure OutOfResources;
implementation
uses LCLProc, LCLIntf, LCLType, LCLStrConsts;
{$IFNDEF RX_USE_LAZARUS_RESOURCE}
{$R rx_lcl.res}
{$ENDIF}
function WidthOf(R: TRect): Integer;
begin
Result := R.Right - R.Left;
@ -600,10 +604,26 @@ end;
{$ENDIF}
function CreateArrowBitmap:TBitmap;
var
C : TCustomBitmap;
begin
{$IFNDEF RX_USE_LAZARUS_RESOURCE}
Result := TBitmap.Create;
try
try
C := TPortableNetworkGraphic.Create;
C.LoadFromResourceName(hInstance, 'rxbtn_downarrow');
Result.Assign(C);
finally
C.Free;
end;
except
Result.Free;
raise;
end;
{$ELSE}
Result:=LoadLazResBitmapImage('rxbtn_downarrow')
{ Result:=Graphics.TBitmap.Create;
Result.LoadFromLazarusResource('rxbtn_downarrow');}
{$ENDIF}
end;
//Code from DBGrid
@ -650,10 +670,13 @@ begin
end;
initialization
{$IFDEF RX_USE_LAZARUS_RESOURCE}
LazarusResources.Add('rxbtn_downarrow','XPM',[
'/* XPM */'#13#10'static char * btn_downarrow_xpm[] = {'#13#10'"5 3 2 1",'#13
+#10'" '#9'c None",'#13#10'".'#9'c #000000",'#13#10'".....",'#13#10'" ... ",'
+#13#10'" . "};'#13#10]);
{$ENDIF}
end.