Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Builds/MacOSX/Plugins/CAR/CAR.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@
objects = {

/* Begin PBXBuildFile section */
E15DCF7A1CA0676B00332C3A /* CAREditor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E15DCF781CA0676B00332C3A /* CAREditor.cpp */; };
E1F558261C9B105C0035F88B /* CAR.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F558221C9B105C0035F88B /* CAR.cpp */; };
E1F558281C9B105C0035F88B /* OpenEphysLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F558251C9B105C0035F88B /* OpenEphysLib.cpp */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
E15DCF781CA0676B00332C3A /* CAREditor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAREditor.cpp; sourceTree = "<group>"; };
E15DCF791CA0676B00332C3A /* CAREditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAREditor.h; sourceTree = "<group>"; };
E1F558141C9B0FCA0035F88B /* CAR.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CAR.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
E1F558171C9B0FCA0035F88B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E1F5581E1C9B10190035F88B /* Plugin.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Plugin.xcconfig; sourceTree = "<group>"; };
Expand Down Expand Up @@ -75,6 +78,8 @@
children = (
E1F558231C9B105C0035F88B /* CAR.h */,
E1F558221C9B105C0035F88B /* CAR.cpp */,
E15DCF791CA0676B00332C3A /* CAREditor.h */,
E15DCF781CA0676B00332C3A /* CAREditor.cpp */,
E1F558251C9B105C0035F88B /* OpenEphysLib.cpp */,
);
name = Source;
Expand Down Expand Up @@ -148,6 +153,7 @@
buildActionMask = 2147483647;
files = (
E1F558281C9B105C0035F88B /* OpenEphysLib.cpp in Sources */,
E15DCF7A1CA0676B00332C3A /* CAREditor.cpp in Sources */,
E1F558261C9B105C0035F88B /* CAR.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
1 change: 1 addition & 0 deletions Source/Processors/Editors/ChannelSelector.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class PLUGIN_API ChannelSelector : public Component
class PLUGIN_API Listener
{
public:
virtual ~Listener() { }
virtual void channelSelectionChanged (int channel, bool newState) = 0;
};

Expand Down
4 changes: 2 additions & 2 deletions Source/UI/Utils/ButtonGroupManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ ButtonGroupManager::ButtonGroupManager()
: m_isRadioButtonMode (true)
, m_isShowDividers (true)
, m_selectedButtonIdx (0)
, m_currentButtonLineX (0.f)
, m_desiredButtonLineX (0.f)
, m_currentButtonLineX (0.f)
, m_animationStepX (0.f)
, m_buttonListener (nullptr)
, m_backgroundColour (Colour (0x0))
Expand Down Expand Up @@ -71,7 +71,7 @@ void ButtonGroupManager::paint (Graphics& g)

void ButtonGroupManager::paintOverChildren (Graphics& g)
{
const int width = getWidth();
//const int width = getWidth();
const int height = getHeight();

// Draw dividers between buttons
Expand Down