The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.5KB

  1. /*
  2. ==============================================================================
  3. This is an automatically generated file created by the Jucer!
  4. Creation date: 1 May 2011 1:54:18pm
  5. Be careful when adding custom code to these files, as only the code within
  6. the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
  7. and re-saved.
  8. Jucer version: 1.12
  9. ------------------------------------------------------------------------------
  10. The Jucer is part of the JUCE library - "Jules' Utility Class Extensions"
  11. Copyright 2004-6 by Raw Material Software ltd.
  12. ==============================================================================
  13. */
  14. #ifndef __JUCER_HEADER_AUDIODEMOSETUPPAGE_AUDIODEMOSETUPPAGE_A3545895__
  15. #define __JUCER_HEADER_AUDIODEMOSETUPPAGE_AUDIODEMOSETUPPAGE_A3545895__
  16. //[Headers] -- You can add your own extra header files here --
  17. #include "../jucedemo_headers.h"
  18. //[/Headers]
  19. //==============================================================================
  20. /**
  21. //[Comments]
  22. An auto-generated component, created by the Jucer.
  23. Describe your class and how it works here!
  24. //[/Comments]
  25. */
  26. class AudioDemoSetupPage : public Component
  27. {
  28. public:
  29. //==============================================================================
  30. AudioDemoSetupPage (AudioDeviceManager& deviceManager_);
  31. ~AudioDemoSetupPage();
  32. //==============================================================================
  33. //[UserMethods] -- You can add your own custom methods in this section.
  34. //[/UserMethods]
  35. void paint (Graphics& g);
  36. void resized();
  37. //==============================================================================
  38. juce_UseDebuggingNewOperator
  39. private:
  40. //[UserVariables] -- You can add your own custom variables in this section.
  41. AudioDeviceManager& deviceManager;
  42. //[/UserVariables]
  43. //==============================================================================
  44. AudioDeviceSelectorComponent* deviceSelector;
  45. //==============================================================================
  46. // (prevent copy constructor and operator= being generated..)
  47. AudioDemoSetupPage (const AudioDemoSetupPage&);
  48. const AudioDemoSetupPage& operator= (const AudioDemoSetupPage&);
  49. };
  50. #endif // __JUCER_HEADER_AUDIODEMOSETUPPAGE_AUDIODEMOSETUPPAGE_A3545895__