mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-20 18:32:17 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/UNSTABLE_0_5@22224 72102866-910b-0410-8b05-ffd578937521
73 lines
2.8 KiB
Text
73 lines
2.8 KiB
Text
PCAppController-\
|
|
| ----- PCProjectManager
|
|
PCMenuController/ | ||
|
|
| PCProject -> <ProjectType>
|
|
| |
|
|
| +- PCProjectInspector
|
|
| |
|
|
| +- PCProjectWindow
|
|
| |
|
|
| +- PCProjectBrowser
|
|
| |
|
|
| +- PCProjectLoadedFiles
|
|
| | |
|
|
| | +- PCProjectLoadedFilesPanel
|
|
| |
|
|
| +- PCProjectBuilder
|
|
| | |
|
|
| | +- PCProjectBuilderPanel
|
|
| |
|
|
| +- PCProjectLauncher
|
|
| | |
|
|
| | +- PCProjectLauncherPanel
|
|
| |
|
|
| +- PCProjectEditor -> <CodeEditor>
|
|
| | -> <CodeParser>
|
|
| |
|
|
| +- [*]PCProjectFinder
|
|
| |
|
|
| +- [*]PCProjectFinderPanel
|
|
|
|
|
+- PCFileManager
|
|
| |
|
|
| +- PCFileCreator
|
|
| |
|
|
| +- PCAddFilesPanel
|
|
|
|
|
+- PCMakefileFactory (Used by project type bundles)
|
|
|
|
|
+- PCBundleManager (loading of project types,editors,parsers)
|
|
|
|
---
|
|
[*] - not implemented
|
|
|
|
------------------------------
|
|
Other (controls, tools, etc.):
|
|
------------------------------
|
|
PCButton (ProjectWindow, ProjectBuilder, ProjectLauncher)
|
|
PCSplitView (ProjectWindow, ProjectBuilder, ProjectLauncher)
|
|
|
|
----------
|
|
THOUGHTS:
|
|
----------
|
|
- remember splitviews geometry on per project basis;
|
|
- try to incorporate CodeEditor approach
|
|
- implement PCProjectFinder and PCFindPanel GUI;
|
|
|
|
- "Edit" menu should be completely provided by Editor part;
|
|
- "Add Files" panel should provide selection of type and "Choose Folders"
|
|
and "Add Class", "Add Header" and so on checkbox;
|
|
- "New File in Project..." panel should provide "Create Header",
|
|
"Create Class" and so on checkbox.
|
|
- Add "Installable" or something to "Bundle" project type project attributes.
|
|
|
|
Localization:
|
|
~~~~~~~~~~~~~
|
|
- On project creation, all resources go to Resources subdir and placed into
|
|
GNUmakefile as *_RESOURCE_FILES; [DONE!]
|
|
- If some file from [PC*Proj localizableKeys] categories selected as
|
|
"Localizable Resource", that file removed from *_RESOURCE_FILES and placed
|
|
into *_LOCALIZED_RESOURCE_FILES (for directories: <Language>.lproj); []
|
|
- in PC.project add USER_LANGUAGES=(); [DONE!]
|
|
- in PC.project add LOCALIZED_RESOURCES=(); []
|
|
|