当前位置: 首页>>代码示例>>C++>>正文


C++ Graphics::fillAll方法代码示例

本文整理汇总了C++中juce::Graphics::fillAll方法的典型用法代码示例。如果您正苦于以下问题:C++ Graphics::fillAll方法的具体用法?C++ Graphics::fillAll怎么用?C++ Graphics::fillAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在juce::Graphics的用法示例。


在下文中一共展示了Graphics::fillAll方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: paint

//==============================================================================
void LufsPluginEditor::paint (juce::Graphics& g)
{
    DEBUGPLUGIN_output("LufsPluginEditor::paint");

    g.fillAll( LUFS_COLOR_BACKGROUND );

    juce::Font lufsFont( 36.f );
    lufsFont.setBold(true);
    g.setFont( lufsFont );
    g.setColour( LUFS_COLOR_FONT );

    int x = 10;
    const int width = 120;
    const int height = 60;
    g.setColour( COLOR_LUFSTIME );
    g.drawFittedText( juce::String( "LUFS" ), x, 10, width, 40, juce::Justification::centred, 1, 0.01f );
    x += width;

    juce::Font font( 18.f );
    font.setBold(true);
    g.setFont( font );

    g.setColour( COLOR_MOMENTARY );
    g.drawFittedText( juce::String( "Momentary" ), x, height, width, 20, juce::Justification::centred, 1, 0.01f );
    x += width;
    g.setColour( COLOR_SHORTTERM );
    g.drawFittedText( juce::String( "Short term" ), x, height, width, 20, juce::Justification::centred, 1, 0.01f );
    x += width;
    g.setColour( COLOR_INTEGRATED );
    g.drawFittedText( juce::String( "Integrated" ), x, height, width, 20, juce::Justification::centred, 1, 0.01f );
    x += width;
    g.setColour( COLOR_RANGE );
    g.drawFittedText( juce::String( "Range" ), x, height, width, 20, juce::Justification::centred, 1, 0.01f );
}
开发者ID:mpavageau,项目名称:MeasuringLUFS,代码行数:35,代码来源:LufsPluginEditor.cpp

示例2: paintListBoxItem

void InterfaceComponent::paintListBoxItem (const int rowNumber,
                                           juce::Graphics& g,
                                           const int width, const int height,
                                           const bool isRowSelected)
{
    if (isRowSelected)
    {
        g.fillAll (juce::Colours::white.darker());
        g.setColour (juce::Colours::white.darker().contrasting());
    }
    else
    {
        g.setColour (fileListBox.findColour (juce::ListBox::textColourId));
    }

    g.setFont (height * 0.7f);

    g.drawText (files[rowNumber],
                5, 0, width, height,
                juce::Justification::centredLeft, false);

    const float h = (float) height;
    const float w = (float) width;
    const float offset = 5.0f;
    const float thickness = 0.25f;

    g.setColour (juce::Colours::lightgrey);

    g.drawLine (offset, h - thickness,
                w - (offset * 2.0f), h - thickness,
                thickness);
}
开发者ID:jrlanglois,项目名称:FileModularizer,代码行数:32,代码来源:InterfaceComponent.cpp

示例3: paint

void OscOutputManagerHeaderComponent::paint(juce::Graphics &g)
{
	g.setColour( AddictLookAndFeel::getBackgroundColour() );
	g.fillAll();
	g.setColour( AddictLookAndFeel::getOutlineColour() );
	g.drawLine( 0.0f, float(getHeight()), float(getWidth()), float(getHeight()));
}
开发者ID:jorisdejong,项目名称:ColorAddict,代码行数:7,代码来源:OscOutputManagerComponent.cpp

示例4: drawLabel

