mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-25 18:56:22 +02:00
22 lines
745 B
PHP
22 lines
745 B
PHP
{******************************************************************************
|
|
Centralized includefile for some common qt defines
|
|
******************************************************************************}
|
|
{$IFNDEF QTOPIA}
|
|
{$IF DEFINED(LINUX) or DEFINED(FREEBSD) or DEFINED(NETBSD)}
|
|
{$DEFINE HASX11}
|
|
{$ENDIF}
|
|
{$IF DEFINED(DARWIN) AND DEFINED(CPU64)}
|
|
{$DEFINE QTCOCOA}
|
|
{$ENDIF}
|
|
{$DEFINE QTSCROLLABLEFORMS}
|
|
{removed usage of nativeeventloop because of issue #34982}
|
|
{.$DEFINE QtUseNativeEventLoop}
|
|
{$IFDEF DARWIN}
|
|
{enable this define if you have problems when dialogs are shown behind application}
|
|
{.$DEFINE TQTMESSAGEBOXUSEPARENT}
|
|
{$ENDIF}
|
|
{$IFDEF HASX11}
|
|
{.$DEFINE QtUseAccurateFrame}
|
|
{$ENDIF}
|
|
{$ENDIF}
|