JUCE is a cross-platform GUI library written in C++. It provides strong cross-platform support of GUI elements and audio, and can also be used to make audio plugins (VST, CoreAudio, RTAS). JUCE apps can be built for Windows, Mac OS X, Linux, iOS, and Android.

learn more… | top users | synonyms

0
votes
0answers
38 views

Which is better for parallel processing of upto 64 channels of data in a GUI application, Juce or Qt? [closed]

From what I've been told, Juce implements this using socket programming, which is out of date compared to Qt which uses semaphores and more modern techniques. Apologies for any inaccuracies in ...
0
votes
2answers
79 views

Connecting desktop app to online database via php

I've read a lot of posts on this general subject but I still can't seem to figure it out. I'm building a Mac/PC desktop application. When a user first authorizes the app, I want to store their info ...
0
votes
1answer
23 views

Loading a UTF-16 image into memory

I am trying to load an ID3 image tag that has been saved in UTF-16 JFIF format. The library I am using (Juce) fails to parse the image, as it assumes that the data is in a raw binary format. The ...
0
votes
1answer
44 views

c++ How to sort an Array in JUCE using ElementComparator Class

I have an Array , i want to sort this Array using ArrayName.sort(ElementComparator& comparator) , which is defined in JUCE Library, here is the link for the sort function : ...
0
votes
0answers
91 views

Where can i find JUCE (Jules Utility Class Extension) Tutorial . [closed]

I am a C++ developer, i am new to JUCE Library . I need help in finding some video tutorials for it. I am not getting in details about it anywhere. If anyone has some video tutorial or any interactuve ...
-3
votes
1answer
54 views

Error on std::cout [closed]

I'm writing some C++ code using JUCE which reads from a text file, then does some processing to produce MIDI data. There is a consistent point in the text file where the processor hangs (the issue ...
0
votes
1answer
110 views

Juce vst synth: cannot instantiate abstract class

I've generated source and project files for simple vst synth in Introjucer. The code compiles with one weird error: error C2259: 'SimpleSynthAudioProcessor' : cannot instantiate abstract class The ...
1
vote
0answers
29 views

Possible to tell if NSApplicationActivationPolicyProhibited application is active?

Using JUCE with TUIO, I'm developing a multi-touch utility to send "hot keys" commands to other applications (I am using a usb touch frame that sends TUIO messages). For instance, I provide an ...
1
vote
1answer
131 views

JUCE ios audio processing

Could you point me to any examples where JUCE library has been used process Audio in iOS. Thanks in advance. Regards, Waruna.
0
votes
1answer
35 views

How do i add the equality operator to ImageButton (JUCE)?

i have a few imagebuttons with their respective buttonListeners. on the buttonClicked function i try to: void TestComponent::buttonClicked (Button* activeButton) { if (activeButton == ...
1
vote
1answer
746 views

JUCE C++ - VST Plugin Creation

I've decided to join my two favorite things; vst plugins and c++. i want to make vsts in c++ so ive been reading up. I read that the JUCE library is better than using the steinberg sdk. My problem is ...
0
votes
1answer
892 views

Tutorial on how to host VST plugins using JUCE?

I would like to write some code to host VST plugins in my C++ application. It looks like the JUCE library may be helpful for this. Does anyone know where I can find a tutorial on how to host and ...
0
votes
1answer
274 views

glXMakeCurrent never returns in multiple multithreaded linux opengl applications

I am running 3 instances of a JUCE-based multithreaded OpenGL application on one machine - each of the instances is connected to a separate X display. The main application thread calls XInitThreads ...
0
votes
2answers
148 views

Implicit construction with default constructor in C++

I created a simple class to pass to the sort method of a Juce Array http://www.rawmaterialsoftware.com/api/classArray.html#ac1dca4ab2895315dd85e25eaca2fcab1 It looks like this: class XComparison { ...
1
vote
2answers
645 views

Getting started with JUCE for Android

I need to start building an Android app that uses the JUCE libraries. I'm reading the web site and trying to figure stuff out. I tried installing JUCE on an Ubuntu 11.04 system, and when I built the ...
3
votes
2answers
276 views

Detecting modifier keys held down during startup in OS/X (or Windows)?

I've searched here and not found any question that really covers this. I have a cross-platform Windows-OS/X application in which I'd like to be able to detect whether modifier keys like shift or ...
0
votes
2answers
166 views

How can I pass TIFF image data to JUCE (which does not support TIFF)?

I am using learning gui programming using c++ JUCE library. That library have supports for image file format(png, jpg). But I wants to learn how can I use other file format for example tiff. After ...
9
votes
2answers
2k views

Integrating OpenCV with larger programs

Can anyone recommend a how-to guide or provide a brief overview of what's involved with integrating OpenCV with larger GUI-based programs? What are the popular ways to do it? Particularly, processing ...
0
votes
2answers
363 views

VST host - Leaked objects - Juce/C++

I am a PHP programmer learning C++ as I build a VST host. I may have bitten off more than I can chew but I am making some progress (I think)! I'm using the Steinberg VST SDK and the JUCE library in ...
3
votes
4answers
628 views

C++ GUI Development - Bitmap vs. Vector Graphics CPU Usage

I'm currently in the process of designing and developing GUI's for some audio applications made in C++ (using the Juce framework). So far I've been playing with using bitmap graphics to create custom ...
0
votes
1answer
465 views

Compile issues with OpenCV and Juce on Xcode4.1 in 32bit on Lion

I'm trying to compile my VST Plugin with Xcode4.1 in 32Bit. I'm using the Juce Framework and integrated OpenCV 2.2 in it. I installed OpenCV with homebrew and this command: sudo brew install opencv ...
0
votes
1answer
127 views

How to avoid interfering namespace issues between the Juce Framework and OpenCV?

I created an Juce Audio-Plugin project with the introjucer and Xcode4. All works fine until I added #include <cv.h> into my code. I got 317 issues in the OpenCV files: core.hpp, operations.hpp, ...
2
votes
2answers
332 views

Lua pattern matching for extracting hard coded strings in code base

I'm working with a C++ code base. Right now I'm using a C++ code calling lua script to look through the entire code base and hopefully return a list of all of the strings which are used in the ...
0
votes
0answers
210 views

String Conversions

It's very difficult for me to explain what I am doing. Actually It's related with bit InDesign and Juce library. Actually I am making a plugin for InDesign. I have a string as WideString(InDesign UTF ...
1
vote
0answers
171 views

intercepting mouse events on FileBrowserComponent in Juce library

I recently begin to use Juce library. I usually post Juce related question on its forum, but I'm struggling with an issues from a lot of days, and I received still no answers. So stackoveflow does ...
0
votes
1answer
173 views

Adding a Library to your build and link path in XCode

I am tryingo to build a GUI application using the JUCE framework on MAC OSX. I have dowloaded all the API's and got a small hello World program running fine. However, when I add files to my Xcode ...
0
votes
1answer
143 views

addMouseListener doesn't work on juce::TreeView

I got no answer from the official forum of JUCE and I am trying to ask here and hope. Here is my problem: I want to register/hook a mouseDoubleClick event to juce::TreeView class or it's derivation. ...