/* ============================================================================== This file is part of the JUCE library - "Jules' Utility Class Extensions" Copyright 2004-11 by Raw Material Software Ltd. ------------------------------------------------------------------------------ JUCE can be redistributed and/or modified under the terms of the GNU General Public License (Version 2), as published by the Free Software Foundation. A copy of the license is included in the JUCE distribution, or can be found online at www.gnu.org/licenses. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. ------------------------------------------------------------------------------ To release a closed-source product which uses JUCE, commercial licenses are available: visit www.rawmaterialsoftware.com/juce for more information. ============================================================================== */ #ifndef __JUCER_JUCERDOCUMENTHOLDER_JUCEHEADER__ #define __JUCER_JUCERDOCUMENTHOLDER_JUCEHEADER__ #include "../jucer_JucerDocument.h" #include "jucer_ComponentLayoutEditor.h" #include "jucer_PaintRoutineEditor.h" #include "jucer_ComponentLayoutPanel.h" //============================================================================== /** */ class JucerDocumentEditor : public Component, public ApplicationCommandTarget, public ChangeListener { public: //============================================================================== JucerDocumentEditor (JucerDocument* const document); ~JucerDocumentEditor(); JucerDocument* getDocument() const noexcept { return document; } void refreshPropertiesPanel() const; void updateTabs(); void showLayout(); void showGraphics (PaintRoutine* routine); void setViewportToLastPos (Viewport* vp, EditingPanelBase& editor); void storeLastViewportPos (Viewport* vp, EditingPanelBase& editor); Image createComponentLayerSnapshot() const; //============================================================================== void paint (Graphics& g); void resized(); void changeListenerCallback (ChangeBroadcaster*); bool keyPressed (const KeyPress&); //============================================================================== ApplicationCommandTarget* getNextCommandTarget(); void getAllCommands (Array &); void getCommandInfo (CommandID commandID, ApplicationCommandInfo& result); bool perform (const InvocationInfo&); static JucerDocumentEditor* getActiveDocumentHolder(); private: ScopedPointer document; TabbedComponent tabbedComponent; ComponentLayoutPanel* compLayoutPanel; bool isSomethingSelected() const; int lastViewportX, lastViewportY; double currentZoomLevel; // only non-zero if a layout tab is selected ComponentLayout* getCurrentLayout() const; // only non-zero if a graphics tab is selected PaintRoutine* getCurrentPaintRoutine() const; void setZoom (double scale); double getZoom() const; void addElement (const int index); void addComponent (const int index); }; #endif // __JUCER_JUCERDOCUMENTHOLDER_JUCEHEADER__