comment, rename guinotification-facade
This commit is contained in:
parent
6473971d60
commit
cc585dd0d6
6 changed files with 22 additions and 7 deletions
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
|
||||
#include "gui/guifacade.hpp"
|
||||
#include "include/guinotificationfacade.h"
|
||||
#include "include/guinotification-facade.h"
|
||||
#include "lib/sync.hpp"
|
||||
#include "lib/error.hpp"
|
||||
#include "lib/singleton.hpp"
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ namespace lumiera {
|
|||
|
||||
/* ==================== GuiNotification =================================== */
|
||||
|
||||
#include "include/guinotificationfacade.h"
|
||||
#include "include/guinotification-facade.h"
|
||||
|
||||
namespace gui {
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
#define GUI_NOTIFICATION_SERVICE_H
|
||||
|
||||
|
||||
#include "include/guinotificationfacade.h"
|
||||
#include "include/guinotification-facade.h"
|
||||
#include "common/instancehandle.hpp"
|
||||
#include "lib/singleton-ref.hpp"
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,19 @@
|
|||
|
||||
*/
|
||||
|
||||
/** @file display-facade.hpp
|
||||
** Major public Interface of the Lumiera GUI. While generally speaking, the GUI
|
||||
** controls the application and thus acts on its own, it exposes some services
|
||||
** to the lower layers. Especially the lumiera::Display interface serves to
|
||||
** hand over calculated frames to the GUI for displaying them in a viewer.
|
||||
** It's a first draft as of 1/2009, probably it can be factored out into
|
||||
** a more general display service in future.
|
||||
**
|
||||
** @see gui::GuiFacade
|
||||
** @see dummy-player-facade.h
|
||||
**
|
||||
*/
|
||||
|
||||
|
||||
#ifndef GUI_INTERFACE_DISPLAY_H
|
||||
#define GUI_INTERFACE_DISPLAY_H
|
||||
|
|
@ -115,7 +128,9 @@ extern "C" {
|
|||
#include "common/interface.h"
|
||||
|
||||
LUMIERA_INTERFACE_DECLARE (lumieraorg_Display, 0
|
||||
, LUMIERA_INTERFACE_SLOT (void, put,(LumieraDisplaySlot, LumieraDisplayFrame, bool))
|
||||
, LUMIERA_INTERFACE_SLOT (void, allocate,(LumieraDisplaySlot) )
|
||||
, LUMIERA_INTERFACE_SLOT (void, release,(LumieraDisplaySlot) )
|
||||
, LUMIERA_INTERFACE_SLOT (void, put,(LumieraDisplaySlot, LumieraDisplayFrame))
|
||||
);
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@
|
|||
|
||||
*/
|
||||
|
||||
/** @file guinotificationfacade.hpp
|
||||
** Main public Interface of the Lumiera GUI. While generally speaking, the GUI
|
||||
/** @file guinotification-facade.hpp
|
||||
** Major public Interface of the Lumiera GUI. While generally speaking, the GUI
|
||||
** controls the application and thus acts on its own, it exposes some services
|
||||
** usable by scripts or the two lower layers. The main purpose of these services
|
||||
** is to push informations and status updates into the GUI.
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
** @see plugin.h
|
||||
** @see lumiera::Subsys
|
||||
** @see guinotification.h usage example (facade interface)
|
||||
** @see guinotificationfacade.cpp corresponding implementation within the GUI
|
||||
** @see guinotification-facade.cpp corresponding implementation within the GUI
|
||||
*/
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue