* Copyright 2006, Haiku.
* Distributed under the terms of the MIT License.
*
* Authors:
* Stephan Aßmus <superstippi@gmx.de>
*/
#include "PathCommand.h"
#include <stdio.h>
#include <Catalog.h>
#include <Locale.h>
#include "VectorPath.h"
#undef B_TRANSLATION_CONTEXT
#define B_TRANSLATION_CONTEXT "Icon-O-Matic-PathCmd"
PathCommand::PathCommand(VectorPath* path)
: fPath(path)
{
}
PathCommand::~PathCommand()
{
}
status_t
PathCommand::InitCheck()
{
return fPath ? B_OK : B_NO_INIT;
}
void
PathCommand::GetName(BString& name)
{
name << B_TRANSLATE("<modify path>");
}
void
PathCommand::_Select(const int32* indices, int32 count,
bool extend) const
{
}