void NTLookAndFeel::drawLabel(juce::Graphics &g, juce::Label &label){
    g.fillAll (label.findColour (Label::backgroundColourId));
    
    if (! label.isBeingEdited())
    {
        const float alpha = label.isEnabled() ? 1.0f : 0.5f;
        const Font font (getLabelFont (label));
        
        g.setColour (label.findColour (Label::textColourId).withMultipliedAlpha (alpha));
        g.setFont (font);
        
        Rectangle<int> textArea (label.getBorderSize().subtractedFrom (label.getLocalBounds()));
        
        g.drawFittedText (label.getText(), textArea, label.getJustificationType(),
                          jmax (1, (int) (textArea.getHeight() / font.getHeight())),
                          label.getMinimumHorizontalScale());
        
        g.setColour (label.findColour (Label::outlineColourId).withMultipliedAlpha (alpha));
    }
    else if (label.isEnabled())
    {
        g.setColour (label.findColour (Label::outlineColourId));
    }
    
    g.drawRect (label.getLocalBounds(),2);
}
开发者ID:Besegra-Mjolnir,项目名称:TopologyOptimization-1,代码行数:26,代码来源:NTLookAndFeel.cpp

示例5: paint

void CpuRegistersComponent::paint(juce::Graphics& g)
{
	g.fillAll(juce::Colours::white);

	g.setColour(juce::Colours::orange);
	g.drawRect(getLocalBounds(), 1);
}
开发者ID:idearcos,项目名称:super-jucy-boy,代码行数:7,代码来源:CpuRegistersComponent.cpp

示例6: drawButtonBackground

void NTLookAndFeel::drawButtonBackground(juce::Graphics &g, juce::Button &button, const juce::Colour &backgroundColour,
                                         bool isMouseOverButton, bool isButtonDown){
    
	if (isMouseOverButton && !isButtonDown) {

		g.fillAll(Colour{ uint8(240),uint8(240),uint8(240) });

	}
	else if (isMouseOverButton && isButtonDown) {

		g.fillAll(Colour{ uint8(225),uint8(225),uint8(225) });

	}
	else {
		g.fillAll(Colours::white);
	}
	g.setColour(Colours::lightgrey);
	g.drawRect(0, 0, button.getWidth(), button.getHeight(), 2);

    
}
开发者ID:Besegra-Mjolnir,项目名称:TopologyOptimization-1,代码行数:21,代码来源:NTLookAndFeel.cpp

示例7: paint

void MainComponent::paint (juce::Graphics& g)
{
    g.fillAll (juce::Colours::white);
    belle::JUCE::Properties JUCESpecificProperties;
    JUCESpecificProperties.GraphicsContext = &g;
    JUCESpecificProperties.ComponentContext = this;
    JUCESpecificProperties.IndexOfCanvas = 0;
    JUCESpecificProperties.PageDimensions = belle::Inches(8.5f, 11.f);
    JUCESpecificProperties.PageVisibility = belle::BoxInt(0, 0, getWidth(), getHeight());
    JUCESpecificProperties.PageArea = belle::BoxInt(0, 0, getWidth(), getHeight());
    score->Create<belle::JUCE>(JUCESpecificProperties);
}
开发者ID:burnson,项目名称:Belle,代码行数:12,代码来源:MainComponent.cpp

示例8: drawComboBox

void NTLookAndFeel::drawComboBox(juce::Graphics &g, int width, int height, bool isButtonDown, int buttonX, int buttonY, int buttonW, int buttonH, juce::ComboBox &box){
    g.fillAll (box.findColour (ComboBox::backgroundColourId));
    
    const Colour buttonColour (box.findColour (ComboBox::buttonColourId));
    g.setColour (Colours::lightgrey);
    g.drawRect (0, 0, width, height,2);

    
    Path p;

    
    
    int xEnd = (buttonX+buttonW) - buttonW/3;
    int midPointX = (buttonX + xEnd)/2.f;

    int yStart = buttonY + buttonH/3;
    int yEnd = (buttonY + buttonH ) - buttonH/3;
    p.addTriangle (buttonX, yStart,
                   xEnd ,yStart,
                   midPointX,yEnd);
    
    g.setColour (Colours::lightgrey);
    g.fillPath (p);
}
开发者ID:Besegra-Mjolnir,项目名称:TopologyOptimization-1,代码行数:24,代码来源:NTLookAndFeel.cpp

