本文整理汇总了C++中DropShadow::drawForImage方法的典型用法代码示例。如果您正苦于以下问题:C++ DropShadow::drawForImage方法的具体用法?C++ DropShadow::drawForImage怎么用?C++ DropShadow::drawForImage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DropShadow
的用法示例。
在下文中一共展示了DropShadow::drawForImage方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: applyEffect
void DropShadowEffect::applyEffect (Image& image, Graphics& g, float scaleFactor, float alpha)
{
DropShadow s (shadow);
s.radius = roundToInt (s.radius * scaleFactor);
s.colour = s.colour.withMultipliedAlpha (alpha);
s.offset.x = roundToInt (s.offset.x * scaleFactor);
s.offset.y = roundToInt (s.offset.y * scaleFactor);
s.drawForImage (g, image);
g.setOpacity (alpha);
g.drawImageAt (image, 0, 0);
}
示例2: paintBackground
void FullInterface::paintBackground(Graphics& g) {
static const DropShadow shadow(Colour(0xcc000000), 3, Point<int>(0, 1));
static const DropShadow logo_shadow(Colour(0xff000000), 8, Point<int>(0, 0));
static const DropShadow component_shadow(Colour(0xcc000000), 5, Point<int>(0, 1));
static Font roboto_reg(Typeface::createSystemTypefaceFor(BinaryData::RobotoRegular_ttf,
BinaryData::RobotoRegular_ttfSize));
static Font roboto_light(Typeface::createSystemTypefaceFor(BinaryData::RobotoLight_ttf,
BinaryData::RobotoLight_ttfSize));
static const Image helm_small = ImageCache::getFromMemory(BinaryData::helm_icon_32_2x_png,
BinaryData::helm_icon_32_2x_pngSize);
g.setColour(Colour(0xff212121));
g.fillRect(getLocalBounds());
shadow.drawForRectangle(g, arp_section_->getBounds());
shadow.drawForRectangle(g, global_tool_tip_->getBounds());
shadow.drawForRectangle(g, oscilloscope_->getBounds());
shadow.drawForRectangle(g, Rectangle<int>(92, 8, 244, TOP_HEIGHT));
shadow.drawForRectangle(g, Rectangle<int>(16, 8, 68, 64));
g.setColour(Colour(0xff303030));
g.fillRoundedRectangle(16.0f, 8.0f, 68.0f, 64.0f, 3.0f);
g.saveState();
g.setOrigin(18, 8);
logo_shadow.drawForImage(g, helm_small);
g.restoreState();
g.setColour(Colour(0xff303030));
g.fillRect(92, 8, 244, TOP_HEIGHT);
g.setColour(Colour(0xffbbbbbb));
g.setFont(roboto_reg.withPointHeight(10.0f));
g.drawText(TRANS("BPM"), patch_selector_->getX(), beats_per_minute_->getY(),
44, beats_per_minute_->getHeight(),
Justification::centred, false);
component_shadow.drawForRectangle(g, patch_selector_->getBounds());
paintKnobShadows(g);
}
示例3: paint
void AboutSection::paint(Graphics& g) {
static const DropShadow shadow(Colour(0xff000000), 5, Point<int>(0, 0));
g.setColour(Colour(0xbb212121));
g.fillAll();
Rectangle<int> info_rect = getInfoRect();
shadow.drawForRectangle(g, info_rect);
g.setColour(Colour(0xff303030));
g.fillRect(info_rect);
g.saveState();
g.setOrigin(info_rect.getX() + PADDING_X, info_rect.getY() + PADDING_Y);
Image helm_small = ImageCache::getFromMemory(BinaryData::helm_icon_128_1x_png,
BinaryData::helm_icon_128_1x_pngSize);
shadow.drawForImage(g, helm_small);
const Desktop::Displays::Display& display = Desktop::getInstance().getDisplays().getMainDisplay();
if (display.scale > 1.5) {
Image helm = ImageCache::getFromMemory(BinaryData::helm_icon_128_2x_png,
BinaryData::helm_icon_128_2x_pngSize);
g.drawImage(helm, 0, 0, 128, 128, 0, 0, 256, 256);
}
else
g.drawImage(helm_small, 0, 0, 128, 128, 0, 0, 128, 128);
g.setFont(Fonts::getInstance()->proportional_regular().withPointHeight(32.0));
g.setColour(Colour(0xff2196f3));
g.drawText(TRANS("HELM"),
0.0f, 0.0f,
info_rect.getWidth() - 2 * PADDING_X, 32.0f, Justification::centredTop);
g.setFont(Fonts::getInstance()->proportional_light().withPointHeight(12.0));
g.setColour(Colour(0xff666666));
g.drawText(TRANS("v") + " " + ProjectInfo::versionString,
0.0f, 36.0f,
info_rect.getWidth() - 2 * PADDING_X, 32.0f, Justification::centredTop);
g.setFont(Fonts::getInstance()->proportional_light().withPointHeight(12.0));
g.drawText(TRANS("Developed by"),
0.0f, 4.0f,
info_rect.getWidth() - 2 * PADDING_X, 20.0f, Justification::right);
g.setColour(Colour(0xffaaaaaa));
g.drawText(TRANS("Helm is free software and"),
0.0f, 62.0,
info_rect.getWidth() - 2 * PADDING_X, 20.0f, Justification::topRight);
g.drawText(TRANS("comes with no warranty"),
0.0f, 76.0f,
info_rect.getWidth() - 2 * PADDING_X, 20.0f, Justification::topRight);
g.setFont(Fonts::getInstance()->proportional_light().withPointHeight(12.0));
g.drawText(TRANS("Check for updates"),
0.0f, 141.0f,
info_rect.getWidth() - 2 * PADDING_X - 1.5 * BUTTON_WIDTH,
20.0f, Justification::topRight);
g.drawText(TRANS("Animate graphics"),
0.0f, 141.0f,
273.0f - PADDING_X - 0.5 * BUTTON_WIDTH,
20.0f, Justification::topRight);
g.restoreState();
}