// Hint files help the Visual Studio IDE interpret Visual C++ identifiers // such as names of functions and macros. // For more information see https://go.microsoft.com/fwlink/?linkid=865984 #define SAL_THROW_EXTERN_C() #define SAL_UNUSED_PARAMETER #define SAL_LOPLUGIN_ANNOTATE(id) #define DECL_LINK(Member, ArgType, RetType) \ RetType Member(ArgType) #define DECL_STATIC_LINK(Class, Member, ArgType, RetType) \ static RetType Member(Class *, ArgType) #define DECL_DLLPRIVATE_LINK(Member, ArgType, RetType) \ SAL_DLLPRIVATE RetType Member(ArgType) #define DECL_DLLPRIVATE_STATIC_LINK(Class, Member, ArgType, RetType) \ SAL_DLLPRIVATE static RetType Member(Class *, ArgType) #define IMPL_LINK(Class, Member, ArgType, ArgName, RetType) \ RetType Class::Member(ArgType ArgName) #define IMPL_LINK_NOARG(Class, Member, ArgType, RetType) \ RetType Class::Member(ArgType) #define IMPL_STATIC_LINK(Class, Member, ArgType, ArgName, RetType) \ RetType Class::Member(Class *, ArgType ArgName) #define IMPL_STATIC_LINK_NOARG(Class, Member, ArgType, RetType) \ RetType Class::Member(Class *, ArgType) // From workdir/UnpackedTarball/cppunit/include/cppunit/plugin/TestPlugIn.h #define CPPUNIT_PLUGIN_IMPLEMENT() // From workdir/UnpackedTarball/cppunit/include/cppunit/extensions/HelperMacros.h // To allow searching for the test names, where they are defined using the macros #define CPPUNIT_TEST_FIXTURE(TestClass, TestName) \ class TestName : public TestClass \ { \ public: \ void TestBody(); \ }; \ void TestName::TestBody() // From sw/qa/inc/swmodeltestbase.hxx // To allow searching for the test names, where they are defined using the macros #define DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, password, BaseClass) \ class TestName : public BaseClass { \ public: \ void verify() override; \ }; \ void TestName::verify() #define DECLARE_OOXMLEXPORT_TEST(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, nullptr, Test) #define DECLARE_ODFEXPORT_TEST(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, nullptr, Test) #define DECLARE_WW8EXPORT_TEST(TestName, filename) DECLARE_SW_ROUNDTRIP_TEST(TestName, filename, nullptr, Test) e='distro/collabora/co-24.04.10'>distro/collabora/co-24.04.10 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/toolkit/source/helper
AgeCommit message (Expand)Author
2024-11-08no need to take a copy of the getProcessComponentContext return valueNoel Grandin
2024-11-08Deduplicate and unify using vcl::GetBitmapMike Kaganski
2024-07-11Unify/Port to use VCLUnoHelper for AWT <-> VCL conversionsMichael Weghorn
2024-07-11VCLUnoHelper: Align AWT <-> VCL helpers with convert.hxx implMichael Weghorn
2024-06-11Some missing "block untrusted referer links" for form controlsStephan Bergmann
2024-05-15loplugin:ostr in toolkitNoel Grandin
2024-05-04replace createFromAscii with OUString literals in toolkitNoel Grandin
2024-02-29Create an UNO service to do the symbol lookup in toolkit::AccessibilityClientNoel Grandin
2024-02-24remove dummy accessibility factoryNoel Grandin
2024-01-08cid#1545370 COPY_INSTEAD_OF_MOVECaolán McNamara
2023-10-15Repurpose loplugin:stringstatic for O[U]String vars that can be constexprStephan Bergmann
2023-09-01tdf#104833 a11y: Use VCLXAccessibleEdit for VCLXMultiLineEditMichael Weghorn
2023-08-18tdf#156561 a11y: Create VCLXTopWindow peer for border win frameMichael Weghorn
2023-07-25Convert internal vcl bitmap formats transparency->alpha (II)Noel Grandin
2023-05-09move a toolkit header inside the moduleNoel Grandin