Searched refs:Command (Results 1 - 25 of 91) sorted by relevance

1234

/haiku/src/apps/mediaplayer/support/
H A DCommand.cpp9 #include "Command.h"
16 Command::Command() function in class:Command
22 Command::~Command()
28 Command::InitCheck()
35 Command::Perform()
42 Command::Undo()
49 Command::Redo()
56 Command
[all...]
H A DCommand.h17 class Command { class
19 Command();
20 virtual ~Command();
30 virtual bool UndoesPrevious(const Command* previous);
31 virtual bool CombineWithNext(const Command* next);
32 virtual bool CombineWithPrevious(const Command* previous);
H A DCommandStack.h17 class Command;
24 status_t Perform(Command* command);
37 status_t _AddCommand(Command* command);
41 typedef std::stack<Command*> command_stack;
45 Command* fSavedCommand;
/haiku/src/apps/icon-o-matic/generic/command/
H A DCommand.cpp9 #include "Command.h"
16 Command::Command() function in class:Command
22 Command::~Command()
28 Command::InitCheck()
35 Command::Perform()
42 Command::Undo()
49 Command::Redo()
56 Command
[all...]
H A DCommand.h17 class Command { class
19 Command();
20 virtual ~Command();
30 virtual bool UndoesPrevious(const Command* previous);
31 virtual bool CombineWithNext(const Command* next);
32 virtual bool CombineWithPrevious(const Command* previous);
H A DCommandStack.h19 class Command;
27 status_t Perform(Command* command);
40 status_t _AddCommand(Command* command);
42 typedef std::stack<Command*> command_stack;
46 Command* fSavedCommand;
H A DCompoundCommand.h12 #include "Command.h"
14 class CompoundCommand : public Command {
16 CompoundCommand(Command** commands,
31 Command** fCommands;
/haiku/src/tools/fs_shell/
H A Dfssh.h28 // Command
29 class Command { class in namespace:FSShell
31 Command(const char* name,
33 Command(command_function* function,
35 virtual ~Command();
57 void AddCommand(Command* command);
63 Command* FindCommand(const char* name) const;
67 typedef std::map<std::string, Command*> CommandMap;
/haiku/src/bin/pkgman/
H A DCommand.cpp10 #include "Command.h"
17 compare_commands_by_name(const Command* a, const Command* b)
23 // #pragma mark - Command
26 Command::Command(const BString& name, const BString& shortUsage, function in class:Command
40 Command::~Command()
46 Command::Init(const char* programName)
54 Command
[all...]
H A DCommand.h18 class Command { class
20 Command(const BString& name,
24 virtual ~Command();
49 typedef BObjectList<Command> CommandList;
56 void RegisterCommand(Command* command);
84 struct className : Command { \
87 Command(name, shortUsage, longUsage, category) \
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DManipulator.h18 class Command;
32 virtual Command* MouseUp();
39 Command** _command);
43 Command** _command);
45 Command** _command);
H A DViewState.h15 class Command;
39 Command** _command);
49 virtual Command* MouseUp();
56 Command** _command);
58 Command** _command);
H A DManipulator.cpp51 Command*
81 Manipulator::MessageReceived(BMessage* message, Command** _command)
96 Manipulator::HandleKeyDown(uint32 key, uint32 modifiers, Command** _command)
103 Manipulator::HandleKeyUp(uint32 key, uint32 modifiers, Command** _command)
H A DMultipleManipulatorState.h29 Command** _command);
38 virtual Command* MouseUp();
43 Command** _command);
45 Command** _command);
H A DViewState.cpp64 ViewState::MessageReceived(BMessage* message, Command** _command)
84 Command*
100 ViewState::HandleKeyDown(uint32 key, uint32 modifiers, Command** _command)
107 ViewState::HandleKeyUp(uint32 key, uint32 modifiers, Command** _command)
/haiku/src/apps/icon-o-matic/style/
H A DSetColorCommand.h12 #include "Command.h"
25 class SetColorCommand : public Command {
38 virtual bool CombineWithNext(const Command* next);
H A DSetGradientCommand.h12 #include "Command.h"
24 class SetGradientCommand : public Command {
37 virtual bool CombineWithNext(const Command* next);
/haiku/src/apps/mediaplayer/playlist/
H A DPLItemsCommand.cpp21 Command()
H A DPLItemsCommand.h9 #include "Command.h"
14 class PLItemsCommand : public Command {
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.h58 class Command { class in namespace:IMAP
60 virtual ~Command();
67 class RawCommand : public Command {
78 class LoginCommand : public Command, public Handler {
95 class SelectCommand : public Command, public Handler {
114 class CapabilityHandler : public Command, public Handler {
126 class FetchMessageEntriesCommand : public Command, public Handler {
160 class FetchCommand : public Command, public Handler,
184 class SetFlagsCommand : public Command, public Handler {
240 class ExpungeCommand : public Command {
[all...]
H A DProtocol.h33 class Command;
38 typedef std::map<int32, Command*> CommandIDMap;
82 status_t ProcessCommand(Command& command,
91 status_t HandleResponse(Command* command,
/haiku/src/add-ons/translators/rtf/
H A DRTF.cpp112 } else if (RTF::Command *command = dynamic_cast<RTF::Command *>(&element)) {
113 printf("<Command: %s", command->Name());
188 parent->AddElement(element = new Command());
358 Command *
370 if (Command *command = dynamic_cast<Command *>(element)) {
389 Command *command = dynamic_cast<Command *>(group->ElementAt(0));
401 Command *comman
600 Command::Command() function in class:Command
838 Worker::Command(RTF::Command *command) function in class:Worker
[all...]
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformGradientBox.h48 Command* Perform();
49 Command* Cancel();
H A DResetTransformationCommand.h13 #include "Command.h"
24 class ResetTransformationCommand : public Command {
31 // Command interface
/haiku/src/apps/icon-o-matic/shape/commands/
H A DPathCommand.h12 #include "Command.h"
23 class PathCommand : public Command {

Completed in 68 milliseconds

1234