Add stubs for the eventual command line interface.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43156 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Rene Gollent 2011-11-03 10:42:56 +00:00
parent 787740e0f9
commit 20616c59c1
3 changed files with 116 additions and 0 deletions

View File

@ -19,6 +19,7 @@ SEARCH_SOURCE += [ FDirName $(SUBDIR) settings generic ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) source_language ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) types ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) user_interface ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) user_interface cli ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) user_interface gui ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) user_interface gui inspector_window ] ;
SEARCH_SOURCE += [ FDirName $(SUBDIR) user_interface gui model ] ;
@ -171,6 +172,9 @@ Application Debugger :
# user_interface/gui
GraphicalUserInterface.cpp
# user_interface/cli
CommandLineUserInterface.cpp
# user_interface/gui/model
VariablesViewState.cpp
VariablesViewStateHistory.cpp

View File

@ -0,0 +1,73 @@
/*
* Copyright 2011, Rene Gollent, rene@gollent.com.
* Distributed under the terms of the MIT License.
*/
#include "CommandLineUserInterface.h"
CommandLineUserInterface::CommandLineUserInterface()
{
}
CommandLineUserInterface::~CommandLineUserInterface()
{
}
const char*
CommandLineUserInterface::ID() const
{
return "BasicCommandLineUserInterface";
}
status_t
CommandLineUserInterface::Init(Team* team, UserInterfaceListener* listener)
{
return B_UNSUPPORTED;
}
void
CommandLineUserInterface::Show()
{
}
void
CommandLineUserInterface::Terminate()
{
}
status_t
CommandLineUserInterface::LoadSettings(const TeamUISettings* settings)
{
return B_UNSUPPORTED;
}
status_t
CommandLineUserInterface::SaveSettings(TeamUISettings*& settings) const
{
return B_UNSUPPORTED;;
}
void
CommandLineUserInterface::NotifyUser(const char* title, const char* message,
user_notification_type type)
{
}
int32
CommandLineUserInterface::SynchronouslyAskUser(const char* title,
const char* message, const char* choice1, const char* choice2,
const char* choice3)
{
return 0;
}

View File

@ -0,0 +1,39 @@
/*
* Copyright 2011, Rene Gollent, rene@gollent.com.
* Distributed under the terms of the MIT License.
*/
#ifndef COMMAND_LINE_USER_INTERFACE_H
#define COMMAND_LINE_USER_INTERFACE_H
#include "UserInterface.h"
class CommandLineUserInterface : public UserInterface {
public:
CommandLineUserInterface();
virtual ~CommandLineUserInterface();
virtual const char* ID() const;
virtual status_t Init(Team* team,
UserInterfaceListener* listener);
virtual void Show();
virtual void Terminate();
// shut down the UI *now* -- no more user
// feedback
virtual status_t LoadSettings(const TeamUISettings* settings);
virtual status_t SaveSettings(TeamUISettings*& settings) const;
virtual void NotifyUser(const char* title,
const char* message,
user_notification_type type);
virtual int32 SynchronouslyAskUser(const char* title,
const char* message, const char* choice1,
const char* choice2, const char* choice3);
};
#endif // COMMAND_LINE_USER_INTERFACE_H