/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include IdlDll & GetIdlApp() { static IdlDll aIdlDll; return aIdlDll; } IdlDll::IdlDll() {} IdlDll::~IdlDll() { } static SvStringHashEntry * INS( const OString& rName ) { sal_uInt32 nIdx; GetIdlApp().pHashTable->Insert( rName, &nIdx ); return GetIdlApp().pHashTable->Get( nIdx ); } #define A_ENTRY( Name ) , MM_##Name( INS( #Name ""_ostr ) ) SvGlobalHashNames::SvGlobalHashNames() : MM_module( INS( "module"_ostr ) ) , MM_interface( INS( "interface"_ostr ) ) , MM_shell( INS( "shell"_ostr ) ) , MM_Toggle( INS( "Toggle"_ostr ) ) , MM_AutoUpdate( INS( "AutoUpdate"_ostr ) ) , MM_Asynchron( INS( "Asynchron"_ostr ) ) A_ENTRY(RecordPerSet) A_ENTRY(RecordPerItem) A_ENTRY(NoRecord) A_ENTRY(RecordAbsolute) A_ENTRY(enum) A_ENTRY(UINT16) A_ENTRY(INT16) A_ENTRY(UINT32) A_ENTRY(INT32) A_ENTRY(BOOL) A_ENTRY(BYTE) A_ENTRY(float) A_ENTRY(double) A_ENTRY(item) A_ENTRY(import) A_ENTRY(SlotIdFile) A_ENTRY(include) A_ENTRY(ExecMethod) A_ENTRY(StateMethod) A_ENTRY(GroupId) A_ENTRY(define) A_ENTRY(MenuConfig) A_ENTRY(ToolBoxConfig) A_ENTRY(AccelConfig) A_ENTRY(FastCall) A_ENTRY(SbxObject) A_ENTRY(Container) A_ENTRY(ReadOnlyDoc) A_ENTRY(struct) A_ENTRY(DisableFlags) {} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ >
See tdf#42949 for motivation

Change-Id: I99558e6b6952b3f2c1ee32dd07354ff659ad9cd0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131183
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Pass context and resource string down to boost::locale separately 2021-08-05T07:39:11+00:00 Noel Grandin noel.grandin@collabora.co.uk 2021-07-19T11:18:49+00:00 14cfff500e93f0d6cbf8412065feea85c01ea81d because this is often on a hot path, and we can avoid the splitting and joining of strings like this. Change-Id: Ia36047209368ca53431178c2e8723a18cfe8260a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119220 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
because this is often on a hot path, and we can avoid the splitting and
joining of strings like this.

Change-Id: Ia36047209368ca53431178c2e8723a18cfe8260a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119220
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
weld TreeView 2018-11-19T11:09:25+00:00 Caolán McNamara caolanm@redhat.com 2018-11-05T21:01:23+00:00 97bbffc917deba872090667e9dc096ecec99d557 a) use GtkTreeStores for GtkTreeViews b) ironically can't store GtkTreeStore contents in .ui apparently c) set show_expanders for all non-trees and unconverted cases d) on-demand subtrees Change-Id: I3c1036a222daba2c129b1a22ffeb3fe35005ae31 Reviewed-on: https://gerrit.libreoffice.org/63336 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
a) use GtkTreeStores for GtkTreeViews
b) ironically can't store GtkTreeStore contents in .ui apparently
c) set show_expanders for all non-trees and unconverted cases
d) on-demand subtrees

Change-Id: I3c1036a222daba2c129b1a22ffeb3fe35005ae31
Reviewed-on: https://gerrit.libreoffice.org/63336
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>