Symbol: AddCommand
src/apps/icon-o-matic/MainWindow.cpp
206
AddCommand<Style>* styleCommand = new (nothrow) AddCommand<Style>(
src/apps/icon-o-matic/generic/command/AddCommand.h
113
AddCommand<Type>::InitCheck()
src/apps/icon-o-matic/generic/command/AddCommand.h
121
AddCommand<Type>::Perform()
src/apps/icon-o-matic/generic/command/AddCommand.h
140
AddCommand<Type>::Undo()
src/apps/icon-o-matic/generic/command/AddCommand.h
154
AddCommand<Type>::GetName(BString& name)
src/apps/icon-o-matic/generic/command/AddCommand.h
45
class AddCommand : public Command {
src/apps/icon-o-matic/generic/command/AddCommand.h
47
AddCommand(
src/apps/icon-o-matic/generic/command/AddCommand.h
53
virtual ~AddCommand();
src/apps/icon-o-matic/generic/command/AddCommand.h
73
AddCommand<Type>::AddCommand(Container<Type>* container,
src/apps/icon-o-matic/generic/command/AddCommand.h
99
AddCommand<Type>::~AddCommand()
src/apps/icon-o-matic/gui/StyleListView.cpp
476
AddCommand<Style>* command = new(std::nothrow) AddCommand<Style>(
src/apps/icon-o-matic/gui/StyleListView.cpp
534
AddCommand<Style>* command
src/apps/icon-o-matic/gui/StyleListView.cpp
535
= new (nothrow) AddCommand<Style>(fStyleContainer, styles, count, true, toIndex);
src/apps/icon-o-matic/shape/commands/AddPathsCommand.cpp
25
: AddCommand<VectorPath>(container, paths, count, ownsPaths, index)
src/apps/icon-o-matic/shape/commands/AddPathsCommand.h
24
class AddPathsCommand : public AddCommand<VectorPath> {
src/apps/icon-o-matic/shape/commands/AddShapesCommand.cpp
25
: AddCommand<Shape>(container, shapes, count, true, index)
src/apps/icon-o-matic/shape/commands/AddShapesCommand.h
24
class AddShapesCommand : public AddCommand<Shape> {
src/apps/icon-o-matic/shape/commands/AddTransformersCommand.cpp
25
: AddCommand<Transformer>(container, transformers, count, true, index)
src/apps/icon-o-matic/shape/commands/AddTransformersCommand.h
24
class AddTransformersCommand : public AddCommand<Transformer> {
src/apps/icon-o-matic/style/AddStylesCommand.cpp
24
: AddCommand<Style>(container, styles, count, true, index)
src/apps/icon-o-matic/style/AddStylesCommand.h
24
class AddStylesCommand : public AddCommand<Style> {
src/tools/bfs_shell/additional_commands.cpp
19
CommandManager::Default()->AddCommand(command_checkfs, "checkfs",
src/tools/bfs_shell/additional_commands.cpp
21
CommandManager::Default()->AddCommand(command_resizefs, "resizefs",
src/tools/fs_shell/fssh.cpp
208
AddCommand(new Command(function, name, description));
src/tools/fs_shell/fssh.cpp
220
AddCommand(function, name, description);
src/tools/fs_shell/fssh.h
57
void AddCommand(Command* command);
src/tools/fs_shell/fssh.h
58
void AddCommand(command_function* function,