mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-29 02:23:42 +02:00
20 lines
808 B
PHP
20 lines
808 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}
|
|
{.$DEFINE QTDIALOGSUSEHTMLTEXT} {we use plain text for dialogs - if enabled then dialogs can contain html formatted text}
|
|
{$ENDIF}
|