diff options
author | roopak12345 <mailstorpk@gmail.com> | 2014-03-09 21:40:44 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-03-09 21:53:34 +0100 |
commit | a652ea0fc4cc789f715b461819127ee80afa9e6f (patch) | |
tree | 0858def8201a45024721f4a98b537cd3274ac4c5 /sw/source/ui/chrdlg | |
parent | f4dfd811344604e119670eb7cdda0ab2e85bcea5 (diff) |
fdo#70422 Moved the linked files from sw/source/ui to a new core/uibase dir
Moved the files linked in sw/Library_sw.mk from sw/source/ui to
sw/source/core/uibase and modified the make files as per the new
directory location.
Reviewed on:
https://gerrit.libreoffice.org/8447
Change-Id: I05f6ccdeee5e76fb0ae477d16721d9ddc6eaff32
Diffstat (limited to 'sw/source/ui/chrdlg')
-rw-r--r-- | sw/source/ui/chrdlg/ccoll.cxx | 187 |
1 files changed, 0 insertions, 187 deletions
diff --git a/sw/source/ui/chrdlg/ccoll.cxx b/sw/source/ui/chrdlg/ccoll.cxx deleted file mode 100644 index 726c66974f13..000000000000 --- a/sw/source/ui/chrdlg/ccoll.cxx +++ /dev/null @@ -1,187 +0,0 @@ -/* -*- 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 "cmdid.h" -#include "swmodule.hxx" -#include "view.hxx" -#include "wrtsh.hxx" -#include "globals.hrc" -#include "helpid.h" - -#include <sfx2/styfitem.hxx> - -#include "uitool.hxx" -#include "ccoll.hxx" -#include "fmtcol.hxx" -#include "hintids.hxx" -#include "docsh.hxx" -#include "docstyle.hxx" -#include "hints.hxx" - -#include "chrdlg.hrc" -#include <vcl/svapp.hxx> - -#include <unomid.h> - -// ****************************************************************** - -//!! order of entries has to be the same as in -//!! CommandStruct SwCondCollItem::aCmds[] - -const char *aCommandContext[COND_COMMAND_COUNT] = -{ - "TableHeader", - "Table", - "Frame", - "Section", - "Footnote", - "Endnote", - "Header", - "Footer", - "OutlineLevel1", - "OutlineLevel2", - "OutlineLevel3", - "OutlineLevel4", - "OutlineLevel5", - "OutlineLevel6", - "OutlineLevel7", - "OutlineLevel8", - "OutlineLevel9", - "OutlineLevel10", - "NumberingLevel1", - "NumberingLevel2", - "NumberingLevel3", - "NumberingLevel4", - "NumberingLevel5", - "NumberingLevel6", - "NumberingLevel7", - "NumberingLevel8", - "NumberingLevel9", - "NumberingLevel10" -}; - -sal_Int16 GetCommandContextIndex( const OUString &rContextName ) -{ - sal_Int16 nRes = -1; - for (sal_Int16 i = 0; nRes == -1 && i < COND_COMMAND_COUNT; ++i) - { - if (rContextName.equalsAscii( aCommandContext[i] )) - nRes = i; - } - return nRes; -} - -OUString GetCommandContextByIndex( sal_Int16 nIndex ) -{ - OUString aRes; - if (0 <= nIndex && nIndex < COND_COMMAND_COUNT) - { - aRes = OUString::createFromAscii( aCommandContext[ nIndex ] ); - } - return aRes; -} - -// Globals ****************************************************************** - -const CommandStruct SwCondCollItem::aCmds[] = -{ - { PARA_IN_TABLEHEAD, 0 }, - { PARA_IN_TABLEBODY, 0 }, - { PARA_IN_FRAME, 0 }, - { PARA_IN_SECTION, 0 }, - { PARA_IN_FOOTENOTE, 0 }, - { PARA_IN_ENDNOTE, 0 }, - { PARA_IN_HEADER, 0 }, - { PARA_IN_FOOTER, 0 }, - { PARA_IN_OUTLINE, 0 }, - { PARA_IN_OUTLINE, 1 }, - { PARA_IN_OUTLINE, 2 }, - { PARA_IN_OUTLINE, 3 }, - { PARA_IN_OUTLINE, 4 }, - { PARA_IN_OUTLINE, 5 }, - { PARA_IN_OUTLINE, 6 }, - { PARA_IN_OUTLINE, 7 }, - { PARA_IN_OUTLINE, 8 }, - { PARA_IN_OUTLINE, 9 }, - { PARA_IN_LIST, 0 }, - { PARA_IN_LIST, 1 }, - { PARA_IN_LIST, 2 }, - { PARA_IN_LIST, 3 }, - { PARA_IN_LIST, 4 }, - { PARA_IN_LIST, 5 }, - { PARA_IN_LIST, 6 }, - { PARA_IN_LIST, 7 }, - { PARA_IN_LIST, 8 }, - { PARA_IN_LIST, 9 } -}; - -TYPEINIT1_AUTOFACTORY(SwCondCollItem, SfxPoolItem) - -/**************************************************************************** - Item for the transport of the condition table -****************************************************************************/ - -SwCondCollItem::SwCondCollItem(sal_uInt16 _nWhich ) : - SfxPoolItem(_nWhich) -{ - -} - -SwCondCollItem::~SwCondCollItem() -{ -} - -SfxPoolItem* SwCondCollItem::Clone( SfxItemPool * /*pPool*/ ) const -{ - return new SwCondCollItem(*this); -} - -bool SwCondCollItem::operator==( const SfxPoolItem& rItem) const -{ - OSL_ENSURE( SfxPoolItem::operator==(rItem), "different types" ); - sal_Bool bReturn = sal_True; - for(sal_uInt16 i = 0; i < COND_COMMAND_COUNT; i++) - if (m_sStyles[i] != - static_cast<SwCondCollItem const&>(rItem).m_sStyles[i]) - { - bReturn = sal_False; - break; - } - - return bReturn; -} - -OUString SwCondCollItem::GetStyle(sal_uInt16 const nPos) const -{ - return (nPos < COND_COMMAND_COUNT) ? m_sStyles[nPos] : OUString(); -} - -void -SwCondCollItem::SetStyle(OUString const*const pStyle, sal_uInt16 const nPos) -{ - if( nPos < COND_COMMAND_COUNT ) - m_sStyles[nPos] = (pStyle) ? *pStyle : OUString(); -} - -const CommandStruct* SwCondCollItem::GetCmds() -{ - return aCmds; -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |