mirror of https://github.com/stella-emu/stella.git
Added skeleton classes for Driving and Keyboard widgets.
Updated the OSX project files for all new classes. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2346 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
5f0bfc2a9f
commit
666eb49bae
|
@ -0,0 +1,54 @@
|
|||
//============================================================================
|
||||
//
|
||||
// SSSS tt lll lll
|
||||
// SS SS tt ll ll
|
||||
// SS tttttt eeee ll ll aaaa
|
||||
// SSSS tt ee ee ll ll aa
|
||||
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
||||
// SS SS tt ee ll ll aa aa
|
||||
// SSSS ttt eeeee llll llll aaaaa
|
||||
//
|
||||
// Copyright (c) 1995-2012 by Bradford W. Mott, Stephen Anthony
|
||||
// and the Stella Team
|
||||
//
|
||||
// See the file "License.txt" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id$
|
||||
//============================================================================
|
||||
|
||||
#include "OSystem.hxx"
|
||||
#include "EventHandler.hxx"
|
||||
#include "DrivingWidget.hxx"
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
DrivingWidget::DrivingWidget(GuiObject* boss, const GUI::Font& font,
|
||||
int x, int y, Controller& controller)
|
||||
: ControllerWidget(boss, font, x, y, controller)
|
||||
{
|
||||
bool leftport = myController.jack() == Controller::Left;
|
||||
const string& label = leftport ? "Left (Driving):" : "Right (Driving):";
|
||||
|
||||
const int fontHeight = font.getFontHeight();
|
||||
int xpos = x, ypos = y, lwidth = font.getStringWidth("Right (Driving):");
|
||||
StaticTextWidget* t;
|
||||
|
||||
t = new StaticTextWidget(boss, font, xpos, ypos+2, lwidth,
|
||||
fontHeight, label, kTextAlignLeft);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
DrivingWidget::~DrivingWidget()
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void DrivingWidget::loadConfig()
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void DrivingWidget::handleCommand(
|
||||
CommandSender* sender, int cmd, int data, int id)
|
||||
{
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
//============================================================================
|
||||
//
|
||||
// SSSS tt lll lll
|
||||
// SS SS tt ll ll
|
||||
// SS tttttt eeee ll ll aaaa
|
||||
// SSSS tt ee ee ll ll aa
|
||||
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
||||
// SS SS tt ee ll ll aa aa
|
||||
// SSSS ttt eeeee llll llll aaaaa
|
||||
//
|
||||
// Copyright (c) 1995-2012 by Bradford W. Mott, Stephen Anthony
|
||||
// and the Stella Team
|
||||
//
|
||||
// See the file "License.txt" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id$
|
||||
//============================================================================
|
||||
|
||||
#ifndef DRIVING_WIDGET_HXX
|
||||
#define DRIVING_WIDGET_HXX
|
||||
|
||||
#include "Control.hxx"
|
||||
#include "Event.hxx"
|
||||
#include "ControllerWidget.hxx"
|
||||
|
||||
class DrivingWidget : public ControllerWidget
|
||||
{
|
||||
public:
|
||||
DrivingWidget(GuiObject* boss, const GUI::Font& font, int x, int y,
|
||||
Controller& controller);
|
||||
virtual ~DrivingWidget();
|
||||
|
||||
void loadConfig();
|
||||
void handleCommand(CommandSender* sender, int cmd, int data, int id);
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
#endif
|
|
@ -0,0 +1,54 @@
|
|||
//============================================================================
|
||||
//
|
||||
// SSSS tt lll lll
|
||||
// SS SS tt ll ll
|
||||
// SS tttttt eeee ll ll aaaa
|
||||
// SSSS tt ee ee ll ll aa
|
||||
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
||||
// SS SS tt ee ll ll aa aa
|
||||
// SSSS ttt eeeee llll llll aaaaa
|
||||
//
|
||||
// Copyright (c) 1995-2012 by Bradford W. Mott, Stephen Anthony
|
||||
// and the Stella Team
|
||||
//
|
||||
// See the file "License.txt" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id$
|
||||
//============================================================================
|
||||
|
||||
#include "OSystem.hxx"
|
||||
#include "EventHandler.hxx"
|
||||
#include "KeyboardWidget.hxx"
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
KeyboardWidget::KeyboardWidget(GuiObject* boss, const GUI::Font& font,
|
||||
int x, int y, Controller& controller)
|
||||
: ControllerWidget(boss, font, x, y, controller)
|
||||
{
|
||||
bool leftport = myController.jack() == Controller::Left;
|
||||
const string& label = leftport ? "Left (Keyboard):" : "Right (Keyboard):";
|
||||
|
||||
const int fontHeight = font.getFontHeight();
|
||||
int xpos = x, ypos = y, lwidth = font.getStringWidth("Right (Keyboard):");
|
||||
StaticTextWidget* t;
|
||||
|
||||
t = new StaticTextWidget(boss, font, xpos, ypos+2, lwidth,
|
||||
fontHeight, label, kTextAlignLeft);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
KeyboardWidget::~KeyboardWidget()
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void KeyboardWidget::loadConfig()
|
||||
{
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void KeyboardWidget::handleCommand(
|
||||
CommandSender* sender, int cmd, int data, int id)
|
||||
{
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
//============================================================================
|
||||
//
|
||||
// SSSS tt lll lll
|
||||
// SS SS tt ll ll
|
||||
// SS tttttt eeee ll ll aaaa
|
||||
// SSSS tt ee ee ll ll aa
|
||||
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
||||
// SS SS tt ee ll ll aa aa
|
||||
// SSSS ttt eeeee llll llll aaaaa
|
||||
//
|
||||
// Copyright (c) 1995-2012 by Bradford W. Mott, Stephen Anthony
|
||||
// and the Stella Team
|
||||
//
|
||||
// See the file "License.txt" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id$
|
||||
//============================================================================
|
||||
|
||||
#ifndef KEYBOARD_WIDGET_HXX
|
||||
#define KEYBOARD_WIDGET_HXX
|
||||
|
||||
#include "Control.hxx"
|
||||
#include "Event.hxx"
|
||||
#include "ControllerWidget.hxx"
|
||||
|
||||
class KeyboardWidget : public ControllerWidget
|
||||
{
|
||||
public:
|
||||
KeyboardWidget(GuiObject* boss, const GUI::Font& font, int x, int y,
|
||||
Controller& controller);
|
||||
virtual ~KeyboardWidget();
|
||||
|
||||
void loadConfig();
|
||||
void handleCommand(CommandSender* sender, int cmd, int data, int id);
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
#endif
|
|
@ -39,7 +39,8 @@ class NullControlWidget : public ControllerWidget
|
|||
<< controller.name() << "):";
|
||||
const int fontHeight = font.getFontHeight(),
|
||||
lineHeight = font.getLineHeight(),
|
||||
lwidth = font.getStringWidth(buf.str());
|
||||
lwidth = BSPF_max(font.getStringWidth(buf.str()),
|
||||
font.getStringWidth("Controller input"));
|
||||
new StaticTextWidget(boss, font, x, y+2, lwidth,
|
||||
fontHeight, buf.str(), kTextAlignLeft);
|
||||
new StaticTextWidget(boss, font, x, y+2+2*lineHeight, lwidth,
|
||||
|
|
|
@ -34,7 +34,9 @@
|
|||
#include "JoystickWidget.hxx"
|
||||
#include "PaddleWidget.hxx"
|
||||
#include "BoosterWidget.hxx"
|
||||
#include "DrivingWidget.hxx"
|
||||
#include "GenesisWidget.hxx"
|
||||
#include "KeyboardWidget.hxx"
|
||||
|
||||
#include "RiotWidget.hxx"
|
||||
|
||||
|
@ -401,8 +403,12 @@ ControllerWidget* RiotWidget::addControlWidget(GuiObject* boss, const GUI::Font&
|
|||
return new PaddleWidget(boss, font, x, y, controller);
|
||||
case Controller::BoosterGrip:
|
||||
return new BoosterWidget(boss, font, x, y, controller);
|
||||
case Controller::Driving:
|
||||
return new DrivingWidget(boss, font, x, y, controller);
|
||||
case Controller::Genesis:
|
||||
return new GenesisWidget(boss, font, x, y, controller);
|
||||
case Controller::Keyboard:
|
||||
return new KeyboardWidget(boss, font, x, y, controller);
|
||||
default:
|
||||
return new NullControlWidget(boss, font, x, y, controller);
|
||||
}
|
||||
|
|
|
@ -22,6 +22,8 @@ MODULE_OBJS := \
|
|||
src/debugger/gui/JoystickWidget.o \
|
||||
src/debugger/gui/PaddleWidget.o \
|
||||
src/debugger/gui/BoosterWidget.o \
|
||||
src/debugger/gui/DrivingWidget.o \
|
||||
src/debugger/gui/KeyboardWidget.o \
|
||||
src/debugger/gui/GenesisWidget.o
|
||||
|
||||
MODULE_DIRS += \
|
||||
|
|
|
@ -238,6 +238,20 @@
|
|||
DC07A3C90CAD738A009B4BC9 /* StateManager.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC07A3C70CAD738A009B4BC9 /* StateManager.hxx */; };
|
||||
DC0984850D3985160073C852 /* CartSB.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0984830D3985160073C852 /* CartSB.cxx */; };
|
||||
DC0984860D3985160073C852 /* CartSB.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0984840D3985160073C852 /* CartSB.hxx */; };
|
||||
DC0B000014BA2BEB00CF5E7E /* JoystickWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF214BA2BEB00CF5E7E /* JoystickWidget.cxx */; };
|
||||
DC0B000114BA2BEB00CF5E7E /* JoystickWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF314BA2BEB00CF5E7E /* JoystickWidget.hxx */; };
|
||||
DC0B000214BA2BEB00CF5E7E /* KeyboardWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF414BA2BEB00CF5E7E /* KeyboardWidget.cxx */; };
|
||||
DC0B000314BA2BEB00CF5E7E /* KeyboardWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF514BA2BEB00CF5E7E /* KeyboardWidget.hxx */; };
|
||||
DC0B000414BA2BEB00CF5E7E /* NullControlWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF614BA2BEB00CF5E7E /* NullControlWidget.hxx */; };
|
||||
DC0B000514BA2BEB00CF5E7E /* PaddleWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF714BA2BEB00CF5E7E /* PaddleWidget.cxx */; };
|
||||
DC0B000614BA2BEB00CF5E7E /* PaddleWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF814BA2BEB00CF5E7E /* PaddleWidget.hxx */; };
|
||||
DC0BFFF914BA2BEB00CF5E7E /* BoosterWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFEB14BA2BEB00CF5E7E /* BoosterWidget.cxx */; };
|
||||
DC0BFFFA14BA2BEB00CF5E7E /* BoosterWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFEC14BA2BEB00CF5E7E /* BoosterWidget.hxx */; };
|
||||
DC0BFFFB14BA2BEB00CF5E7E /* ControllerWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFED14BA2BEB00CF5E7E /* ControllerWidget.hxx */; };
|
||||
DC0BFFFC14BA2BEB00CF5E7E /* DrivingWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFEE14BA2BEB00CF5E7E /* DrivingWidget.cxx */; };
|
||||
DC0BFFFD14BA2BEB00CF5E7E /* DrivingWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFEF14BA2BEB00CF5E7E /* DrivingWidget.hxx */; };
|
||||
DC0BFFFE14BA2BEB00CF5E7E /* GenesisWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0BFFF014BA2BEB00CF5E7E /* GenesisWidget.cxx */; };
|
||||
DC0BFFFF14BA2BEB00CF5E7E /* GenesisWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0BFFF114BA2BEB00CF5E7E /* GenesisWidget.hxx */; };
|
||||
DC0DF8690F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC0DF8670F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx */; };
|
||||
DC0DF86A0F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DC0DF8680F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx */; };
|
||||
DC11F78D0DB36933003B505E /* MT24LC256.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DC11F78B0DB36933003B505E /* MT24LC256.cxx */; };
|
||||
|
@ -656,6 +670,20 @@
|
|||
DC07A3C70CAD738A009B4BC9 /* StateManager.hxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.h; name = StateManager.hxx; path = ../emucore/StateManager.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0984830D3985160073C852 /* CartSB.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CartSB.cxx; path = ../emucore/CartSB.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0984840D3985160073C852 /* CartSB.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = CartSB.hxx; path = ../emucore/CartSB.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFEB14BA2BEB00CF5E7E /* BoosterWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BoosterWidget.cxx; path = ../debugger/gui/BoosterWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFEC14BA2BEB00CF5E7E /* BoosterWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = BoosterWidget.hxx; path = ../debugger/gui/BoosterWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFED14BA2BEB00CF5E7E /* ControllerWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = ControllerWidget.hxx; path = ../debugger/gui/ControllerWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFEE14BA2BEB00CF5E7E /* DrivingWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DrivingWidget.cxx; path = ../debugger/gui/DrivingWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFEF14BA2BEB00CF5E7E /* DrivingWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = DrivingWidget.hxx; path = ../debugger/gui/DrivingWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF014BA2BEB00CF5E7E /* GenesisWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GenesisWidget.cxx; path = ../debugger/gui/GenesisWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF114BA2BEB00CF5E7E /* GenesisWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = GenesisWidget.hxx; path = ../debugger/gui/GenesisWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF214BA2BEB00CF5E7E /* JoystickWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JoystickWidget.cxx; path = ../debugger/gui/JoystickWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF314BA2BEB00CF5E7E /* JoystickWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = JoystickWidget.hxx; path = ../debugger/gui/JoystickWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF414BA2BEB00CF5E7E /* KeyboardWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = KeyboardWidget.cxx; path = ../debugger/gui/KeyboardWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF514BA2BEB00CF5E7E /* KeyboardWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = KeyboardWidget.hxx; path = ../debugger/gui/KeyboardWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF614BA2BEB00CF5E7E /* NullControlWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = NullControlWidget.hxx; path = ../debugger/gui/NullControlWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF714BA2BEB00CF5E7E /* PaddleWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = PaddleWidget.cxx; path = ../debugger/gui/PaddleWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0BFFF814BA2BEB00CF5E7E /* PaddleWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = PaddleWidget.hxx; path = ../debugger/gui/PaddleWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0DF8670F0DAAF500B0F1F3 /* GlobalPropsDialog.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalPropsDialog.cxx; path = ../gui/GlobalPropsDialog.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DC0DF8680F0DAAF500B0F1F3 /* GlobalPropsDialog.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = GlobalPropsDialog.hxx; path = ../gui/GlobalPropsDialog.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DC11F78B0DB36933003B505E /* MT24LC256.cxx */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = MT24LC256.cxx; path = ../emucore/MT24LC256.cxx; sourceTree = SOURCE_ROOT; };
|
||||
|
@ -909,8 +937,11 @@
|
|||
children = (
|
||||
2D23318F0900B5EF00613B1F /* AudioWidget.cxx */,
|
||||
2D2331900900B5EF00613B1F /* AudioWidget.hxx */,
|
||||
DC0BFFEB14BA2BEB00CF5E7E /* BoosterWidget.cxx */,
|
||||
DC0BFFEC14BA2BEB00CF5E7E /* BoosterWidget.hxx */,
|
||||
2D20F9E408C603EC00A73076 /* ColorWidget.cxx */,
|
||||
2D20F9E508C603EC00A73076 /* ColorWidget.hxx */,
|
||||
DC0BFFED14BA2BEB00CF5E7E /* ControllerWidget.hxx */,
|
||||
2D20F9E608C603EC00A73076 /* CpuWidget.cxx */,
|
||||
2D20F9E708C603EC00A73076 /* CpuWidget.hxx */,
|
||||
2D20F9E808C603EC00A73076 /* DataGridOpsWidget.cxx */,
|
||||
|
@ -919,6 +950,17 @@
|
|||
2D20F9EB08C603EC00A73076 /* DataGridWidget.hxx */,
|
||||
2D20F9EC08C603EC00A73076 /* DebuggerDialog.cxx */,
|
||||
2D20F9ED08C603EC00A73076 /* DebuggerDialog.hxx */,
|
||||
DC0BFFEE14BA2BEB00CF5E7E /* DrivingWidget.cxx */,
|
||||
DC0BFFEF14BA2BEB00CF5E7E /* DrivingWidget.hxx */,
|
||||
DC0BFFF014BA2BEB00CF5E7E /* GenesisWidget.cxx */,
|
||||
DC0BFFF114BA2BEB00CF5E7E /* GenesisWidget.hxx */,
|
||||
DC0BFFF214BA2BEB00CF5E7E /* JoystickWidget.cxx */,
|
||||
DC0BFFF314BA2BEB00CF5E7E /* JoystickWidget.hxx */,
|
||||
DC0BFFF414BA2BEB00CF5E7E /* KeyboardWidget.cxx */,
|
||||
DC0BFFF514BA2BEB00CF5E7E /* KeyboardWidget.hxx */,
|
||||
DC0BFFF614BA2BEB00CF5E7E /* NullControlWidget.hxx */,
|
||||
DC0BFFF714BA2BEB00CF5E7E /* PaddleWidget.cxx */,
|
||||
DC0BFFF814BA2BEB00CF5E7E /* PaddleWidget.hxx */,
|
||||
2D20F9EE08C603EC00A73076 /* PromptWidget.cxx */,
|
||||
2D20F9EF08C603EC00A73076 /* PromptWidget.hxx */,
|
||||
2D20F9F008C603EC00A73076 /* RamWidget.cxx */,
|
||||
|
@ -1514,6 +1556,14 @@
|
|||
DC3E4A6714B25EB30071D7BC /* CartCM.hxx in Headers */,
|
||||
DC3E4A6914B25EB30071D7BC /* CompuMate.hxx in Headers */,
|
||||
DC3E4A6B14B25EB30071D7BC /* MindLink.hxx in Headers */,
|
||||
DC0BFFFA14BA2BEB00CF5E7E /* BoosterWidget.hxx in Headers */,
|
||||
DC0BFFFB14BA2BEB00CF5E7E /* ControllerWidget.hxx in Headers */,
|
||||
DC0BFFFD14BA2BEB00CF5E7E /* DrivingWidget.hxx in Headers */,
|
||||
DC0BFFFF14BA2BEB00CF5E7E /* GenesisWidget.hxx in Headers */,
|
||||
DC0B000114BA2BEB00CF5E7E /* JoystickWidget.hxx in Headers */,
|
||||
DC0B000314BA2BEB00CF5E7E /* KeyboardWidget.hxx in Headers */,
|
||||
DC0B000414BA2BEB00CF5E7E /* NullControlWidget.hxx in Headers */,
|
||||
DC0B000614BA2BEB00CF5E7E /* PaddleWidget.hxx in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
@ -1777,6 +1827,12 @@
|
|||
DC3E4A6614B25EB30071D7BC /* CartCM.cxx in Sources */,
|
||||
DC3E4A6814B25EB30071D7BC /* CompuMate.cxx in Sources */,
|
||||
DC3E4A6A14B25EB30071D7BC /* MindLink.cxx in Sources */,
|
||||
DC0BFFF914BA2BEB00CF5E7E /* BoosterWidget.cxx in Sources */,
|
||||
DC0BFFFC14BA2BEB00CF5E7E /* DrivingWidget.cxx in Sources */,
|
||||
DC0BFFFE14BA2BEB00CF5E7E /* GenesisWidget.cxx in Sources */,
|
||||
DC0B000014BA2BEB00CF5E7E /* JoystickWidget.cxx in Sources */,
|
||||
DC0B000214BA2BEB00CF5E7E /* KeyboardWidget.cxx in Sources */,
|
||||
DC0B000514BA2BEB00CF5E7E /* PaddleWidget.cxx in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
|
@ -331,6 +331,12 @@
|
|||
DCCF4AD114B7E6C300814FAB /* BoosterWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCCF4ACE14B7E6C300814FAB /* BoosterWidget.cxx */; };
|
||||
DCCF4AD214B7E6C300814FAB /* BoosterWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCCF4ACF14B7E6C300814FAB /* BoosterWidget.hxx */; };
|
||||
DCCF4AD314B7E6C300814FAB /* NullControlWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCCF4AD014B7E6C300814FAB /* NullControlWidget.hxx */; };
|
||||
DCCF4ADC14B9433100814FAB /* GenesisWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCCF4ADA14B9433100814FAB /* GenesisWidget.cxx */; };
|
||||
DCCF4ADD14B9433100814FAB /* GenesisWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCCF4ADB14B9433100814FAB /* GenesisWidget.hxx */; };
|
||||
DCCF4B0214BA27EB00814FAB /* DrivingWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCCF4AFE14BA27EB00814FAB /* DrivingWidget.cxx */; };
|
||||
DCCF4B0314BA27EB00814FAB /* DrivingWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCCF4AFF14BA27EB00814FAB /* DrivingWidget.hxx */; };
|
||||
DCCF4B0414BA27EB00814FAB /* KeyboardWidget.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCCF4B0014BA27EB00814FAB /* KeyboardWidget.cxx */; };
|
||||
DCCF4B0514BA27EB00814FAB /* KeyboardWidget.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCCF4B0114BA27EB00814FAB /* KeyboardWidget.hxx */; };
|
||||
DCD2839812E39F1200A808DC /* Thumbulator.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCD2839612E39F1200A808DC /* Thumbulator.cxx */; };
|
||||
DCD2839912E39F1200A808DC /* Thumbulator.hxx in Headers */ = {isa = PBXBuildFile; fileRef = DCD2839712E39F1200A808DC /* Thumbulator.hxx */; };
|
||||
DCD3F7C511340AAF00DBA3AE /* Genesis.cxx in Sources */ = {isa = PBXBuildFile; fileRef = DCD3F7C311340AAF00DBA3AE /* Genesis.cxx */; };
|
||||
|
@ -757,6 +763,12 @@
|
|||
DCCF4ACE14B7E6C300814FAB /* BoosterWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = BoosterWidget.cxx; path = ../debugger/gui/BoosterWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4ACF14B7E6C300814FAB /* BoosterWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = BoosterWidget.hxx; path = ../debugger/gui/BoosterWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4AD014B7E6C300814FAB /* NullControlWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = NullControlWidget.hxx; path = ../debugger/gui/NullControlWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4ADA14B9433100814FAB /* GenesisWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = GenesisWidget.cxx; path = ../debugger/gui/GenesisWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4ADB14B9433100814FAB /* GenesisWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = GenesisWidget.hxx; path = ../debugger/gui/GenesisWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4AFE14BA27EB00814FAB /* DrivingWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = DrivingWidget.cxx; path = ../debugger/gui/DrivingWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4AFF14BA27EB00814FAB /* DrivingWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = DrivingWidget.hxx; path = ../debugger/gui/DrivingWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4B0014BA27EB00814FAB /* KeyboardWidget.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = KeyboardWidget.cxx; path = ../debugger/gui/KeyboardWidget.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DCCF4B0114BA27EB00814FAB /* KeyboardWidget.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = KeyboardWidget.hxx; path = ../debugger/gui/KeyboardWidget.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DCD2839612E39F1200A808DC /* Thumbulator.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Thumbulator.cxx; path = ../emucore/Thumbulator.cxx; sourceTree = SOURCE_ROOT; };
|
||||
DCD2839712E39F1200A808DC /* Thumbulator.hxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = Thumbulator.hxx; path = ../emucore/Thumbulator.hxx; sourceTree = SOURCE_ROOT; };
|
||||
DCD3F7C311340AAF00DBA3AE /* Genesis.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Genesis.cxx; path = ../emucore/Genesis.cxx; sourceTree = SOURCE_ROOT; };
|
||||
|
@ -935,8 +947,14 @@
|
|||
2D20F9EB08C603EC00A73076 /* DataGridWidget.hxx */,
|
||||
2D20F9EC08C603EC00A73076 /* DebuggerDialog.cxx */,
|
||||
2D20F9ED08C603EC00A73076 /* DebuggerDialog.hxx */,
|
||||
DCCF4AFE14BA27EB00814FAB /* DrivingWidget.cxx */,
|
||||
DCCF4AFF14BA27EB00814FAB /* DrivingWidget.hxx */,
|
||||
DCCF4ADA14B9433100814FAB /* GenesisWidget.cxx */,
|
||||
DCCF4ADB14B9433100814FAB /* GenesisWidget.hxx */,
|
||||
DCCF47DC14B60DEE00814FAB /* JoystickWidget.cxx */,
|
||||
DCCF47DD14B60DEE00814FAB /* JoystickWidget.hxx */,
|
||||
DCCF4B0014BA27EB00814FAB /* KeyboardWidget.cxx */,
|
||||
DCCF4B0114BA27EB00814FAB /* KeyboardWidget.hxx */,
|
||||
DCCF4AD014B7E6C300814FAB /* NullControlWidget.hxx */,
|
||||
DCCF49B514B7544A00814FAB /* PaddleWidget.cxx */,
|
||||
DCCF49B614B7544A00814FAB /* PaddleWidget.hxx */,
|
||||
|
@ -1540,6 +1558,9 @@
|
|||
DCCF49B814B7544A00814FAB /* PaddleWidget.hxx in Headers */,
|
||||
DCCF4AD214B7E6C300814FAB /* BoosterWidget.hxx in Headers */,
|
||||
DCCF4AD314B7E6C300814FAB /* NullControlWidget.hxx in Headers */,
|
||||
DCCF4ADD14B9433100814FAB /* GenesisWidget.hxx in Headers */,
|
||||
DCCF4B0314BA27EB00814FAB /* DrivingWidget.hxx in Headers */,
|
||||
DCCF4B0514BA27EB00814FAB /* KeyboardWidget.hxx in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
@ -1808,6 +1829,9 @@
|
|||
DCCF47DF14B60DEE00814FAB /* JoystickWidget.cxx in Sources */,
|
||||
DCCF49B714B7544A00814FAB /* PaddleWidget.cxx in Sources */,
|
||||
DCCF4AD114B7E6C300814FAB /* BoosterWidget.cxx in Sources */,
|
||||
DCCF4ADC14B9433100814FAB /* GenesisWidget.cxx in Sources */,
|
||||
DCCF4B0214BA27EB00814FAB /* DrivingWidget.cxx in Sources */,
|
||||
DCCF4B0414BA27EB00814FAB /* KeyboardWidget.cxx in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue