1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Reorganised some of the juce source tree folders. Added a new JUCE_DEPRECATED macro, and tested it by renaming Button::addButtonListener to Button::addListener for consistency with other widgets. Added Samplitude to the AudioHostType class. Fixed window maximising in win32.

This commit is contained in:
Julian Storer 2010-12-21 12:44:45 +00:00
parent c8799c9107
commit 7becff2aa4
169 changed files with 2140 additions and 2007 deletions

View file

@ -125,10 +125,10 @@ class PinComponent : public Component,
public:
PinComponent (FilterGraph& graph_,
const uint32 filterID_, const int index_, const bool isInput_)
: graph (graph_),
filterID (filterID_),
: filterID (filterID_),
index (index_),
isInput (isInput_)
isInput (isInput_),
graph (graph_)
{
const AudioProcessorGraph::Node::Ptr node (graph.getNodeForId (filterID_));
@ -155,10 +155,6 @@ public:
setSize (16, 16);
}
~PinComponent()
{
}
void paint (Graphics& g)
{
const float w = (float) getWidth();
@ -443,9 +439,9 @@ public:
private:
int pinSize;
Point<int> originalPos;
Font font;
int numIns, numOuts;
DropShadowEffect shadow;
Font font;
GraphEditorPanel* getGraphPanel() const throw()
{
@ -462,11 +458,11 @@ class ConnectorComponent : public Component,
{
public:
ConnectorComponent (FilterGraph& graph_)
: graph (graph_),
sourceFilterID (0),
: sourceFilterID (0),
destFilterID (0),
sourceFilterChannel (0),
destFilterChannel (0),
graph (graph_),
lastInputX (0),
lastInputY (0),
lastOutputX (0),