diff --git a/Documentation/CMakeLists.txt b/Documentation/CMakeLists.txt index 499a1b24f7..53acc94f47 100644 --- a/Documentation/CMakeLists.txt +++ b/Documentation/CMakeLists.txt @@ -1,227 +1,225 @@ # # Variables: # MITK_DOXYGEN_OUTPUT_DIR: doxygen output directory (optional) # Compile source code snippets #add_subdirectory(Snippets) find_package(Doxygen) if(DOXYGEN_FOUND) # Different doxygen versions produce significantly different behaviour in the MITK documentation # especially in regards to the MITK Qt assistant help files and markdown files. # The HTML documentation is supposed to be build with Doxygen 1.8.7 or newer, the # Qt assistant QCH files are supposed to be generated with Doxygen 1.8.7 or newer. # So we check for 1.8.7 here and QCH generation support is checked in # BlueBerry/CMakeLists.txt set(supported_doxygen_version "1.8.7") if(DOXYGEN_VERSION VERSION_LESS ${supported_doxygen_version}) MESSAGE(WARNING "Unsupported doxygen version ${DOXYGEN_VERSION}. The MITK HTML documentation has been tested to work with doxygen ${supported_doxygen_version} or newer.") endif() option(USE_DOT "Use dot program for generating graphical class diagrams with doxygen, if available" ON) option(MITK_DOXYGEN_BUILD_ALWAYS "Always build the MITK documentation when building the default target" OFF) option(MITK_DOXYGEN_GENERATE_QCH_FILES "Use doxygen to generate Qt compressed help files for MITK docs" OFF) mark_as_advanced(USE_DOT MITK_DOXYGEN_BUILD_ALWAYS MITK_DOXYGEN_GENERATE_QCH_FILES) if (MITK_DOXYGEN_GENERATE_QCH_FILES AND DOXYGEN_VERSION VERSION_LESS "1.8.7") message(WARNING "> Forcing MITK_DOXYGEN_GENERATE_QCH_FILES to OFF because Doxygen version 1.8.7 or newer not found.") set(MITK_DOXYGEN_GENERATE_QCH_FILES OFF CACHE BOOL "Use doxygen to generate Qt compressed help files for MITK docs" FORCE) endif() set(HAVE_DOT "NO") if(DOXYGEN_DOT_EXECUTABLE AND USE_DOT) set(HAVE_DOT "YES") endif() set(MITK_DOXYGEN_TAGFILE_NAME ${MITK_DOXYGEN_OUTPUT_DIR}/MITK.tag CACHE INTERNAL "MITK Doxygen tag file") # This is relative to the working directory of the doxygen command set(MITK_DOXYGEN_STYLESHEET mitk_doxygen_extra.css) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/${MITK_DOXYGEN_STYLESHEET} ${CMAKE_CURRENT_BINARY_DIR}/${MITK_DOXYGEN_STYLESHEET} @COPYONLY) # Create QCH files for MITK and external projects set(MITK_DOXYGEN_GENERATE_QHP "NO") if(MITK_DOXYGEN_GENERATE_QCH_FILES) find_program(QT_HELPGENERATOR_EXECUTABLE NAMES qhelpgenerator qhelpgenerator-qt4 qhelpgenerator4 PATHS ${QT_BINARY_DIR} DOC "The location of the the Qt help generator executable" NO_DEFAULT_PATH ) mark_as_advanced(QT_HELPGENERATOR_EXECUTABLE) if(NOT QT_HELPGENERATOR_EXECUTABLE) message(SEND_ERROR "The Qt help generator could not be found. Disabling qch generation") else() set(MITK_DOXYGEN_GENERATE_QHP "YES") endif() # The name of the generated MITK qch file, relative to the # Doxygen HTML output folder set(MITK_DOXYGEN_QCH_FILE "${MITK_BINARY_DIR}/MITK-${MITK_REVISION_ID}.qch") # Generating ITK and VTK docs it not done yet #option(MITK_DOXYGEN_GENERATE_VTK_QCH_FILE "Use doxygen to generate a Qt compressed help file for VTK docs" OFF) #option(MITK_DOXYGEN_GENERATE_ITK_QCH_FILE "Use doxygen to generate a Qt compressed help file for ITK docs" OFF) #mark_as_advanced(MITK_DOXYGEN_GENERATE_VTK_QCH_FILE MITK_DOXYGEN_GENERATE_ITK_QCH_FILE) endif() if(MITK_USE_BLUEBERRY) file(RELATIVE_PATH _blueberry_doxygen_path ${MITK_DOXYGEN_OUTPUT_DIR}/html ${BLUEBERRY_DOXYGEN_OUTPUT_DIR}/html) set(BLUEBERRY_DOXYGEN_TAGFILE "${BLUEBERRY_DOXYGEN_TAGFILE_NAME}=${_blueberry_doxygen_path}") set(BLUEBERRY_DOXYGEN_LINK "BlueBerry Documentation") set(MITK_XP_LINK "\\ref mitkExtPointsIndex") configure_file(schema.css ${MITK_DOXYGEN_OUTPUT_DIR}/html/schema.css) set(MITK_DOXYGEN_ENABLED_SECTIONS "${MITK_DOXYGEN_ENABLED_SECTIONS} BLUEBERRY") endif(MITK_USE_BLUEBERRY) # Compile a doxygen input filter for processing CMake scripts include(mitkFunctionCMakeDoxygenFilterCompile) mitkFunctionCMakeDoxygenFilterCompile(NAMESPACE "CMake") # Configure some doxygen options if(NOT MITK_DOXYGEN_INTERNAL_DOCS) set(MITK_DOXYGEN_INTERNAL_DOCS "NO") set(MITK_DOXYGEN_HIDE_FRIEND_COMPOUNDS "YES") set(MITK_DOXYGEN_EXCLUDE_PATTERNS "*_p.* *Private.h */internal/*") else() set(MITK_DOXYGEN_HIDE_FRIEND_COMPOUNDS "NO") set(MITK_DOXYGEN_EXCLUDE_PATTERNS "") endif() if(NOT MITK_DOXYGEN_GENERATE_TODOLIST) set(MITK_DOXYGEN_GENERATE_TODOLIST "NO") endif() if(NOT MITK_DOXYGEN_GENERATE_BUGLIST) set(MITK_DOXYGEN_GENERATE_BUGLIST "NO") endif() if(NOT MITK_DOXYGEN_HTML_DYNAMIC_SECTIONS) set(MITK_DOXYGEN_HTML_DYNAMIC_SECTIONS "NO") endif() if(NOT MITK_DOXYGEN_UML_LOOK) set(MITK_DOXYGEN_UML_LOOK "NO") endif() if(NOT MITK_DOXYGEN_GENERATE_DEPRECATEDLIST) set(MITK_DOXYGEN_GENERATE_DEPRECATEDLIST "YES") endif() if(NOT DEFINED MITK_DOXYGEN_DOT_NUM_THREADS) set(MITK_DOXYGEN_DOT_NUM_THREADS 0) endif() # parse which plug-in documentation to activate set(USERS_GUIDE_INPUT "${MITK_SOURCE_DIR}/Documentation/Doxygen/UserManual/") if(MITK_USE_BLUEBERRY) if(MITK_BUILD_ALL_PLUGINS) set(USERS_GUIDE_INPUT "${USERS_GUIDE_INPUT} \\ ${MITK_SOURCE_DIR}/Plugins/") else() foreach(mitk_plugin ${${CMAKE_PROJECT_NAME}_PLUGIN_LIBRARIES}) # we want each line to end in " \" and each directory be on a separate line set(USERS_GUIDE_INPUT "${USERS_GUIDE_INPUT} \\ ${${mitk_plugin}_SOURCE_DIR}/") endforeach() endif() if(MITK_BUILD_EXAMPLES) set(USERS_GUIDE_INPUT "${USERS_GUIDE_INPUT} \\ ${MITK_SOURCE_DIR}/Examples/Plugins/") endif() endif() # create output directories for the guides file(MAKE_DIRECTORY ${MITK_DOXYGEN_OUTPUT_DIR}/Guides/Users_Guide/) file(MAKE_DIRECTORY ${MITK_DOXYGEN_OUTPUT_DIR}/Guides/Developers_Guide/) -configure_file(Doxygen/MainPage.dox.in - ${CMAKE_CURRENT_BINARY_DIR}/Doxygen/MainPage.dox) configure_file(doxygen.conf.in ${CMAKE_CURRENT_BINARY_DIR}/doxygen.conf) configure_file(doxygen_users_guide.conf.in ${CMAKE_CURRENT_BINARY_DIR}/doxygen_users_guide.conf) configure_file(doxygen_developers_guide.conf.in ${CMAKE_CURRENT_BINARY_DIR}/doxygen_developers_guide.conf) if(MITK_DOXYGEN_BUILD_ALWAYS) set(_doc_in_all "ALL") else() set(_doc_in_all "") endif() add_custom_target(doc ${_doc_in_all} ${DOXYGEN} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.conf WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) add_custom_target(doc_usersguide ${DOXYGEN} ${CMAKE_CURRENT_BINARY_DIR}/doxygen_users_guide.conf WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) add_custom_target(doc_developersguide ${DOXYGEN} ${CMAKE_CURRENT_BINARY_DIR}/doxygen_developers_guide.conf WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) if(MITK_USE_BLUEBERRY) # convert the extension points schema files into html find_package(Ant) if(ANT_FOUND AND BLUEBERRY_DOC_TOOLS_DIR) list(APPEND MITK_XP_GLOB_EXPRESSIONS ${MITK_SOURCE_DIR}/Plugins/plugin.xml) file(GLOB_RECURSE _plugin_xmls ${MITK_XP_GLOB_EXPRESSIONS}) MACRO_CONVERT_SCHEMA(INPUT ${_plugin_xmls} OUTPUT_DIR "${MITK_DOXYGEN_OUTPUT_DIR}/html/extension-points/html" TARGET_NAME mitkXPDoc ) add_dependencies(doc mitkXPDoc BlueBerryXPDoc) #if(${PROJECT_NAME} STREQUAL "MITK") # add_dependencies(doc BlueBerryDoc) #endif() endif(ANT_FOUND AND BLUEBERRY_DOC_TOOLS_DIR) endif(MITK_USE_BLUEBERRY) #if(MITK_DOXYGEN_GENERATE_ITK_QCH_FILE) # # add the command to generate the ITK documantation # add_custom_target(doc-itk # COMMAND ${DOXYGEN} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.itk.conf) # add_dependencies(doc doc-itk) #endif() #if(MITK_DOXYGEN_GENERATE_VTK_QCH_FILE) # # add the command to generate the VTK documantation # add_custom_target(doc-vtk # COMMAND ${DOXYGEN} ${CMAKE_CURRENT_BINARY_DIR}/doxygen.vtk.conf) # add_dependencies(doc doc-vtk) #endif() else(DOXYGEN_FOUND) # copy blank documentation page to prevent QtHelp from being shown # copy the .qhc and .qch files to $MITK_BIN/mitk/bin/ExtBundles/resources/ configure_file(pregenerated/MITKBlankPage.qch ${MITK_BINARY_DIR}/bin/ExtBundles/org.mitk.gui.qt.extapplication/resources/MITKBlankPage.qch COPYONLY) configure_file(pregenerated/MitkExtQtHelpCollection.qhc ${MITK_BINARY_DIR}/bin/ExtBundles/org.mitk.gui.qt.extapplication/resources/MitkExtQtHelpCollection.qhc COPYONLY) endif(DOXYGEN_FOUND) diff --git a/Documentation/Doxygen/Overview/Overview.dox b/Documentation/Doxygen/1-Overview/Overview.dox similarity index 98% rename from Documentation/Doxygen/Overview/Overview.dox rename to Documentation/Doxygen/1-Overview/Overview.dox index ec52fcf2ea..dffa52def6 100644 --- a/Documentation/Doxygen/Overview/Overview.dox +++ b/Documentation/Doxygen/1-Overview/Overview.dox @@ -1,31 +1,32 @@ /** \page Overview An Overview +\ingroup index The Medical Imaging Interaction Toolkit (MITK) is a powerful application and can also be used as either a framework or a toolkiit for Software development. The following options are the most common usage scenarios. I want to use MITK as an application You will use the MITK Workbench as an end user and will find user manuals in \ref UserManualPortal and \ref PluginListPage. I want to develop my own software framework, and use some of MITK's data structures and algorithms You will use MITK as a toolkit and probably benefit most from the \ref BuildInstructionsPage and MITK API Documentation. I want to use the MITK and BlueBerry software framework to develop my own software Here you have again two options. I want use the MITK Workbench and extend its capabilities You are using MITK as software framework and writing your own modules and plugins for MITK. You want to read the \ref BuildInstructionsPage and further on \ref Development. Also you might want to take a look at our \ref CMAKE_FAQ. I want to create my own application based on MITK This is probably the most common way to use MITK. You are using MITK as software framework and building your own project and application using MITK. You want to read \ref HowToNewProject and the general information in \ref Development. Also you might want to take a look at our \ref CMAKE_FAQ. */ diff --git a/Documentation/Doxygen/UserManual/Applications.dox b/Documentation/Doxygen/2-UserManual/Applications.dox similarity index 99% rename from Documentation/Doxygen/UserManual/Applications.dox rename to Documentation/Doxygen/2-UserManual/Applications.dox index cba372ea38..6ffd3c0af2 100644 --- a/Documentation/Doxygen/UserManual/Applications.dox +++ b/Documentation/Doxygen/2-UserManual/Applications.dox @@ -1,33 +1,33 @@ /** \page ApplicationsPage Using MITK and Applications \tableofcontents \section ApplicationsPageApplications What are Applications? Applications are special versions of MITK which contain functionality aimed at solving a special task. Usually they are aimed at a selective audience or solving a particular problem. As such they focus on certain capabilities of MITK, while ignoring others. The main reason for this is to supply the users of the application with the power of MITK for solving their tasks, without daunting them with an overwhelming number of menus and options. At the same time, this allows the creation of an elegant and easily comprehensible workflow for your task. The Diffusion Imaging Application for example contains all the functionality necessary for the field of neuro-imaging, but does not contain support for ultrasound imaging. A typical example of this would be an application which contains only views related to the analysis of the human brain (particular question) or one which contains only what is necessary for displaying medical data in the classroom (specific audience). \section ApplicationsPageWhatAmIUsing Which Application am I using? If you are unsure which application you are currently using, start the application and have a look in the Title Bar. You should see it's name there. - + \imageMacro{ApplicationTitle.jpg,"The application name is displayed in the title bar",16} - + \section ApplicationsPageApplicationsList List of Applications If you are interested in using a specific application, currently developed by the MITK team you might want to take a look first at the \ref MITKUserManualPage . Further information on any application can be found here: */ \ No newline at end of file diff --git a/Documentation/Doxygen/UserManual/MITKPerspectiveManualsList.dox b/Documentation/Doxygen/2-UserManual/MITKPerspectiveManualsList.dox similarity index 92% rename from Documentation/Doxygen/UserManual/MITKPerspectiveManualsList.dox rename to Documentation/Doxygen/2-UserManual/MITKPerspectiveManualsList.dox index 66aea15350..c4750e9113 100644 --- a/Documentation/Doxygen/UserManual/MITKPerspectiveManualsList.dox +++ b/Documentation/Doxygen/2-UserManual/MITKPerspectiveManualsList.dox @@ -1,12 +1,12 @@ /** \page PerspectiveListPage MITK Perspective Manuals \section PerspectiveListPageOverview Overview -Perspectives provide a selection of plugins and settings which synergize well in order to solve certain problems. This can include placement of views as well in order to create an environment suited to solve the problem at hand. +Perspectives provide a selection of plugins and settings which synergize well in order to solve certain problems. This can include placement of views as well in order to create an environment suited to solve the problem at hand. \section PerspectiveListPagePerspectiveList List of Perspectives \li \subpage org_mitk_gui_qt_extapplication_perspectives_visualizations */ diff --git a/Documentation/Doxygen/UserManual/MITKPluginManualsList.dox b/Documentation/Doxygen/2-UserManual/MITKPluginManualsList.dox similarity index 100% rename from Documentation/Doxygen/UserManual/MITKPluginManualsList.dox rename to Documentation/Doxygen/2-UserManual/MITKPluginManualsList.dox diff --git a/Documentation/Doxygen/UserManual/MiniApps.dox b/Documentation/Doxygen/2-UserManual/MiniApps.dox similarity index 100% rename from Documentation/Doxygen/UserManual/MiniApps.dox rename to Documentation/Doxygen/2-UserManual/MiniApps.dox diff --git a/Documentation/Doxygen/UserManual/UserManualPortal.dox b/Documentation/Doxygen/2-UserManual/UserManualPortal.dox similarity index 100% rename from Documentation/Doxygen/UserManual/UserManualPortal.dox rename to Documentation/Doxygen/2-UserManual/UserManualPortal.dox diff --git a/Documentation/Doxygen/UserManual/images/ApplicationTitle.jpg b/Documentation/Doxygen/2-UserManual/images/ApplicationTitle.jpg similarity index 100% rename from Documentation/Doxygen/UserManual/images/ApplicationTitle.jpg rename to Documentation/Doxygen/2-UserManual/images/ApplicationTitle.jpg diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryExampleLauncherDialog.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryExampleLauncherDialog.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryExampleLauncherDialog.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryExampleLauncherDialog.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryExamples.dox b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryExamples.dox similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryExamples.dox rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryExamples.dox diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryExtensionPointsIntro.dox b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryExtensionPointsIntro.dox similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryExtensionPointsIntro.dox rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryExtensionPointsIntro.dox diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryIntro.dox b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryIntro.dox similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerryIntro.dox rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerryIntro.dox diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerrySelectionServiceIntro.dox b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerrySelectionServiceIntro.dox similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/BlueBerrySelectionServiceIntro.dox rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/BlueBerrySelectionServiceIntro.dox diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/ExtensionPointEx.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/ExtensionPointEx.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/ExtensionPointEx.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/ExtensionPointEx.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/ExtensionPoints.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/ExtensionPoints.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/ExtensionPoints.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/ExtensionPoints.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/MitkSelectionService.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/MitkSelectionService.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/MitkSelectionService.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/MitkSelectionService.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.xcf b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.xcf similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.xcf rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/SelectionServiceDiagram.xcf diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/application-window.jpg b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/application-window.jpg similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/application-window.jpg rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/application-window.jpg diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-class-diagram.jpg b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-class-diagram.jpg similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-class-diagram.jpg rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-class-diagram.jpg diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-page.jpg b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-page.jpg similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-page.jpg rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-page.jpg diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-editor-area.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-editor-area.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-editor-area.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-editor-area.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-editor-area.xcf b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-editor-area.xcf similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-editor-area.xcf rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-editor-area.xcf diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-perspective.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-perspective.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-perspective.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-perspective.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-perspective.xcf b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-perspective.xcf similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-perspective.xcf rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-perspective.xcf diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-views.png b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-views.png similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-views.png rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-views.png diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-views.xcf b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-views.xcf similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window-views.xcf rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window-views.xcf diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window.jpg b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window.jpg similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench-window.jpg rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench-window.jpg diff --git a/Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench.jpg b/Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench.jpg similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/BlueBerry/workbench.jpg rename to Documentation/Doxygen/3-DeveloperManual/Application/BlueBerry/workbench.jpg diff --git a/Documentation/Doxygen/DeveloperManual/Application/Deployment.dox b/Documentation/Doxygen/3-DeveloperManual/Application/Deployment.dox similarity index 100% rename from Documentation/Doxygen/DeveloperManual/Application/Deployment.dox rename to Documentation/Doxygen/3-DeveloperManual/Application/Deployment.dox diff --git a/Documentation/Doxygen/DeveloperManual/Application/DevelopmentApplication.dox b/Documentation/Doxygen/3-DeveloperManual/Application/DevelopmentApplication.dox similarity index 97% rename from Documentation/Doxygen/DeveloperManual/Application/DevelopmentApplication.dox rename to Documentation/Doxygen/3-DeveloperManual/Application/DevelopmentApplication.dox index 4e00e090fc..5cb70cc845 100644 --- a/Documentation/Doxygen/DeveloperManual/Application/DevelopmentApplication.dox +++ b/Documentation/Doxygen/3-DeveloperManual/Application/DevelopmentApplication.dox @@ -1,17 +1,17 @@ /** \page DevelopmentApplication Developing with the MITK Application Framework -MITK offers a powerful application featuring a plugin system and many predefined plugins. You can configure this application to offer a set of functionality to the user and easily create an installer. +MITK offers a powerful application featuring a plugin system and many predefined plugins. You can configure this application to offer a set of functionality to the user and easily create an installer. Working with the application, you will have to learn about extension points and the Blueberry framework itself. If you are new to the matter, please also consult \ref Architecture and \ref FirstSteps. -