You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kexi/core/kexiuseractionmethod.cpp

33 lines
697 B

#include <klocale.h>
#include "kexiuseraction.h"
#include "kexiuseractionmethod.h"
KexiUserActionMethod::KexiUserActionMethod(int method, ArgTypes types, ArgNames names)
{
m_method = method;
m_types = types;
m_names = names;
}
TQString
KexiUserActionMethod::methodName(int method)
{
switch(method)
{
case KexiUserAction::OpenObject:
return i18n("Open Object");
case KexiUserAction::CloseObject:
return i18n("Close Object");
case KexiUserAction::DeleteObject:
return i18n("Delete Object");
case KexiUserAction::ExecuteScript:
return i18n("Execute Script");
case KexiUserAction::ExitKexi:
return i18n("Exit Main Application");
default:
return TQString();
}
}