| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*
- * PolycodeIDEApp.h
- * Polycode
- *
- * Created by Ivan Safrin on 11/29/10.
- * Copyright 2010 Local Projects. All rights reserved.
- *
- */
- #import "PolySubstanceView.h"
- #include "PolycodeGlobals.h"
- #include "PolycodeProjectManager.h"
- #include "PolycodeEditorManager.h"
- #include "Polycode.h"
- #include "PolyCocoaCore.h"
- #include "PolycodeUI.h"
- #include "PolycodeFrame.h"
- #include "PolycodeImageEditor.h"
- #include "PolycodeFontEditor.h"
- #include "PolycodeTextEditor.h"
- using namespace Polycode;
- class PolycodeIDEApp : public EventHandler {
- public:
- PolycodeIDEApp(SubstanceView *view);
- ~PolycodeIDEApp();
-
- void handleEvent(Event *event);
- bool Update();
-
- // menu commands
- void newProject();
- void openProject();
- void saveFile();
-
- protected:
- PolycodeFrame *frame;
- CocoaCore *core;
-
- PolycodeEditorManager *editorManager;
- PolycodeProjectManager *projectManager;
-
- };
|