/** ****************************************************************************** * * @file icore.cpp * @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010. * Parts by Nokia Corporation (qt-info@nokia.com) Copyright (C) 2009. * @addtogroup GCSPlugins GCS Plugins * @{ * @addtogroup CorePlugin Core Plugin * @{ * @brief The Core GCS plugin *****************************************************************************/ /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program 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. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "icore.h" /*! \namespace Core \brief The Core namespace contains all classes that make up the Core plugin which constitute the basic functionality of the OpenPilot GCS. */ /*! \namespace Core::Internal \internal */ /*! \class Core::ICore \brief The ICore class allows access to the different part that make up the basic functionality of the OpenPilot GCS. You should never create a subclass of this interface. The one and only instance is created by the Core plugin. You can access this instance from your plugin through \c{Core::instance()}. \mainclass */ /*! \fn QStringList ICore::showNewItemDialog(const QString &title, const QList &wizards, const QString &defaultLocation = QString()) \brief Opens a dialog where the user can choose from a set of \a wizards that create new files/classes/projects. The \a title argument is shown as the dialogs title. The path where the files will be created (if the user doesn't change it) is set in \a defaultLocation. It defaults to the path of the file manager's current file. \sa Core::FileManager */ /*! \fn bool ICore::showOptionsDialog(const QString &group = QString(), const QString &page = QString()) \brief Opens the application options/preferences dialog with preselected \a page in a specified \a group. The arguments refer to the string IDs of the corresponding IOptionsPage. */ /*! \fn bool ICore::showWarningWithOptions(const QString &title, const QString &text, const QString &details = QString(), const QString &settingsCategory = QString(), const QString &settingsId = QString(), QWidget *parent = 0); \brief Show a warning message with a button that opens a settings page. Should be used to display configuration errors and point users to the setting. Returns true if the settings dialog was accepted. */ /*! \fn ActionManager *ICore::actionManager() const \brief Returns the application's action manager. The action manager is responsible for registration of menus and menu items and keyboard shortcuts. */ /*! \fn FileManager *ICore::fileManager() const \brief Returns the application's file manager. The file manager keeps track of files for changes outside the application. */ /*! \fn UniqueIDManager *ICore::uniqueIDManager() const \brief Returns the application's id manager. The unique ID manager transforms strings in unique integers and the other way round. */ /*! \fn MessageManager *ICore::messageManager() const \brief Returns the application's message manager. The message manager is the interface to the "General" output pane for general application debug messages. */ /*! \fn ExtensionSystem::PluginManager *ICore::pluginManager() const \brief Returns the application's plugin manager. The plugin manager handles the plugin life cycles and manages the common object pool. */ /*! \fn EditorManager *ICore::editorManager() const \brief Returns the application's editor manager. The editor manager handles all editor related tasks like opening documents, the stack of currently open documents and the currently active document. */ /*! \fn VariableManager *ICore::variableManager() const \brief Returns the application's variable manager. The variable manager is used to register application wide string variables like \c MY_PROJECT_DIR such that strings like \c{somecommand ${MY_PROJECT_DIR}/sub} can be resolved/expanded from anywhere in the application. */ /*! \fn ThreadManager *ICore::threadManager() const \brief Returns the application's thread manager. The thread manager is used to manage application wide QThread objects, allowing certain critical objects to synchronize directly within the same real time thread - anywhere in the application. */ /*! \fn ModeManager *ICore::modeManager() const \brief Returns the application's mode manager. The mode manager handles everything related to the instances of IMode that were added to the plugin manager's object pool as well as their buttons and the tool bar with the round buttons in the lower left corner of the OpenPilot GCS. */ /*! \fn MimeDatabase *ICore::mimeDatabase() const \brief Returns the application's mime database. Use the mime database to manage mime types. */ /*! \fn QSettings *ICore::settings() const \brief Returns the application's main settings object. You can use it to retrieve or set application wide settings (in contrast to session or project specific settings). \see settingsDatabase() */ /*! \fn SettingsDatabase *ICore::settingsDatabase() const \brief Returns the application's settings database. The settings database is meant as an alternative to the regular settings object. It is more suitable for storing large amounts of data. The settings are application wide. \see SettingsDatabase */ /*! \fn QString ICore::resourcePath() const \brief Returns the absolute path that is used for resources like project templates and the debugger macros. This abstraction is needed to avoid platform-specific code all over the place, since e.g. on Mac the resources are part of the application bundle. */ /*! \fn QMainWindow *ICore::mainWindow() const \brief Returns the main application window. For use as dialog parent etc. */ /*! \fn IContext *ICore::currentContextObject() const \brief Returns the context object of the current main context. \sa ICore::addAdditionalContext() \sa ICore::addContextObject() */ /*! \fn void ICore::addAdditionalContext(int context) \brief Register additional context to be currently active. Appends the additional \a context to the list of currently active contexts. You need to call ICore::updateContext to make that change take effect. \sa ICore::removeAdditionalContext() \sa ICore::hasContext() \sa ICore::updateContext() */ /*! \fn void ICore::removeAdditionalContext(int context) \brief Removes the given \a context from the list of currently active contexts. You need to call ICore::updateContext to make that change take effect. \sa ICore::addAdditionalContext() \sa ICore::hasContext() \sa ICore::updateContext() */ /*! \fn bool ICore::hasContext(int context) const \brief Returns if the given \a context is currently one of the active contexts. \sa ICore::addAdditionalContext() \sa ICore::addContextObject() */ /*! \fn void ICore::addContextObject(IContext *context) \brief Registers an additional \a context object. After registration this context object gets automatically the current context object whenever its widget gets focus. \sa ICore::removeContextObject() \sa ICore::addAdditionalContext() \sa ICore::currentContextObject() */ /*! \fn void ICore::removeContextObject(IContext *context) \brief Unregisters a \a context object from the list of know contexts. \sa ICore::addContextObject() \sa ICore::addAdditionalContext() \sa ICore::currentContextObject() } */ /*! \fn void ICore::updateContext() \brief Update the list of active contexts after adding or removing additional ones. \sa ICore::addAdditionalContext() \sa ICore::removeAdditionalContext() */ /*! \fn void ICore::openFiles(const QStringList &fileNames) \brief Open all files from a list of \a fileNames like it would be done if they were given to the OpenPilot GCS on the command line, or they were opened via \gui{File|Open}. */ /*! \fn ICore::ICore() \internal */ /*! \fn ICore::~ICore() \internal */ /*! \fn void ICore::coreOpened() \brief Emitted after all plugins have been loaded and the main window shown. */ /*! \fn void ICore::saveSettingsRequested() \brief Emitted to signal that the user has requested that the global settings should be saved to disk. At the moment that happens when the application is closed, and on \gui{Save All}. */ /*! \fn void ICore::optionsDialogRequested() \brief Signal that allows plugins to perform actions just before the \gui{Tools|Options} dialog is shown. */ /*! \fn void ICore::coreAboutToClose() \brief Plugins can do some pre-end-of-life actions when they get this signal. The application is guaranteed to shut down after this signal is emitted. It's there as an addition to the usual plugin lifecycle methods, namely IPlugin::shutdown(), just for convenience. */ /*! \fn void ICore::contextAboutToChange(Core::IContext *context) \brief Sent just before a new \a context becomes the current context (meaning that its widget got focus). */ /*! \fn void ICore::contextChanged(Core::IContext *context) \brief Sent just after a new \a context became the current context (meaning that its widget got focus). */