12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*
- ==============================================================================
- This is an automatically generated GUI class created by the Introjucer!
- Be careful when adding custom code to these files, as only the code within
- the "//[xyz]" and "//[/xyz]" sections will be retained when the file is loaded
- and re-saved.
- Created with Introjucer version: 3.1.0
- ------------------------------------------------------------------------------
- The Introjucer is part of the JUCE library - "Jules' Utility Class Extensions"
- Copyright 2004-13 by Raw Material Software Ltd.
- ==============================================================================
- */
- #ifndef _STATUSBAR_H_
- #define _STATUSBAR_H_
- //[Headers] -- You can add your own extra header files here --
- #include "JuceHeader.h"
- //[/Headers]
- //==============================================================================
- /**
- //[Comments]
- StatusBar is a sub-section of the main jam "screen"
- it displays state information such as current server, BPM, BPI
- //[/Comments]
- */
- class StatusBar : public Component
- {
- public:
- //==============================================================================
- StatusBar ();
- ~StatusBar();
- //==============================================================================
- //[UserMethods] -- You can add your own custom methods in this section.
- void setStatusL(String statusText) ;
- void setStatusR(String statusText) ;
- //[/UserMethods]
- void paint (Graphics& g);
- void resized();
- private:
- //[UserVariables] -- You can add your own custom variables in this section.
- //[/UserVariables]
- //==============================================================================
- ScopedPointer<Label> statusLLabel;
- ScopedPointer<Label> statusRLabel;
- //==============================================================================
- JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (StatusBar)
- };
- //[EndFile] You can add extra defines here...
- //[/EndFile]
- #endif // _STATUSBAR_H_
|