Files
konsole/src/TabTitleFormatAction.cpp
Stephan Binner 5b40edef18 i18n style guide fixes: http://techbase.kde.org/Projects/Usability/HIG/Capitalization
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=959655
2009-04-26 19:40:38 +00:00

105 lines
3.0 KiB
C++

/*
Copyright 2007-2008 by Robert Knight <robertknight@gmail.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.
*/
// Own
#include "TabTitleFormatAction.h"
// Qt
#include <QList>
#include <QMenu>
// KDE
#include <KLocale>
using namespace Konsole;
const TabTitleFormatAction::Element TabTitleFormatAction::_localElements[] =
{
{ "%n" , I18N_NOOP("Program Name") },
{ "%d" , I18N_NOOP("Current Directory (Short)") },
{ "%D" , I18N_NOOP("Current Directory (Long)") },
{ "%w" , I18N_NOOP("Window Title Set by Shell") },
{ "%#" , I18N_NOOP("Session Number") },
{ "%u" , I18N_NOOP("User Name") }
};
const int TabTitleFormatAction::_localElementCount = 6;
const TabTitleFormatAction::Element TabTitleFormatAction::_remoteElements[] =
{
{ "%u" , I18N_NOOP("User Name") },
{ "%h" , I18N_NOOP("Remote Host (Short)") },
{ "%H" , I18N_NOOP("Remote Host (Long)") },
{ "%w" , I18N_NOOP("Window Title Set by Shell") },
{ "%#" , I18N_NOOP("Session Number") }
};
const int TabTitleFormatAction::_remoteElementCount = 5;
TabTitleFormatAction::TabTitleFormatAction(QObject* parent)
: QAction(parent)
, _context(Session::LocalTabTitle)
{
setMenu( new QMenu() );
connect( menu() , SIGNAL(triggered(QAction*)) , this , SLOT(fireElementSelected(QAction*)) );
}
TabTitleFormatAction::~TabTitleFormatAction()
{
menu()->deleteLater();
}
void TabTitleFormatAction::fireElementSelected(QAction* action)
{
emit dynamicElementSelected(action->data().value<QString>());
}
void TabTitleFormatAction::setContext(Session::TabTitleContext context)
{
_context = context;
menu()->clear();
QList<QAction*> list;
int count = 0;
const Element* array = 0;
if ( context == Session::LocalTabTitle )
{
count = _localElementCount;
array = _localElements;
}
else if ( context == Session::RemoteTabTitle )
{
count = _remoteElementCount;
array = _remoteElements;
}
for ( int i = 0 ; i < count ; i++ )
{
QAction* action = new QAction(i18n(array[i].description),this);
action->setData(array[i].element);
list << action;
}
menu()->addActions(list);
}
Session::TabTitleContext TabTitleFormatAction::context() const
{
return _context;
}
#include "TabTitleFormatAction.moc"