Home
last modified time | relevance | path

Searched refs:groove (Results 1 – 25 of 1979) sorted by relevance

12345678910>>...80

/dports/graphics/processing/processing-1.5.1/modes/java/libraries/minim/examples/UserDefinedEffect/
H A DUserDefinedEffect.pde13 AudioPlayer groove;
22 groove = minim.loadFile("groove.mp3", 2048);
23 groove.loop();
25 groove.addEffect(reffect);
33 for ( int i = 0; i < groove.bufferSize() - 1; i++ )
35 float x1 = map(i, 0, groove.bufferSize(), 0, width);
36 float x2 = map(i+1, 0, groove.bufferSize(), 0, width);
37 line(x1, height/4 - groove.left.get(i)*50, x2, height/4 - groove.left.get(i+1)*50);
38 line(x1, 3*height/4 - groove.right.get(i)*50, x2, 3*height/4 - groove.right.get(i+1)*50);
45 groove.close();
/dports/graphics/processing/processing-1.5.1/modes/java/libraries/minim/examples/BandPassFilter/
H A DBandPassFilter.pde14 AudioPlayer groove;
23 groove = minim.loadFile("groove.mp3");
24 groove.loop();
28 bpf = new BandPass(440, 20, groove.sampleRate());
29 groove.addEffect(bpf);
39 for(int i = 0; i < groove.right.size()-1; i++)
41 float x1 = map(i, 0, groove.bufferSize(), 0, width);
42 float x2 = map(i+1, 0, groove.bufferSize(), 0, width);
43 line(x1, height/4 - groove.left.get(i)*50, x2, height/4 - groove.left.get(i+1)*50);
44 line(x1, 3*height/4 - groove.right.get(i)*50, x2, 3*height/4 - groove.right.get(i+1)*50);
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/qt/styles/
H A Dseekstyle.cpp83 groove.adjust( handle.width() / 2, 0, -handle.width() / 2, 0 ); in drawComplexControl()
89 groove.adjust( 0, (qreal)groove.height() / 3.7, 0, (qreal)-groove.height() / 3.7 - 1 ); in drawComplexControl()
91 if ( ( slideroptions->subControls & SC_SliderGroove ) && groove.isValid() ) in drawComplexControl()
93 sliderPos = ( ( (qreal)groove.width() ) / (qreal)slideroptions->maximum ) in drawComplexControl()
104 QLinearGradient foregroundGradient( 0, 0, 0, groove.height() ); in drawComplexControl()
111 painter->drawRoundedRect( groove.adjusted( 0, 2, 0, 0 ), RADIUS, RADIUS ); in drawComplexControl()
116 painter->drawRoundedRect( groove, RADIUS, RADIUS ); in drawComplexControl()
119 QRect valueRect = groove.adjusted( 1, 1, -1, 0 ); in drawComplexControl()
133 int width = groove.width() - groove.width() / 6; in drawComplexControl()
145 QRect innerRect = groove.adjusted( 1, 1, in drawComplexControl()
[all …]
/dports/x11-toolkits/qt5-quickcontrols2/kde-qtquickcontrols2-5.15.2p8/src/imports/controls/fusion/
H A DSliderGroove.qml44 id: groove
66 color: Qt.darker(Fusion.grooveColor(groove.control.palette), 1.1)
70 color: Qt.lighter(Fusion.grooveColor(groove.control.palette), 1.1)
75 x: groove.control.horizontal ? groove.offset * parent.width : 0
76 y: groove.control.horizontal ? 0 : groove.visualProgress * parent.height
77 …width: groove.control.horizontal ? groove.progress * parent.width - groove.offset * parent.width :…
78 …height: groove.control.horizontal ? 5 : groove.progress * parent.height - groove.offset * parent.h…
81 border.color: Qt.darker(Fusion.highlightedOutline(groove.control.palette), 1.1)
86 color: Fusion.highlight(groove.control.palette)
90 color: Qt.lighter(Fusion.highlight(groove.control.palette), 1.2)
/dports/cad/sumo/sumo-1.2.0/src/utils/foxtools/
H A DFXSevenSegment.cpp392 groove = 2; in checkSize()
395 groove = 1; in checkSize()
397 if (groove >= st) { in checkSize()
446 x = sx + groove + hsl - st + groove; in drawSegments()
452 y = sy + groove + vsl - (st >> 1) + groove; in drawSegments()
457 y = sy + (groove << 1) + vsl + groove; in drawSegments()
461 x = sx + groove + hsl - st + groove; in drawSegments()
462 y = sy + (groove << 1) + vsl + groove; in drawSegments()
467 y = sy + (groove << 1) + vsl + groove + vsl + groove - st; in drawSegments()
575 store << groove; in save()
[all …]
/dports/games/wesnoth/wesnoth-1.14.17/src/widgets/
H A Dscrollbar.cpp287 SDL_Rect groove = groove_area(); in draw_contents() local
288 int groove_height = groove.h - top_grv->h - bottom_grv->h; in draw_contents()
302 if (grip.h > groove.h) { in draw_contents()
308 video().blit_surface(groove.x, groove.y, top_grv); in draw_contents()
309 video().blit_surface(groove.x, groove.y + top_grv->h, groove_scaled_); in draw_contents()
310 video().blit_surface(groove.x, groove.y + top_grv->h + groove_height, bottom_grv); in draw_contents()
327 const SDL_Rect& groove = groove_area(); in handle_event() local
342 bool on_groove = sdl::point_in_rect(e.x, e.y, groove); in handle_event()
353 int dep = y_dep * int(full_height_ - grip_height_)/ (groove.h - grip.h); in handle_event()
364 } else if (state_ == DRAGGED && groove.h != grip.h) { in handle_event()
[all …]
/dports/graphics/processing/processing-1.5.1/modes/java/libraries/minim/examples/AddListener/
H A DAddListener.pde8 …ode>AudioListener</code> interface and can therefore be added as a listener to <code>groove</code>.
14 AudioPlayer groove;
22 groove = minim.loadFile("groove.mp3", 512);
23 groove.loop();
25 groove.addListener(waveform);
38 groove.close();
/dports/multimedia/smplayer/smplayer-21.10.0/src/mpcgui/
H A Dmpcstyles.cpp98 QRect groove = subControlRect(CC_Slider, slider, SC_SliderGroove, widget); in drawComplexControl() local
101 if ((slider->subControls & SC_SliderGroove) && groove.isValid()) { in drawComplexControl()
106 QPoint(groove.x() , groove.y() + slider->rect.height() ), in drawComplexControl()
107 … QPoint(groove.x() + groove.width() -2 , groove.y() + slider->rect.height() ), in drawComplexControl()
108 QPoint(groove.x() + groove.width() -2 , groove.y() ), in drawComplexControl()
179 QRect groove = subControlRect(CC_Slider, slider, SC_SliderGroove, widget); in drawComplexControl() local
182 if ((slider->subControls & SC_SliderGroove) && groove.isValid()) { in drawComplexControl()
184 int x = groove.x() + 2; in drawComplexControl()
186 int w = groove.width() - 4; in drawComplexControl()
/dports/www/firefox-esr/firefox-91.8.0/gfx/wr/wrench/reftests/border/
H A Dborder-groove-simple.yaml11 style: [ groove, groove, groove, groove ]
H A Dborder-suite-2.yaml11 style: groove
18 style: groove
25 style: groove
32 style: groove
39 style: groove
46 style: groove
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/wr/wrench/reftests/border/
H A Dborder-groove-simple.yaml11 style: [ groove, groove, groove, groove ]
H A Dborder-suite-2.yaml11 style: groove
18 style: groove
25 style: groove
32 style: groove
39 style: groove
46 style: groove
/dports/www/firefox/firefox-99.0/gfx/wr/wrench/reftests/border/
H A Dborder-groove-simple.yaml11 style: [ groove, groove, groove, groove ]
H A Dborder-suite-2.yaml11 style: groove
18 style: groove
25 style: groove
32 style: groove
39 style: groove
46 style: groove
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/wr/wrench/reftests/border/
H A Dborder-groove-simple.yaml11 style: [ groove, groove, groove, groove ]
H A Dborder-suite-2.yaml11 style: groove
18 style: groove
25 style: groove
32 style: groove
39 style: groove
46 style: groove
/dports/audio/spotify-qt/spotify-qt-3.7/src/widget/
H A Dclickableslider.cpp24 auto groove = style()->subControlRect(QStyle::CC_Slider, &styleOption, in valueFromPos() local
36 sliderMin = groove.x(); in valueFromPos()
37 sliderMax = groove.right() - sliderLength + 1; in valueFromPos()
42 sliderMin = groove.y(); in valueFromPos()
43 sliderMax = groove.bottom() - sliderLength + 1; in valueFromPos()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/QtCollider/widgets/
H A DQcLevelIndicator.cpp69 float groove = vertical ? width() : height(); in paintEvent() local
85 groove -= 6; in paintEvent()
96 p.fillRect(QRectF(0, 0, groove, length), grooveColor()); in paintEvent()
99 r.setWidth(groove); in paintEvent()
116 p.drawLine(0.f, val, groove, val); in paintEvent()
174 p.drawLine(groove, v, width(), v); in paintEvent()
189 p.drawLine(groove, v, width(), v); in paintEvent()
191 p.drawLine(v, groove, v, height()); in paintEvent()
/dports/audio/xcd/xcd/
H A Dxcd.in51 button .$i -relief groove -bitmap @$bitmapdir/${i}_s.xbm -bg $bg -bd $bd;
53 button .$i -relief groove -bitmap @$bitmapdir/$i.xbm -bg $bg -bd $bd;
61 button .off -text quit -bd $bd -pady 0 -command "cmd quit 1" -relief groove;
64 button .track -text track -relief groove -font $smallfont;
66 button .track -text track -relief groove;
73 button .time -text time -relief groove -font $smallfont;
75 button .time -text time -relief groove;
/dports/mail/popfile/popfile-1.1.3_1/skins/outlook/
H A Dstyle.css13 border-style: groove;
43 border-style: groove groove none groove;
52 border-style: groove groove none groove;
146 border-style: groove;
167 border-style: groove;
324 border: 2px groove #FFFFFF;
/dports/mail/popfile/popfile-1.1.3_1/skins/simplyblue/
H A Dstyle.css43 border: 2px #ffffff groove;
89 border-style: groove groove none groove;
98 border-style: groove groove none groove;
195 border: 2px #ffffff groove;
/dports/emulators/bsvc/bsvc-2.4.6/src/M68k/devices/
H A DM68681.tcl65 frame .device.base -relief groove -borderwidth 2
73 -tickinterval 1 -relief groove -label "Offset to first register (MRxA):"
76 -tickinterval 1 -relief groove -label "Offset between registers:"
79 -tickinterval 1 -relief groove -label "Interrupt level:"
81 frame .device.portA -relief groove -borderwidth 2
91 frame .device.portB -relief groove -borderwidth 2
/dports/mail/thunderbird/thunderbird-91.8.0/comm/suite/themes/modern/global/
H A Dglobal.css203 /* ..... groove separators ..... */
205 separator.groove,
206 separator.groove[orient="horizontal"] {
214 separator.groove[orient="vertical"] {
220 /* ..... thin groove separators ..... */
222 separator.groove-thin {
223 border-top: 2px groove #D7D9E0;
227 separator[orient="vertical"].groove-thin {
228 border-left: 2px groove #D7D9E0;
/dports/graphics/processing/processing-1.5.1/modes/java/libraries/minim/examples/GetMetaData/
H A DGetMetaData.pde18 AudioPlayer groove;
26 groove = minim.loadFile("groove.mp3");
27 meta = groove.getMetaData();
61 groove.close();
/dports/x11-toolkits/gtk30/gtk+-3.24.31/demos/widget-factory/
H A Dwidget-factory.css14 frame.border-groove > border {
15 border-style: groove;
23 frame.border-groove > border,

12345678910>>...80