示例9: paint

void MainContentComponent::paint(juce::Graphics& g) { //-V2009 overridden method
  g.fillAll(juce::Colours::white);
}
开发者ID:Snaptags,项目名称:MIDI2LR,代码行数:3,代码来源:MainComponent.cpp

示例10: paint

//==============================================================================
void InterfaceComponent::paint (juce::Graphics& g)
{
    g.fillAll (juce::Colours::darkgrey);
}
开发者ID:jrlanglois,项目名称:FileModularizer,代码行数:5,代码来源:InterfaceComponent.cpp

示例11: paint

 void Main::paint(juce::Graphics &g)
 {
     g.fillAll(Colours::darkgrey);
 }
开发者ID:SonicZentropy,项目名称:ZynVerb,代码行数:4,代码来源:buffer_visualiser.cpp

示例12: paint

void Oscilloscope::paint(juce::Graphics &g)
{
    g.fillAll (Colours::white);
    
    Path path;
    
    float xOffset = 21.f;
    float yOffset = 120.f;
    
    Rectangle<float> rect = logoPath.getBounds();
    Rectangle<int> rect2 = getLocalBounds();
    
    g.setColour (Colours::black);
    g.fillPath (logoPath, RectanglePlacement (RectanglePlacement::stretchToFit)
                .getTransformToFit (logoPath.getBounds(),
                                    getLocalBounds().toFloat()));
    

    // Horizontal zero line.
    path.addLineSegment(Line<float> (xOffset, yOffset, getLocalBounds().getWidth() - xOffset, yOffset), 1.);
    
    g.setColour (Colours::lightgrey);
    g.fillPath (path);
    
    float xIncrement = (getLocalBounds().getWidth() - 2 * xOffset) / (UIConstants::NUMBER_SCOPE_POINTS - 1);
    
    // Now iterate over points.
    int count = 0;
    float alpha = 0;
    for (auto& points : allPoints)
    {
        if ((currentPointsIndex - count + UIConstants::NUMBER_SCOPE_BUFFERS) % UIConstants::NUMBER_SCOPE_BUFFERS == 0)
        {
            // Current array is 'brightest'
            alpha = 1;
        } else
        {
            // Set older immediately to less than 0.5 alpha.
            alpha = 0.3 - ((currentPointsIndex - count + UIConstants::NUMBER_SCOPE_BUFFERS) % UIConstants::NUMBER_SCOPE_BUFFERS) * 0.03 ;
        }
        
//        g.setColour(Colour::fromFloatRGBA(0, 255 , 0, alpha)) ;
        g.setColour(scopeTraceColour.withAlpha(alpha));
        path.clear();

        float x = 0;
        path.startNewSubPath(xOffset, yOffset);
        for (auto& point : points)
        {
//            g.setPixel(x + xOffset, yOffset - 30 * point.x); // point.x in this case is the right value of the stereo pair.
            path.lineTo(x + xOffset, yOffset - 30 * point.x);
            x += xIncrement;
        }
//        path.closeSubPath();
        g.strokePath (path, PathStrokeType (1.0f));
        count++;
        
    }

    
}
开发者ID:nashpal,项目名称:mastering-expert,代码行数:61,代码来源:Oscilloscope.cpp

示例13: paint

void ComponentChooser::paint(juce::Graphics& g)
{
    g.fillAll(Colour(255, 255, 255));
}
开发者ID:subutai-io,项目名称:launcher,代码行数:4,代码来源:ComponentChooser.cpp

示例14: paint

void WizardFinish::paint(juce::Graphics& g)
{
    g.fillAll(Colour(255, 255, 255));
}
开发者ID:subutai-io,项目名称:launcher,代码行数:4,代码来源:WizardFinish.cpp

示例15: paint

void WidgetsManager::paint(juce::Graphics& g) {
  g.fillAll(Colours::white);
}
开发者ID:G4m4,项目名称:openmini,代码行数:3,代码来源:WidgetsManager.cpp


注:本文中的juce::Graphics::fillAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。