forked from qt-creator/qt-creator
Doc: move icorelistener docs from header to source
Edit for language and style. Change-Id: I6f22ae90e95537282e4833ca90775683e76e26cf Reviewed-by: Eike Ziller <eike.ziller@digia.com>
This commit is contained in:
committed by
Eike Ziller
parent
402447ffc9
commit
ac363113a1
@@ -100,7 +100,8 @@ SOURCES += mainwindow.cpp \
|
|||||||
textdocument.cpp \
|
textdocument.cpp \
|
||||||
documentmanager.cpp \
|
documentmanager.cpp \
|
||||||
removefiledialog.cpp \
|
removefiledialog.cpp \
|
||||||
iversioncontrol.cpp
|
iversioncontrol.cpp \
|
||||||
|
icorelistener.cpp
|
||||||
|
|
||||||
HEADERS += mainwindow.h \
|
HEADERS += mainwindow.h \
|
||||||
editmode.h \
|
editmode.h \
|
||||||
|
@@ -76,6 +76,7 @@ QtcPlugin {
|
|||||||
"icontext.h",
|
"icontext.h",
|
||||||
"icore.cpp",
|
"icore.cpp",
|
||||||
"icore.h",
|
"icore.h",
|
||||||
|
"icorelistener.cpp",
|
||||||
"icorelistener.h",
|
"icorelistener.h",
|
||||||
"id.cpp",
|
"id.cpp",
|
||||||
"id.h",
|
"id.h",
|
||||||
|
58
src/plugins/coreplugin/icorelistener.cpp
Normal file
58
src/plugins/coreplugin/icorelistener.cpp
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
||||||
|
** Contact: http://www.qt-project.org/legal
|
||||||
|
**
|
||||||
|
** This file is part of Qt Creator.
|
||||||
|
**
|
||||||
|
** Commercial License Usage
|
||||||
|
** Licensees holding valid commercial Qt licenses may use this file in
|
||||||
|
** accordance with the commercial license agreement provided with the
|
||||||
|
** Software or, alternatively, in accordance with the terms contained in
|
||||||
|
** a written agreement between you and Digia. For licensing terms and
|
||||||
|
** conditions see http://qt.digia.com/licensing. For further information
|
||||||
|
** use the contact form at http://qt.digia.com/contact-us.
|
||||||
|
**
|
||||||
|
** GNU Lesser General Public License Usage
|
||||||
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
||||||
|
** General Public License version 2.1 as published by the Free Software
|
||||||
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
||||||
|
** packaging of this file. Please review the following information to
|
||||||
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
||||||
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||||
|
**
|
||||||
|
** In addition, as a special exception, Digia gives you certain additional
|
||||||
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
||||||
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "icorelistener.h"
|
||||||
|
|
||||||
|
/*!
|
||||||
|
\class Core::ICoreListener
|
||||||
|
|
||||||
|
\brief The ICoreListener class provides a hook for plugins to veto on
|
||||||
|
certain events emitted from the core plugin.
|
||||||
|
|
||||||
|
Implement this interface to prevent certain events from occurring. For
|
||||||
|
example, to prevent the closing of the whole application
|
||||||
|
or to prevent the closing of an editor window under certain conditions.
|
||||||
|
|
||||||
|
For example, if the application window requests a close,
|
||||||
|
\c ICoreListener::coreAboutToClose() is called (in arbitrary order) on all
|
||||||
|
registered objects implementing this interface. If one if these calls
|
||||||
|
returns \c false, the process is aborted and the event is ignored. If all
|
||||||
|
calls return \c true, the corresponding signal is emitted and the event is
|
||||||
|
accepted or performed.
|
||||||
|
|
||||||
|
Guidelines for implementing the class:
|
||||||
|
\list
|
||||||
|
\li Return \c false from the implemented method if you want to prevent
|
||||||
|
the event.
|
||||||
|
\li Add your implementing object to the plugin managers objects:
|
||||||
|
\c{ExtensionSystem::PluginManager::instance()->addObject(yourImplementingObject)}
|
||||||
|
\li Do not forget to remove the object again at deconstruction
|
||||||
|
(for example, in the destructor of your plugin).
|
||||||
|
\endlist
|
||||||
|
*/
|
@@ -35,30 +35,7 @@
|
|||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
class IEditor;
|
class IEditor;
|
||||||
/*!
|
|
||||||
\class Core::ICoreListener
|
|
||||||
|
|
||||||
\brief The ICoreListener class provides a hook for plugins to veto on certain
|
|
||||||
events emitted from the core plugin.
|
|
||||||
|
|
||||||
You implement this interface if you want to prevent certain events from
|
|
||||||
occurring, e.g. if you want to prevent the closing of the whole application
|
|
||||||
or to prevent the closing of an editor window under certain conditions.
|
|
||||||
|
|
||||||
If e.g. the application window requests a close, then first
|
|
||||||
ICoreListener::coreAboutToClose() is called (in arbitrary order) on all
|
|
||||||
registered objects implementing this interface. If one if these calls returns
|
|
||||||
false, the process is aborted and the event is ignored. If all calls return
|
|
||||||
true, the corresponding signal is emitted and the event is accepted/performed.
|
|
||||||
|
|
||||||
Guidelines for implementing:
|
|
||||||
\list
|
|
||||||
\li Return false from the implemented method if you want to prevent the event.
|
|
||||||
\li You need to add your implementing object to the plugin managers objects:
|
|
||||||
ExtensionSystem::PluginManager::instance()->addObject(yourImplementingObject);
|
|
||||||
\li Don't forget to remove the object again at deconstruction (e.g. in the destructor of
|
|
||||||
your plugin).
|
|
||||||
*/
|
|
||||||
class CORE_EXPORT ICoreListener : public QObject
|
class CORE_EXPORT ICoreListener : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
Reference in New Issue
Block a user