2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-12 17:21:24 +00:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
#include <loadenv/targethelper.hxx>
|
|
|
|
|
|
|
|
namespace framework{
|
|
|
|
|
2014-04-04 15:53:21 +02:00
|
|
|
bool TargetHelper::matchSpecialTarget(const OUString& sCheckTarget ,
|
2004-01-28 13:38:02 +00:00
|
|
|
ESpecialTarget eSpecialTarget)
|
|
|
|
{
|
|
|
|
switch(eSpecialTarget)
|
|
|
|
{
|
|
|
|
case E_SELF :
|
|
|
|
return (
|
2011-12-26 14:20:50 -02:00
|
|
|
(sCheckTarget.isEmpty() ) ||
|
2014-12-18 13:19:13 +01:00
|
|
|
sCheckTarget == SPECIALTARGET_SELF
|
2004-01-28 13:38:02 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
case E_PARENT :
|
2014-12-18 13:19:13 +01:00
|
|
|
return sCheckTarget == SPECIALTARGET_PARENT;
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
case E_TOP :
|
2014-12-18 13:19:13 +01:00
|
|
|
return sCheckTarget == SPECIALTARGET_TOP;
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
case E_BLANK :
|
2014-12-18 13:19:13 +01:00
|
|
|
return sCheckTarget == SPECIALTARGET_BLANK;
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
case E_DEFAULT :
|
2014-12-18 13:19:13 +01:00
|
|
|
return sCheckTarget == SPECIALTARGET_DEFAULT;
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
case E_BEAMER :
|
2014-12-18 13:19:13 +01:00
|
|
|
return sCheckTarget == SPECIALTARGET_BEAMER;
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
case E_MENUBAR :
|
2014-12-18 13:19:13 +01:00
|
|
|
return sCheckTarget == SPECIALTARGET_MENUBAR;
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
case E_HELPTASK :
|
2014-12-18 13:19:13 +01:00
|
|
|
return sCheckTarget == SPECIALTARGET_HELPTASK;
|
2006-06-19 10:25:16 +00:00
|
|
|
default:
|
2014-04-04 15:53:21 +02:00
|
|
|
return false;
|
2004-01-28 13:38:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-04 15:53:21 +02:00
|
|
|
bool TargetHelper::isValidNameForFrame(const OUString& sName)
|
2004-01-28 13:38:02 +00:00
|
|
|
{
|
2013-12-20 11:25:37 +01:00
|
|
|
// some special targets are really special ones :-)
|
|
|
|
// E.g. the are really used to locate one frame inside the frame tree.
|
2004-01-28 13:38:02 +00:00
|
|
|
if (
|
2011-12-26 14:20:50 -02:00
|
|
|
(sName.isEmpty() ) ||
|
2004-01-28 13:38:02 +00:00
|
|
|
(TargetHelper::matchSpecialTarget(sName, E_HELPTASK)) ||
|
|
|
|
(TargetHelper::matchSpecialTarget(sName, E_BEAMER) )
|
|
|
|
)
|
2014-04-04 15:53:21 +02:00
|
|
|
return true;
|
2004-01-28 13:38:02 +00:00
|
|
|
|
|
|
|
// all other names must be checked more general
|
|
|
|
// special targets starts with a "_".
|
|
|
|
return (sName.indexOf('_') != 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace framework
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|